alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Akka/Scala example source code file (Ticket1978ConfigSpec.scala)

This example Akka source code file (Ticket1978ConfigSpec.scala) is included in my "Source Code Warehouse" project. The intent of this project is to help you more easily find Akka and Scala source code examples by using tags.

All credit for the original source code belongs to akka.io; I'm just trying to make examples easier to find. (For my Scala work, see my Scala examples and tutorials.)

Akka tags/keywords

aes128countersecurerng, akka, akkaspec, concurrent, defaulttimeout, implicitsender, netty, remote, remoting, ssl, test, testing, ticket1978configspec, time, tls_rsa_with_aes_128_cbc_sha, tlsv1, transport

The Ticket1978ConfigSpec.scala Akka example source code

package akka.remote

import akka.testkit._
import akka.actor._
import com.typesafe.config._
import scala.concurrent.duration._
import java.util.ArrayList
import akka.remote.transport.netty.SSLSettings

@org.junit.runner.RunWith(classOf[org.scalatest.junit.JUnitRunner])
class Ticket1978ConfigSpec extends AkkaSpec("""
    akka.remote.netty.ssl.security {
      random-number-generator = "AES128CounterSecureRNG"
    }
    """) with ImplicitSender with DefaultTimeout {

  "SSL Remoting" must {
    "be able to parse these extra Netty config elements" in {
      val settings = new SSLSettings(system.settings.config.getConfig("akka.remote.netty.ssl.security"))

      settings.SSLKeyStore should be(Some("keystore"))
      settings.SSLKeyStorePassword should be(Some("changeme"))
      settings.SSLKeyPassword should be(Some("changeme"))
      settings.SSLTrustStore should be(Some("truststore"))
      settings.SSLTrustStorePassword should be(Some("changeme"))
      settings.SSLProtocol should be(Some("TLSv1"))
      settings.SSLEnabledAlgorithms should be(Set("TLS_RSA_WITH_AES_128_CBC_SHA"))
      settings.SSLRandomNumberGenerator should be(Some("AES128CounterSecureRNG"))
    }
  }
}

Other Akka source code examples

Here is a short list of links related to this Akka Ticket1978ConfigSpec.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.