summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test509.scxml
blob: f2cce8568c38c0c5381cefd228fb3a01c5e54760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" standalone="no"?>
<!-- test that Basic HTTP Event I/O processor uses POST method and that it can receive messages
at the accessURI -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="lua">
  <state id="s0">
    <onentry>
      <send event="timeout" delay="30s"/>
      <send event="test" type="http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor" targetexpr="_ioprocessors.basichttp.location"/>
    </onentry>
    <!-- if the event was send by http and we get it, we succeed -->
    <transition event="test" cond="_event.name=='http.post'" target="pass"/>
    <transition event="*" target="fail"/>
  </state>
  <final id="pass"/>
  <final id="fail"/>
</scxml>