forked from erikzenker/hsm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
direct_transition.cpp
129 lines (111 loc) · 3.67 KB
/
direct_transition.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#include "hsm/hsm.h"
#include <boost/hana.hpp>
#include <gtest/gtest.h>
#include <future>
#include <memory>
namespace {
// States
struct S1 {
};
struct S2 {
};
struct S3 {
};
struct S4 {
};
// Events
struct e1 {
};
struct e2 {
};
struct e3 {
};
struct e4 {
};
struct e5 {
};
// Guards
const auto fail = [](auto /*event*/, auto /*source*/, auto /*target*/) { return false; };
// Actions
const auto action = [](auto /*event*/, auto /*source*/, auto /*target*/) {};
using namespace ::testing;
struct SubState {
static constexpr auto make_transition_table()
{
// clang-format off
return hsm::transition_table(
* hsm::state<S1> {} + hsm::event<e1> {} = hsm::state<S1> {},
hsm::state<S1> {} + hsm::event<e3> {} = hsm::state<S2> {},
hsm::state<S1> {} + hsm::event<e4> {} = hsm::state<S3> {},
hsm::state<S1> {} + hsm::event<e5> {} = hsm::state<S4> {}
);
// clang-format on
}
};
struct SubState2 {
static constexpr auto make_transition_table()
{
// clang-format off
return hsm::transition_table(
* hsm::state<S1> {} + hsm::event<e1> {} = hsm::state<S1> {}
);
// clang-format on
}
};
struct MainState {
static constexpr auto make_transition_table()
{
// clang-format off
return hsm::transition_table(
* hsm::state<S1>{} + hsm::event<e1> {} = hsm::state<SubState>{},
hsm::state<S1>{} + hsm::event<e2> {} = hsm::state<SubState2>{},
hsm::state<S1>{} + hsm::event<e3> {} = hsm::direct<SubState, S1>{},
hsm::direct<SubState, S1> {} + hsm::event<e2> {} = hsm::direct<SubState2, S1>{},
hsm::direct<SubState, S2> {} = hsm::direct<SubState2, S2>{},
hsm::direct<SubState, S3> {} + hsm::event<e2> {} [fail] = hsm::direct<SubState2, S3>{},
hsm::direct<SubState, S4> {} + hsm::event<e2> {} / action = hsm::direct<SubState2, S4>{},
hsm::direct<SubState, S4> {} + hsm::event<e2> {} [fail] / action = hsm::direct<SubState2, S4>{}
);
// clang-format on
}
};
}
class DirectTransitionTests : public Test {
protected:
hsm::sm<MainState> sm;
};
TEST_F(DirectTransitionTests, should_transit_directly_into_substate)
{
sm.process_event(e3 {});
ASSERT_TRUE(sm.is(hsm::state<SubState> {}, hsm::state<S1> {}));
}
TEST_F(DirectTransitionTests, should_transit_directly_between_substates)
{
sm.process_event(e1 {});
ASSERT_TRUE(sm.is(hsm::state<SubState> {}, hsm::state<S1> {}));
sm.process_event(e2 {});
ASSERT_TRUE(sm.is(hsm::state<SubState2> {}, hsm::state<S1> {}));
}
TEST_F(DirectTransitionTests, should_transit_anonymous_directly_between_substates)
{
sm.process_event(e1 {});
ASSERT_TRUE(sm.is(hsm::state<SubState> {}, hsm::state<S1> {}));
sm.process_event(e3 {});
ASSERT_TRUE(sm.is(hsm::state<SubState2> {}, hsm::state<S2> {}));
}
TEST_F(DirectTransitionTests, should_transit_directly_between_substates_with_guard)
{
sm.process_event(e1 {});
sm.process_event(e4 {});
ASSERT_TRUE(sm.is(hsm::state<SubState> {}, hsm::state<S3> {}));
sm.process_event(e2 {});
ASSERT_TRUE(sm.is(hsm::state<SubState> {}, hsm::state<S3> {}));
}
TEST_F(DirectTransitionTests, should_transit_directly_between_substates_with_action)
{
sm.process_event(e1 {});
sm.process_event(e5 {});
ASSERT_TRUE(sm.is(hsm::state<SubState> {}, hsm::state<S4> {}));
sm.process_event(e2 {});
ASSERT_TRUE(sm.is(hsm::state<SubState> {}, hsm::state<S4> {}));
}