blob: 2ce9fbbc0f3bf7ed3ee21be46e64624828640494 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- test that sendid is present in error events triggered by send errors -->
<scxml:scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" xmlns:scxml="http://www.w3.org/2005/07/scxml" version="1.0" initial="s0" datamodel="ecmascript" name="machineName">
<scxml:datamodel>
<scxml:data id="Var1"/>
<scxml:data id="Var2"/>
</scxml:datamodel>
<scxml:state id="s0">
<scxml:onentry>
<!-- this will raise an error and also store the sendid in var1 -->
<scxml:send target="baz" event="foo" idlocation="Var1"/>
</scxml:onentry>
<scxml:transition event="error" target="s1">
<!-- get the sendid out of the error event -->
<scxml:assign location="Var2" expr="_event.sendid"/>
</scxml:transition>
<scxml:transition event="*" target="fail"/>
</scxml:state>
<scxml:state id="s1">
<!-- make sure that the sendid in the error event matches the one generated when send executed -->
<scxml:transition cond="Var1===Var2" target="pass"/>
<scxml:transition target="fail"/>
</scxml:state>
<scxml:final id="pass">
<scxml:onentry>
<scxml:log label="Outcome" expr="'pass'"/>
</scxml:onentry>
</scxml:final>
<scxml:final id="fail">
<scxml:onentry>
<scxml:log label="Outcome" expr="'fail'"/>
</scxml:onentry>
</scxml:final>
</scxml:scxml>
|