私は Akka FSM を使用して動いているエレベーターをシミュレートしています (あなたはもう行くつもりはありません! :-))、通常のテストキット機能を使用して FSM をテストしようとしていますが、私の理解または公開されている FSM の動作にはギャップがあるようです(または両方)。
コードの関連部分は次のとおりです。
class LiftCarriageWithMovingState (val movingStateSimulator: ActorRef) extends Actor
with LoggingFSM[LiftState,LiftData]
with ActorLogging
{
val mxTimeToWaitStopping = 250 milliseconds
private var pendingPassengerRequests: Vector[NextStop] = Vector.empty
private var currentFloorID = 0 // Always start at Ground Floor
val timeToReachNextFloor = 1000 millis // up or down, same time taken
private val dontCare: StateFunction = {
// ..
}
private val powerYourselfOff: StateFunction = {
case Event(InstructedToPowerOff,_) =>
stay
}
private val powerYourselfOn: StateFunction = {
case Event(InstructedToPowerOn,_) =>
goto (PoweredOn)
}
private val beReady: StateFunction = {
case Event(BeReady,_) =>
settleDownAtGroundFloor
goto (Ready)
}
// .. other StateFunctions here
startWith(PoweredOff,InitialData)
when (PoweredOff) (powerYourselfOn orElse
dontCare)
when (PoweredOn) (powerYourselfOff orElse
beReady orElse
dontCare
// ...
CurrentState メッセージが作成されてstartWith関数が呼び出された直後に、FSM が CurrentState メッセージで応答すると予想されますが、そうはなりません。このテスト (再び部分的なコード) は失敗します。
"A LiftCarriage" must {
"be ready, when it settles down after being PoweredOn" in {
val testCarriageFSM = TestFSMRef(new LiftCarriageWithMovingState(movingStateSimulator))
expectMsgPF() {
case CurrentState(_,PoweredOff) => true // Line 46, see the stacktrace below
}
したがって:
A LiftCarriage
[info] - must be ready, when it settles down after being PoweredOn *** FAILED ***
[info] java.lang.AssertionError: assertion failed: timeout (3 seconds) during expectMsg:
[info] at scala.Predef$.assert(Predef.scala:170)
[info] at akka.testkit.TestKitBase$class.expectMsgPF(TestKit.scala:356)
[info] at akka.testkit.TestKit.expectMsgPF(TestKit.scala:718)
[info] at withExplicitMovingState.LiftCarriageMovingStoppingCorrectlyTest$$anonfun$1$$anonfun$apply$mcV$sp$1.apply$mcV$sp(LiftCarriageMovingStoppingCorrectlyTest.scala:46)
[info] at withExplicitMovingState.LiftCarriageMovingStoppingCorrectlyTest$$anonfun$1$$anonfun$apply$mcV$sp$1.apply(LiftCarriageMovingStoppingCorrectlyTest.scala:42)
[info] at withExplicitMovingState.LiftCarriageMovingStoppingCorrectlyTest$$anonfun$1$$anonfun$apply$mcV$sp$1.apply(LiftCarriageMovingStoppingCorrectlyTest.scala:42)
私の理解にギャップはありますか?もしそうなら、私を教育してください。
また、まったく同じ質問 (ここでより要約された形式で質問されています) が未回答のままになっていることもわかります。これは、対処する価値のあるAkka FSM と Testkit のセマンティクスのギャップではないでしょうか? :-P