summaryrefslogtreecommitdiffstats
path: root/test/w3c/namespace/test578.scxml
blob: b0e3ff75876f31d2ef80b8bf86b5d970b63aef03 (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
<?xml version="1.0" encoding="UTF-8"?>
<!-- in the ECMA data model, test that processor creates an ECMAScript object
 _event.data when receiving JSON in an event -->
<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">
    <scxml:onentry>
      <scxml:send event="foo">
        <scxml:content>{ "productName" : "bar", "size" : 27 }</scxml:content>
      </scxml:send>
    </scxml:onentry>
    <scxml:transition event="foo" cond="_event.data.productName == 'bar'" target="pass"/>
    <scxml:transition event="*" 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>