* fix several tests that were using akka.remote.netty.tcp config * replace akka.tcp with akka in more places * some doc cross references to remoting.md
68 lines
1.8 KiB
Scala
68 lines
1.8 KiB
Scala
/*
|
|
* Copyright (C) 2009-2019 Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
package docs.remoting
|
|
|
|
import akka.actor.{ Actor, ActorRef, ActorSystem, ExtendedActorSystem }
|
|
import akka.testkit.{ AkkaSpec, ImplicitSender }
|
|
//#import
|
|
import akka.actor.{ Address, AddressFromURIString, Deploy, Props }
|
|
import akka.remote.RemoteScope
|
|
//#import
|
|
|
|
object RemoteDeploymentDocSpec {
|
|
|
|
class SampleActor extends Actor {
|
|
def receive = { case _ => sender() ! self }
|
|
}
|
|
|
|
}
|
|
|
|
class RemoteDeploymentDocSpec extends AkkaSpec("""
|
|
akka.actor.provider = remote
|
|
akka.remote.classic.netty.tcp.port = 0
|
|
akka.remote.artery.canonical.port = 0
|
|
""") with ImplicitSender {
|
|
|
|
import RemoteDeploymentDocSpec._
|
|
|
|
val other = ActorSystem("remote", system.settings.config)
|
|
val address =
|
|
other.asInstanceOf[ExtendedActorSystem].provider.getExternalAddressFor(Address("akka", "s", "host", 1)).get
|
|
|
|
override def afterTermination(): Unit = { shutdown(other) }
|
|
|
|
"demonstrate programmatic deployment" in {
|
|
//#deploy
|
|
val ref = system.actorOf(Props[SampleActor].withDeploy(Deploy(scope = RemoteScope(address))))
|
|
//#deploy
|
|
ref.path.address should be(address)
|
|
ref ! "test"
|
|
expectMsgType[ActorRef].path.address should be(address)
|
|
}
|
|
|
|
def makeAddress(): Unit = {
|
|
//#make-address-artery
|
|
val one = AddressFromURIString("akka://sys@host:1234")
|
|
val two = Address("akka", "sys", "host", 1234) // this gives the same
|
|
//#make-address-artery
|
|
}
|
|
|
|
"demonstrate address extractor" in {
|
|
//#make-address
|
|
val one = AddressFromURIString("akka://sys@host:1234")
|
|
val two = Address("akka", "sys", "host", 1234) // this gives the same
|
|
//#make-address
|
|
one should be(two)
|
|
}
|
|
|
|
"demonstrate sampleActor" in {
|
|
//#sample-actor
|
|
|
|
val actor = system.actorOf(Props[SampleActor], "sampleActor")
|
|
actor ! "Pretty slick"
|
|
//#sample-actor
|
|
}
|
|
|
|
}
|