繁体   English   中英

用Java在Akka中测试演员并具有ActorInitializationException

[英]Test actor in akka by java and have ActorInitializationException

我想在创建actor示例代码中使用actor测试,但是通过运行actor测试会抛出ActorInitializationException。 我的目标是通过actor测试查看测试目标,我正在使用junit测试,但是我的课程代码在下面:

public class Worker extends AbstractActor {

private ActorSystem system = ActorSystem.create("worker");;
private Props props = Props.create(Worker.class , system.guardian().toString());
private ActorRef actor = system.actorOf(props);

@Override
public void preStart() {
    System.out.println("worker actor started");
}

@Override
public void postStop() {
    System.out.println("worker actor stopped");
}



@Override
public Receive createReceive() {
    return receiveBuilder()
            .matchAny(x -> getSender().tell(x, getSelf()))
            .build();
}


@Test
public void testMain() throws Exception {
    Future sFuture = ask(actor, "ping" , 1000);
    System.out.println("First : " + sFuture);

}

}

and when running test method in up code this exception occur:

akka.actor.ActorInitializationException: You cannot create an instance of [akka.worker.Worker] explicitly using the constructor (new). You have to use one of the 'actorOf' factory methods to create a new actor. See the documentation.

at akka.actor.ActorInitializationException$.apply(Actor.scala:192)
at akka.actor.Actor$class.$init$(Actor.scala:467)
at akka.actor.AbstractActor.<init>(AbstractActor.scala:132)
at ir.dotin.alm.akka.worker.Worker.<init>(Worker.java:17)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:408)
at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:187)
at org.junit.runners.BlockJUnit4ClassRunner$1.runReflectiveCall(BlockJUnit4ClassRunner.java:236)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:233)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
at org.junit.runner.JUnitCore.run(JUnitCore.java:157)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:117)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:42)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:262)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:84)

我的猜测:您在演员内部编写了测试。 Junit尝试使用new()实例化包含测试的类,从而使其失败。 尝试拆分定义:

public class Worker extends AbstractActor {

  @Override
  public void preStart() {
      System.out.println("worker actor started");
  }

  @Override
  public void postStop() {
      System.out.println("worker actor stopped");
  }



  @Override
  public Receive createReceive() {
      return receiveBuilder()
              .matchAny(x -> getSender().tell(x, getSelf()))
              .build();
  }
}

然后, 在另一个文件中

public class MyTest() {
  private ActorSystem system = ActorSystem.create("worker");;
  private Props props = Props.create(Worker.class , system.guardian().toString());
  private ActorRef actor = system.actorOf(props);

  @Test
  public void testMain() throws Exception {
    Future sFuture = ask(actor, "ping" , 1000);
    System.out.println("First : " + sFuture);
  }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM