Class MultiNodeSpec

  • All Implemented Interfaces:
    MultiNodeSpecCallbacks, TestKitBase

    public abstract class MultiNodeSpec
    extends TestKit
    implements MultiNodeSpecCallbacks
    Constructor for using arbitrary logic to create the actor system used in the multi node spec (the Config passed to the creator must be used in the created actor system for the multi node tests to work)
    • Constructor Detail

      • MultiNodeSpec

        public MultiNodeSpec​(RoleName myself,
                             ActorSystem _system,
                             scala.collection.immutable.Seq<RoleName> _roles,
                             scala.Function1<RoleName,​scala.collection.Seq<java.lang.String>> deployments)
      • MultiNodeSpec

        public MultiNodeSpec​(MultiNodeConfig config,
                             scala.Function1<com.typesafe.config.Config,​ActorSystem> actorSystemCreator)
    • Method Detail

      • maxNodes

        public static int maxNodes()
      • selfName

        public static java.lang.String selfName()
        Name (or IP address; must be resolvable using InetAddress.getByName) of the host this node is running on.

        
         -Dmultinode.host=host.example.com
         

        InetAddress.getLocalHost.getHostAddress is used if empty or "localhost" is defined as system property "multinode.host".

        Returns:
        (undocumented)
      • selfPort

        public static int selfPort()
        Port number of this node. Defaults to 0 which means a random port.

        
         -Dmultinode.port=0
         
        Returns:
        (undocumented)
      • serverName

        public static java.lang.String serverName()
        Name (or IP address; must be resolvable using InetAddress.getByName) of the host that the server node is running on.

        
         -Dmultinode.server-host=server.example.com
         
        Returns:
        (undocumented)
      • serverPort

        public static int serverPort()
        Port number of the node that's running the server system. Defaults to 4711.

        
         -Dmultinode.server-port=4711
         
        Returns:
        (undocumented)
      • selfIndex

        public static java.lang.Integer selfIndex()
        Index of this node in the roles sequence. The TestConductor is started in &ldquo;controller&rdquo; mode on selfIndex 0, i.e. there you can inject failures and shutdown other nodes etc.

        
         -Dmultinode.index=0
         
        Returns:
        (undocumented)
      • nodeConfig

        public static com.typesafe.config.Config nodeConfig()
      • baseConfig

        public static com.typesafe.config.Config baseConfig()
      • awaitHelper

        public <T> MultiNodeSpec.AwaitHelper<T> awaitHelper​(scala.concurrent.Awaitable<T> w)
        Enrich .await() onto all Awaitables, using remaining duration from the innermost enclosing within block or QueryTimeout.
        Parameters:
        w - (undocumented)
        Returns:
        (undocumented)
      • shutdownTimeout

        public scala.concurrent.duration.FiniteDuration shutdownTimeout()
      • verifySystemShutdown

        public boolean verifySystemShutdown()
        Override this and return true to assert that the shutdown of the ActorSystem was done properly.
        Returns:
        (undocumented)
      • atStartup

        protected void atStartup()
        Override this method to do something when the whole test is starting up.
      • afterTermination

        protected void afterTermination()
        Override this method to do something when the whole test is terminating.
      • roles

        public scala.collection.immutable.Seq<RoleName> roles()
        All registered roles
        Returns:
        (undocumented)
      • initialParticipants

        public abstract int initialParticipants()
        TO BE DEFINED BY USER: Defines the number of participants required for starting the test. This might not be equals to the number of nodes available to the test.

        Must be a def:

        
         def initialParticipants = 5
         
        Returns:
        (undocumented)
      • testConductor

        public TestConductorExt testConductor()
        Access to the barriers, failure injection, etc. The extension will have been started either in Conductor or Player mode when the constructor of MultiNodeSpec finishes, i.e. do not call the start*() methods yourself!
        Returns:
        (undocumented)
      • runOn

        public void runOn​(scala.collection.Seq<RoleName> nodes,
                          scala.Function0<scala.runtime.BoxedUnit> thunk)
        Execute the given block of code only on the given nodes (names according to the roleMap).
        Parameters:
        nodes - (undocumented)
        thunk - (undocumented)
      • isNode

        public boolean isNode​(scala.collection.Seq<RoleName> nodes)
        Verify that the running node matches one of the given nodes
        Parameters:
        nodes - (undocumented)
        Returns:
        (undocumented)
      • enterBarrier

        public void enterBarrier​(scala.collection.Seq<java.lang.String> name)
        Enter the named barriers in the order given. Use the remaining duration from the innermost enclosing within block or the default BarrierTimeout
        Parameters:
        name - (undocumented)
      • node

        public ActorPath node​(RoleName role)
        Query the controller for the transport address of the given node (by role name) and return that as an ActorPath for easy composition:

        
         val serviceA = system.actorSelection(node("master") / "user" / "serviceA")
         
        Parameters:
        role - (undocumented)
        Returns:
        (undocumented)
      • muteDeadLetters

        public void muteDeadLetters​(scala.collection.Seq<java.lang.Class<?>> messageClasses,
                                    ActorSystem sys)
      • muteDeadLetters$default$2

        public ActorSystem muteDeadLetters$default$2​(scala.collection.Seq<java.lang.Class<?>> messageClasses)
      • myAddress

        protected Address myAddress()
      • startNewSystem

        protected ActorSystem startNewSystem()
        This method starts a new ActorSystem with the same configuration as the previous one on the current node, including deployments. It also creates a new TestConductor client and registers itself with the conductor so that it is possible to use barriers etc. normally after this method has been called.

        NOTICE: you MUST start a new system before trying to enter a barrier or otherwise using the TestConductor after having terminated this node&rsquo;s system.

        Returns:
        (undocumented)