summaryrefslogtreecommitdiffstats
path: root/test/samples/w3c/txml/test332.txml
blob: 0f87545e1fe5e60dece44c350e221de529d57cf8 (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
<?xml version="1.0"?>

<!-- test that sendid is present in error events triggered by send errors -->

<scxml version="1.0" xmlns="http://www.w3.org/2005/07/scxml" initial="s0" conf:datamodel=""  name="machineName" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
 <datamodel>
   <data conf:id="1"/>
    <data conf:id="2"/>
   </datamodel>    

   
 <state id="s0">
   <onentry>
   <!-- this will raise an error and also store the sendid in var1 -->
     <send conf:illegalTarget="" event="foo" conf:idlocation="1"/>
   </onentry>
   <transition event="error"   target="s1">
   <!-- get the sendid out of the error event -->
       <assign conf:location="2" conf:eventSendid=""/>
       </transition>
      <transition event="*" conf:targetfail=""/> 
   </state>
   
<state id="s1">
<!-- make sure that the sendid in the error event matches the one generated when send executed -->
  <transition conf:VarEqVar="1 2" conf:targetpass=""/>
  <transition conf:targetfail=""/>
  </state>
      
   <conf:pass/>
   <conf:fail/>
     
</scxml>