summaryrefslogtreecommitdiffstats
path: root/test/w3c/txml/test332.txml
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/txml/test332.txml')
-rw-r--r--test/w3c/txml/test332.txml33
1 files changed, 33 insertions, 0 deletions
diff --git a/test/w3c/txml/test332.txml b/test/w3c/txml/test332.txml
new file mode 100644
index 0000000..0f87545
--- /dev/null
+++ b/test/w3c/txml/test332.txml
@@ -0,0 +1,33 @@
+<?xml version="1.0"?>
+
+<!-- test that sendid is present in error events triggered by send errors -->
+
+<scxml version="1.0" xmlns="http://www.w3.org/2005/07/scxml" initial="s0" conf:datamodel="" name="machineName" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
+ <datamodel>
+ <data conf:id="1"/>
+ <data conf:id="2"/>
+ </datamodel>
+
+
+ <state id="s0">
+ <onentry>
+ <!-- this will raise an error and also store the sendid in var1 -->
+ <send conf:illegalTarget="" event="foo" conf:idlocation="1"/>
+ </onentry>
+ <transition event="error" target="s1">
+ <!-- get the sendid out of the error event -->
+ <assign conf:location="2" conf:eventSendid=""/>
+ </transition>
+ <transition event="*" conf:targetfail=""/>
+ </state>
+
+<state id="s1">
+<!-- make sure that the sendid in the error event matches the one generated when send executed -->
+ <transition conf:VarEqVar="1 2" conf:targetpass=""/>
+ <transition conf:targetfail=""/>
+ </state>
+
+ <conf:pass/>
+ <conf:fail/>
+
+</scxml> \ No newline at end of file