嗨,程序员们和受人尊敬的大师们,
我有一个执行者,它需要在处于特定状态(忙碌FSM
)时在某些消息上引发 IOException以由其Supervisor重新启动。
摘抄:
case class ExceptionResonse(errorCode: Int)
when(Busy) {
case ExceptionResponse(errorCode) =>
throw new IOException(s"Request failed with error code $errorCode")
}
我正在尝试通过使用 aTestActorRef
并直接调用receive
期望的接收来测试该行为以抛出IOException
.
case class WhenInStateBusy() extends TestKit(ActorSystem()) with After {
val myTestFSMRef = TestFSMRef(MyFSM.props)
...
def prepare: Result = {
// prepares tested actor by going through an initialization sequence
// including 'expectMsgPfs' for several messages sent from the tested FSM
// most of my test cases depend on the correctness of that initialization sequence
// finishing with state busy
myTestFSMRef.setState(Busy)
awaitCond(
myTestFSMRef.stateName == Busy,
maxDelay,
interval,
s"Actor must be in State 'Busy' to proceed, but is ${myTestFSMRef.stateName}"
)
success
}
def testCase = this {
prepare and {
myTestFSMRef.receive(ExceptionResponse(testedCode)) must throwAn[IOException]
}
}
}
注意:初始化序列确保测试的 FSM 已完全初始化并已设置其内部可变状态。只有当参与者收到在我的测试设置中必须由测试用例提供的某种消息时才能离开状态忙碌,所以我很确定 FSM 处于正确的状态。
现在,在我的 Jenkins 服务器(Ubuntu 14.10)上,这个测试用例在 20 次尝试中大约有 1 次失败(-> 没有抛出异常)。但是,在我的开发机器(Mac Os X 10.10.4)上,我无法重现该错误。所以调试器对我没有帮助。
测试按顺序运行,并且在每个示例之后关闭测试系统。
- Java 版本 1.7.0_71
- 斯卡拉版本 2.11.4
- Akka 版本 2.3.6
- Specs2 版本 2.3.13
谁能解释为什么有时调用myTestActorRef.receive(ExceptionResponse(testedCode))
不会导致Exception
?