summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test216.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/lua/test216.scxml')
-rw-r--r--test/w3c/lua/test216.scxml20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/w3c/lua/test216.scxml b/test/w3c/lua/test216.scxml
new file mode 100644
index 0000000..5a09fc7
--- /dev/null
+++ b/test/w3c/lua/test216.scxml
@@ -0,0 +1,20 @@
+<?xml version="1.0" standalone="no"?>
+<!-- we test that srcexpr is evaluated at runtime. If the original value of var1 is used, the invocation
+will fail (assuming that there is no script named 'foo'). If
+the runtime value is used, the invocation will succeed -->
+<scxml xmlns="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="lua">
+ <datamodel>
+ <data expr="'foo'" id="testvar1"/>
+ </datamodel>
+ <state id="s0">
+ <onentry>
+ <send event="timeout" delay="5s"/>
+ <assign expr="'file:test216sub1.scxml'" location="testvar1"/>
+ </onentry>
+ <invoke type="http://www.w3.org/TR/scxml" srcexpr="testvar1"/>
+ <transition event="done.invoke" target="pass"/>
+ <transition event="*" target="fail"/>
+ </state>
+ <final id="pass"/>
+ <final id="fail"/>
+</scxml>