summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test372.scxml
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-07-08 00:20:56 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-07-08 00:20:56 (GMT)
commitdbd110e2b7eb08c65218a5f9d09ef12fdc62c04a (patch)
tree93444e4c106eeca34d928521bedbda8080410795 /test/w3c/lua/test372.scxml
parentd5e1f6397c52513018cd59972cf5ca8740de18eb (diff)
downloaduscxml-dbd110e2b7eb08c65218a5f9d09ef12fdc62c04a.zip
uscxml-dbd110e2b7eb08c65218a5f9d09ef12fdc62c04a.tar.gz
uscxml-dbd110e2b7eb08c65218a5f9d09ef12fdc62c04a.tar.bz2
First signs of Lua Datamodel
Diffstat (limited to 'test/w3c/lua/test372.scxml')
-rw-r--r--test/w3c/lua/test372.scxml25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/w3c/lua/test372.scxml b/test/w3c/lua/test372.scxml
new file mode 100644
index 0000000..9a04396
--- /dev/null
+++ b/test/w3c/lua/test372.scxml
@@ -0,0 +1,25 @@
+<?xml version="1.0" standalone="no"?>
+<!-- test that entering a final state generates done.state.parentid after executing the onentry elements.
+Var1 should be set to 2 (but not 3) by the time the event is raised -->
+<scxml xmlns="http://www.w3.org/2005/07/scxml" version="1.0" datamodel="lua">
+ <datamodel>
+ <data expr="1" id="testvar1"/>
+ </datamodel>
+ <state id="s0" initial="s0final">
+ <onentry>
+ <send event="timeout" delay="1s"/>
+ </onentry>
+ <transition event="done.state.s0" cond="testvar1 == 2" target="pass"/>
+ <transition event="*" target="fail"/>
+ <final id="s0final">
+ <onentry>
+ <assign expr="2" location="testvar1"/>
+ </onentry>
+ <onexit>
+ <assign expr="3" location="testvar1"/>
+ </onexit>
+ </final>
+ </state>
+ <final id="pass"/>
+ <final id="fail"/>
+</scxml>