blob: 54e536af00abf46cbed45d1ea09ab7e1dabb07d2 (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- test that the event name matching works correctly, including prefix matching and the fact
that the event attribute of transition may contain multiple event designators. -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="lua">
<state id="s0" initial="s01">
<onentry>
<send event="timeout" delay="2s"/>
</onentry>
<!-- this will catch the failure case -->
<transition event="timeout" target="fail"/>
<state id="s01">
<onentry>
<raise event="foo"/>
</onentry>
<!-- test that an event can match against a transition with multiple descriptors -->
<transition event="foo bar" target="s02"/>
</state>
<state id="s02">
<onentry>
<raise event="bar"/>
</onentry>
<!-- test that an event can match the second descriptor as well -->
<transition event="foo bar" target="s03"/>
</state>
<state id="s03">
<onentry>
<raise event="foo.zoo"/>
</onentry>
<!-- test that a prefix descriptor matches -->
<transition event="foo bar" target="s04"/>
</state>
<state id="s04">
<onentry>
<raise event="foos"/>
</onentry>
<!-- test that only token prefixes match -->
<transition event="foo" target="fail"/>
<transition event="foos" target="s05"/>
</state>
<state id="s05">
<onentry>
<raise event="foo.zoo"/>
</onentry>
<!-- test that .* works at the end of a descriptor -->
<transition event="foo.*" target="s06"/>
</state>
<state id="s06">
<onentry>
<raise event="foo"/>
</onentry>
<!-- test that "*" works by itself -->
<transition event="*" target="pass"/>
</state>
</state>
<final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="pass">
<onentry>
<log label="Outcome" expr="'pass'"/>
</onentry>
</final>
<final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="fail">
<onentry>
<log label="Outcome" expr="'fail'"/>
</onentry>
</final>
</scxml>
|