summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test352.scxml
blob: ea76b204de02fcbbcbec3b935f27718952c4e963 (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" standalone="no"?>
<!-- test the origintype is 'http://www.w3.org/TR/scxml/#SCXMLEventProcessor' -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="lua">
  <datamodel>
    <data id="testvar1"/>
  </datamodel>
  <state id="s0">
    <onentry>
      <send delay="5s" event="timeout"/>
      <send type="http://www.w3.org/TR/scxml/#SCXMLEventProcessor" event="s0Event"/>
    </onentry>
    <transition event="s0Event" target="s1">
      <assign expr="_event.origintype" location="testvar1"/>
    </transition>
    <transition event="*" target="fail">
    </transition>
  </state>
  <state id="s1">
    <transition cond="testvar1 == 'http://www.w3.org/TR/scxml/#SCXMLEventProcessor'" target="pass"/>
    <transition target="fail"/>
  </state>
  <final id="pass"/>
  <final id="fail"/>
</scxml>