summaryrefslogtreecommitdiffstats
path: root/test/w3c/namespace/test404.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/namespace/test404.scxml')
-rw-r--r--test/w3c/namespace/test404.scxml56
1 files changed, 56 insertions, 0 deletions
diff --git a/test/w3c/namespace/test404.scxml b/test/w3c/namespace/test404.scxml
new file mode 100644
index 0000000..153c079
--- /dev/null
+++ b/test/w3c/namespace/test404.scxml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- test that states are exited in exit order (children before parents with reverse doc order used to break ties
+ before the executable content in the transitions. event1, event2, event3, event4 should be raised in that
+ order when s01p is exited -->
+<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" initial="s0" version="1.0" datamodel="ecmascript">
+ <scxml:state id="s0" initial="s01p">
+ <scxml:parallel id="s01p">
+ <scxml:onexit>
+ <!-- this should be the 3rd event raised -->
+ <scxml:raise event="event3"/>
+ </scxml:onexit>
+ <scxml:transition target="s02">
+ <!-- this should be the fourth event raised -->
+ <scxml:raise event="event4"/>
+ </scxml:transition>
+ <scxml:state id="s01p1">
+ <scxml:onexit>
+ <!-- this should be the second event raised -->
+ <scxml:raise event="event2"/>
+ </scxml:onexit>
+ </scxml:state>
+ <scxml:state id="s01p2">
+ <!-- this should be the first event raised -->
+ <scxml:onexit>
+ <scxml:raise event="event1"/>
+ </scxml:onexit>
+ </scxml:state>
+ </scxml:parallel>
+ <scxml:state id="s02">
+ <scxml:transition event="event1" target="s03"/>
+ <scxml:transition event="*" target="fail"/>
+ </scxml:state>
+ <scxml:state id="s03">
+ <scxml:transition event="event2" target="s04"/>
+ <scxml:transition event="*" target="fail"/>
+ </scxml:state>
+ <scxml:state id="s04">
+ <scxml:transition event="event3" target="s05"/>
+ <scxml:transition event="*" target="fail"/>
+ </scxml:state>
+ <scxml:state id="s05">
+ <scxml:transition event="event4" target="pass"/>
+ <scxml:transition event="*" target="fail"/>
+ </scxml:state>
+ </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>