summaryrefslogtreecommitdiffstats
path: root/test/w3c/txml/test252.txml
blob: 40c36cb736bf235746b4879fdacbbb1784316f3e (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0"?>
<!-- test that we don't process any events received from the invoked process once it is cancelled.  child
process tries to send us childToParent in an onexit handler.  If we get it, we fail.  
timeout indicates success.   -->


<scxml initial="s0" version="1.0" conf:datamodel=""  xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">

     
<state id="s0" initial="s01">
  <onentry>
    <send event="timeout" delay="2s"/>
    </onentry>
    
    <transition event="timeout" conf:targetpass=""/>
    <transition event="childToParent" conf:targetfail=""/>
    <transition event="done.invoke" conf:targetfail=""/>
    
    <state id="s01">
      <onentry>
        <send event="foo"/>
        </onentry>
   
     <invoke type="http://www.w3.org/TR/scxml/">
       <content>
         <scxml initial="sub0" version="1.0" conf:datamodel=""  xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
              <state id="sub0">
             <onentry>
             <send event="timeout" delay="2s"/>
             </onentry> 
            <transition event="timeout" target="subFinal"/>
               <onexit>
               <send target="#_parent" event="childToParent"/>
            </onexit>
          </state>  
          <final id="subFinal"/>
          </scxml>
       </content>
      </invoke>
      
     <!-- this transition will cause the invocation to be cancelled -->
     <transition event="foo" target="s02"/>
   </state>
   
   <state id="s02"/>
   
</state>
 
<conf:pass/>
<conf:fail/>
</scxml>