summaryrefslogtreecommitdiffstats
path: root/test/w3c/namespace/test307.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/namespace/test307.scxml')
-rw-r--r--test/w3c/namespace/test307.scxml35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/w3c/namespace/test307.scxml b/test/w3c/namespace/test307.scxml
new file mode 100644
index 0000000..4268ef4
--- /dev/null
+++ b/test/w3c/namespace/test307.scxml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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" datamodel="ecmascript" version="1.0" initial="s0" binding="late">
+ <!-- with binding=late, in s0 we access a variable that isn't created until we get to s1. Then in s1
+we access a non-existent substructure of a variable. We use log tags to report the values that both operations
+yield, and whether there are errors. This is a manual test, since the tester must report whether the output
+is the same in the two cases -->
+ <scxml:state id="s0">
+ <scxml:onentry>
+ <scxml:log label="entering s0 value of Var 1 is: " expr="Var1"/>
+ <scxml:raise event="foo"/>
+ </scxml:onentry>
+ <scxml:transition event="error" target="s1">
+ <scxml:log label="error in state s0" expr="_event"/>
+ </scxml:transition>
+ <scxml:transition event="foo" target="s1">
+ <scxml:log label="no error in s0" expr=""/>
+ </scxml:transition>
+ </scxml:state>
+ <scxml:state id="s1">
+ <scxml:datamodel>
+ <scxml:data id="Var1" expr="1"/>
+ </scxml:datamodel>
+ <scxml:onentry>
+ <scxml:log label="entering s1, value of non-existent substructure of Var 1 is: " expr="Var1.bar"/>
+ <scxml:raise event="bar"/>
+ </scxml:onentry>
+ <scxml:transition event="error" target="final">
+ <scxml:log label="error in state s1" expr="_event"/>
+ </scxml:transition>
+ <scxml:transition event="bar" target="final">
+ <scxml:log label="No error in s1" expr=""/>
+ </scxml:transition>
+ </scxml:state>
+ <scxml:final id="final"/>
+</scxml:scxml>