blob: 53a758b41e0688785d72f6129b44e50a5cbeb8ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- in the ECMA data model, test that if the child of <data> is not XML, or if XML is loaded via src=,
the processor treats the value as a string, does whitespace normalization and assigns it to the var.-->
<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:datamodel>
<scxml:data id="var1">
this is
a string
</scxml:data>
<scxml:data id="var2" src="file:test558.txt"/>
</scxml:datamodel>
<scxml:state id="s0">
<scxml:transition cond="var1 == 'this is a string'" target="s1"/>
<scxml:transition target="fail"/>
</scxml:state>
<scxml:state id="s1">
<scxml:transition cond="var2 == 'this is a string'" target="pass"/>
<scxml:transition target="fail"/>
</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>
|