-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Verify that messages are not dropped, see #3390
- Loading branch information
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
77 changes: 77 additions & 0 deletions
77
akka-remote-tests/src/multi-jvm/scala/akka/remote/RemoteDeliverySpec.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/** | ||
* Copyright (C) 2009-2013 Typesafe Inc. <http://www.typesafe.com> | ||
*/ | ||
package akka.remote | ||
|
||
import scala.concurrent.duration._ | ||
import com.typesafe.config.ConfigFactory | ||
import akka.actor.Actor | ||
import akka.actor.ActorRef | ||
import akka.actor.Props | ||
import akka.remote.testconductor.RoleName | ||
import akka.remote.testkit.MultiNodeConfig | ||
import akka.remote.testkit.MultiNodeSpec | ||
import akka.remote.testkit.STMultiNodeSpec | ||
import akka.testkit._ | ||
import akka.actor.ActorIdentity | ||
import akka.actor.Identify | ||
|
||
object RemoteDeliveryMultiJvmSpec extends MultiNodeConfig { | ||
val first = role("first") | ||
val second = role("second") | ||
val third = role("third") | ||
|
||
commonConfig(debugConfig(on = false).withFallback(ConfigFactory.parseString("akka.loglevel=INFO"))) | ||
|
||
case class Letter(n: Int, route: List[ActorRef]) | ||
|
||
class Postman extends Actor { | ||
def receive = { | ||
case Letter(n, route) ⇒ route.head ! Letter(n, route.tail) | ||
} | ||
} | ||
|
||
} | ||
|
||
class RemoteDeliveryMultiJvmNode1 extends RemoteDeliverySpec | ||
class RemoteDeliveryMultiJvmNode2 extends RemoteDeliverySpec | ||
class RemoteDeliveryMultiJvmNode3 extends RemoteDeliverySpec | ||
|
||
abstract class RemoteDeliverySpec | ||
extends MultiNodeSpec(RemoteDeliveryMultiJvmSpec) | ||
with STMultiNodeSpec with ImplicitSender { | ||
|
||
import RemoteDeliveryMultiJvmSpec._ | ||
|
||
override def initialParticipants = roles.size | ||
|
||
def identify(role: RoleName, actorName: String): ActorRef = { | ||
system.actorSelection(node(role) / "user" / actorName) ! Identify(actorName) | ||
expectMsgType[ActorIdentity].ref.get | ||
} | ||
|
||
"Remoting with TCP" must { | ||
|
||
"not drop messages under normal circumstances" taggedAs LongRunningTest in { | ||
system.actorOf(Props[Postman], "postman-" + myself.name) | ||
enterBarrier("actors-started") | ||
|
||
runOn(first) { | ||
val p1 = identify(first, "postman-first") | ||
val p2 = identify(second, "postman-second") | ||
val p3 = identify(third, "postman-third") | ||
val route = p2 :: p3 :: p2 :: p3 :: testActor :: Nil | ||
|
||
for (n ← 1 to 500) { | ||
p1 ! Letter(n, route) | ||
expectMsg(5.seconds, Letter(n, Nil)) | ||
// in case the loop count is increased it is good with some progress feedback | ||
if (n % 10000 == 0) log.info("Passed [{}]", n) | ||
} | ||
} | ||
|
||
enterBarrier("after-1") | ||
} | ||
|
||
} | ||
} |