pekko/akka-remote-tests/src/multi-jvm/scala/akka/remote/routing/RemoteRandomSpec.scala

108 lines
3.7 KiB
Scala
Raw Normal View History

/*
2018-01-04 17:26:29 +00:00
* Copyright (C) 2009-2018 Lightbend Inc. <https://www.lightbend.com>
*/
package akka.remote.routing
import scala.concurrent.duration._
import akka.actor.Actor
import akka.actor.ActorRef
import akka.actor.Address
import akka.actor.PoisonPill
import akka.actor.Props
import akka.remote.RemotingMultiNodeSpec
import akka.remote.testkit.MultiNodeConfig
import akka.routing.Broadcast
import akka.routing.RandomPool
import akka.routing.RoutedActorRef
import akka.testkit._
import com.typesafe.config.ConfigFactory
class RemoteRandomConfig(artery: Boolean) extends MultiNodeConfig {
val first = role("first")
val second = role("second")
val third = role("third")
val fourth = role("fourth")
commonConfig(debugConfig(on = false).withFallback(
ConfigFactory.parseString(s"""
akka.remote.artery.enabled = $artery
""")).withFallback(RemotingMultiNodeSpec.commonConfig))
deployOnAll("""
/service-hello {
router = "random-pool"
nr-of-instances = 3
target.nodes = ["@first@", "@second@", "@third@"]
}
""")
}
class RemoteRandomMultiJvmNode1 extends RemoteRandomSpec(new RemoteRandomConfig(artery = false))
class RemoteRandomMultiJvmNode2 extends RemoteRandomSpec(new RemoteRandomConfig(artery = false))
class RemoteRandomMultiJvmNode3 extends RemoteRandomSpec(new RemoteRandomConfig(artery = false))
class RemoteRandomMultiJvmNode4 extends RemoteRandomSpec(new RemoteRandomConfig(artery = false))
class ArteryRemoteRandomMultiJvmNode1 extends RemoteRandomSpec(new RemoteRandomConfig(artery = true))
class ArteryRemoteRandomMultiJvmNode2 extends RemoteRandomSpec(new RemoteRandomConfig(artery = true))
class ArteryRemoteRandomMultiJvmNode3 extends RemoteRandomSpec(new RemoteRandomConfig(artery = true))
class ArteryRemoteRandomMultiJvmNode4 extends RemoteRandomSpec(new RemoteRandomConfig(artery = true))
object RemoteRandomSpec {
class SomeActor extends Actor {
def receive = {
case "hit" sender() ! self
}
}
}
class RemoteRandomSpec(multiNodeConfig: RemoteRandomConfig) extends RemotingMultiNodeSpec(multiNodeConfig)
with DefaultTimeout {
import multiNodeConfig._
import RemoteRandomSpec._
def initialParticipants = roles.size
"A remote random pool" must {
"be locally instantiated on a remote node and be able to communicate through its RemoteActorRef" taggedAs LongRunningTest in {
runOn(first, second, third) {
enterBarrier("start", "broadcast-end", "end", "done")
}
runOn(fourth) {
enterBarrier("start")
val actor = system.actorOf(RandomPool(nrOfInstances = 0).props(Props[SomeActor]), "service-hello")
2015-01-16 11:09:59 +01:00
actor.isInstanceOf[RoutedActorRef] should ===(true)
val connectionCount = 3
val iterationCount = 100
for (i 0 until iterationCount; k 0 until connectionCount) {
actor ! "hit"
}
val replies: Map[Address, Int] = (receiveWhile(5.seconds, messages = connectionCount * iterationCount) {
case ref: ActorRef ref.path.address
}).foldLeft(Map(node(first).address 0, node(second).address 0, node(third).address 0)) {
case (replyMap, address) replyMap + (address (replyMap(address) + 1))
}
enterBarrier("broadcast-end")
actor ! Broadcast(PoisonPill)
enterBarrier("end")
// since it's random we can't be too strict in the assert
replies.values count (_ > 0) should be > (connectionCount - 2)
2015-01-16 11:09:59 +01:00
replies.get(node(fourth).address) should ===(None)
// shut down the actor before we let the other node(s) shut down so we don't try to send
// "Terminate" to a shut down node
system.stop(actor)
enterBarrier("done")
}
}
}
}