|
Akka/Scala example source code file (RemoteDeployerSpec.scala)
The RemoteDeployerSpec.scala Akka example source code/** * Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com> */ package akka.remote import akka.testkit._ import akka.actor._ import akka.routing._ import com.typesafe.config._ import akka.ConfigurationException object RemoteDeployerSpec { val deployerConf = ConfigFactory.parseString(""" akka.actor.provider = "akka.remote.RemoteActorRefProvider" akka.actor.deployment { /service2 { router = round-robin-pool nr-of-instances = 3 remote = "akka://sys@wallace:2552" dispatcher = mydispatcher } } akka.remote.netty.tcp.port = 0 """, ConfigParseOptions.defaults) class RecipeActor extends Actor { def receive = { case _ ⇒ } } } @org.junit.runner.RunWith(classOf[org.scalatest.junit.JUnitRunner]) class RemoteDeployerSpec extends AkkaSpec(RemoteDeployerSpec.deployerConf) { "A RemoteDeployer" must { "be able to parse 'akka.actor.deployment._' with specified remote nodes" in { val service = "/service2" val deployment = system.asInstanceOf[ActorSystemImpl].provider.deployer.lookup(service.split("/").drop(1)) deployment should be(Some( Deploy( service, deployment.get.config, RoundRobinPool(3), RemoteScope(Address("akka", "sys", "wallace", 2552)), "mydispatcher"))) } "reject remote deployment when the source requires LocalScope" in { intercept[ConfigurationException] { system.actorOf(Props.empty.withDeploy(Deploy.local), "service2") }.getMessage should be("configuration requested remote deployment for local-only Props at [akka://RemoteDeployerSpec/user/service2]") } } } Other Akka source code examplesHere is a short list of links related to this Akka RemoteDeployerSpec.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.