尽管存在ActorInitializationException异常,Akka.net Testkit仍未标记测试用例失败

时间:2016-08-25 08:57:06

标签: unit-testing akka.net akka-testkit

以下是演员,我已定义(试图让我的头围绕持久演员!!)

public class Country : ReceivePersistentActor
{
    public override string PersistenceId => GetType().Name + state.Id;

    private CountryState state;

    public Country()
    {
        Command<CreateCountry>(CreateCountry);
    }

    private bool CreateCountry(CreateCountry cmd)
    {
        Persist(new CountryCeated
        {
            Id = cmd.Id,
            Code = cmd.Code,
            Description = cmd.Description,
            Active = cmd.Active
        }, evt =>
        {
            state = new CountryState
            {
                Id = evt.Id,
                Code = evt.Code,
                Description = evt.Description,
                Active = evt.Active
            };
        });

        return true;
    }
}

以下是我已定义的单元测试用例:

[TestClass]
public class CountrySpec : TestKit
{
    [TestMethod]
    public void CountryActor_Should_Create_A_Country()
    {
        var country = Sys.ActorOf(Props.Create(() => new Country()), "Country");
        country.Tell(new CreateCountry(Guid.NewGuid(), "UK", "United Kingdom", true));
        ExpectNoMsg();
    }
}

当我运行测试用例时,我可以在测试用例的输出窗口中看到一个异常

[ERROR][25/08/2016 08:25:07][Thread 0007][akka://test/user/Country] Object reference not set to an instance of an object.
Cause: [akka://test/user/Country#552449332]: Akka.Actor.ActorInitializationException: Exception during creation ---> System.NullReferenceException: Object reference not set to an instance of an object.
   at Domain.Country.get_PersistenceId() in Y:\Spikes\StatefulActors\Domain\Country.cs:line 9
   at Akka.Persistence.Eventsourced.StartRecovery(Recovery recovery)
   at Akka.Persistence.Eventsourced.AroundPreStart()
   at Akka.Actor.ActorCell.<>c__DisplayClass154_0.<Create>b__0()
   at Akka.Actor.ActorCell.UseThreadContext(Action action)
   at Akka.Actor.ActorCell.Create(Exception failure)
   --- End of inner exception stack trace ---
   at Akka.Actor.ActorCell.Create(Exception failure)
   at Akka.Actor.ActorCell.SysMsgInvokeAll(EarliestFirstSystemMessageList messages, Int32 currentState)

但测试用例标记为成功 enter image description here

TestKit中是否有任何方式/设置,可以设置为任何异常,标记测试用例失败?

1 个答案:

答案 0 :(得分:1)

默认情况下,actor中的所有异常都被封装 - 这意味着它们不会冒泡,吹嘘系统的其余部分。

演员进入系统,可以通过观察他们彼此沟通的方式进行测试。通常它提供来自actor系统的输入和断言输出 - 在你的情况下测试已经过去,因为你没有验证任何输出。从你的测试的角度来看,这个演员可能已经死了,并没有什么区别。

验证输出(通过actor本身内部的断言或使用自定义测试日志)是处理测试的最佳方式。

如果由于某种原因你仍然需要捕捉演员内部的异常,你可以创建绑定到TestActor的监督策略,其中所有例外都可以被转发:

public class TestingStrategy : OneForOneStrategy
{
    protected TestingStrategy(IActorRef probe) : base(exception =>
    {
        probe.Tell(exception);
        return DefaultDecider.Decide(exception);
    }) { }
}