summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test239.scxml
blob: 877fd5646160cbc748f0a9187c23937721b6aea7 (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
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<!-- test that markup can be specified both by 'src' and by <content>  -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="lua">
  <state id="s0" initial="s01">
    <onentry>
      <send event="timeout" delay="2s"/>
    </onentry>
    <transition event="timeout" target="fail"/>
    <state id="s01">
      <invoke type="http://www.w3.org/TR/scxml/" src="file:test239sub1.scxml"/>
      <transition event="done.invoke" target="s02"/>
    </state>
    <state id="s02">
      <invoke type="http://www.w3.org/TR/scxml/">
        <!-- identical to test239sub1.scxml.  -->
        <content>
          <scxml version="1.0" initial="final" datamodel="lua">
            <final id="final"/>
          </scxml>
        </content>
      </invoke>
      <transition event="done.invoke" target="pass"/>
    </state>
  </state>
  <final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="pass">
    <onentry>
      <log label="Outcome" expr="'pass'"/>
    </onentry>
  </final>
  <final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="fail">
    <onentry>
      <log label="Outcome" expr="'fail'"/>
    </onentry>
  </final>
</scxml>