forked from erikzenker/hsm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguards_actions.cpp
109 lines (87 loc) · 2.49 KB
/
guards_actions.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
#include "hsm/hsm.h"
#include <boost/hana.hpp>
#include <gtest/gtest.h>
#include <future>
#include <memory>
namespace {
// States
struct S1 {
};
struct S2 {
};
// Events
struct e1 {
e1(const std::shared_ptr<std::promise<void>>& called)
: called(called)
{
}
std::shared_ptr<std::promise<void>> called;
};
struct e2 {
};
struct e3 {
};
struct e4 {
};
// Guards
const auto g2 = [](auto /*event*/, auto /*source*/, auto /*target*/) { return false; };
const auto g3 = [](auto /*event*/, auto /*source*/, auto /*target*/) { return true; };
// Actions
const auto a2 = [](auto event, auto /*source*/, auto /*target*/) { event.called->set_value(); };
using namespace ::testing;
using namespace boost::hana;
struct SubState {
static constexpr auto make_transition_table()
{
// clang-format off
return hsm::transition_table(
* hsm::state<S1> {} + hsm::event<e1> {} / a2 = 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> {} / a2 = hsm::state<S1> {},
hsm::state<S1> {} + hsm::event<e2> {} = hsm::state<SubState> {},
hsm::state<S1> {} + hsm::event<e3> {} [g2] = hsm::state<S2> {},
hsm::state<S1> {} + hsm::event<e4> {} [g3] = hsm::state<S2> {}
);
// clang-format on
}
};
}
class GuardsActionsTests : public Test {
protected:
hsm::sm<MainState> sm;
};
TEST_F(GuardsActionsTests, should_call_action)
{
auto actionCalled = std::make_shared<std::promise<void>>();
sm.process_event(e1 { actionCalled });
ASSERT_EQ(
std::future_status::ready, actionCalled->get_future().wait_for(std::chrono::seconds(1)));
}
TEST_F(GuardsActionsTests, should_call_substate_action)
{
auto actionCalled = std::make_shared<std::promise<void>>();
sm.process_event(e2 {});
sm.process_event(e1 { actionCalled });
ASSERT_EQ(
std::future_status::ready, actionCalled->get_future().wait_for(std::chrono::seconds(1)));
}
TEST_F(GuardsActionsTests, should_block_transition_guard)
{
ASSERT_TRUE(sm.is(hsm::state<S1> {}));
sm.process_event(e3 {});
ASSERT_TRUE(sm.is(hsm::state<S1> {}));
}
TEST_F(GuardsActionsTests, should_not_block_transition_by_guard)
{
ASSERT_TRUE(sm.is(hsm::state<S1> {}));
sm.process_event(e4 {});
ASSERT_TRUE(sm.is(hsm::state<S2> {}));
}