summaryrefslogtreecommitdiffstats
path: root/test/w3c/txml/test513.txml
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/txml/test513.txml')
-rw-r--r--test/w3c/txml/test513.txml54
1 files changed, 54 insertions, 0 deletions
diff --git a/test/w3c/txml/test513.txml b/test/w3c/txml/test513.txml
new file mode 100644
index 0000000..65dda29
--- /dev/null
+++ b/test/w3c/txml/test513.txml
@@ -0,0 +1,54 @@
+<?xml version="1.0"?>
+
+<!-- test that we get an HTTP success code back on successful delivery. To run this test, implementations
+must support an extension to send: if the parameter httpResponse is present with value 'true', then when
+the processor gets an http response code back, it must raise an event 'http.n1.nrest' where 'ni' is
+the first digit of the response code and 'nrest' are the remaining digits-->
+
+<scxml initial="s0" conf:datamodel="" version="1.0" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
+
+<state id="s0" initial="s01">
+ <datamodel>
+ <data conf:id="1"/>
+ </datamodel>
+
+ <onentry>
+ <send event="timeout" delay="30s"/>
+ </onentry>
+ <invoke type="http://www.w3.org/TR/scxml/">
+ <content>
+ <!-- child script. Once we're running send childRunning to parent and include basicHTTPAccess URI -->
+ <scxml initial="child0" conf:datamodel="" version="1.0" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
+ <state id="child0">
+ <onentry>
+ <send target="#_parent" event="childRunning">
+ <param name="uri" conf:basicHTTPAccessURI=""/>
+ </send>
+ </onentry>
+ </state>
+ </scxml>
+ </content>
+ </invoke>
+
+ <transition event="*" conf:targetfail=""/>
+
+ <state id="s01">
+ <!-- when we get the event from the child, extract the access uri and use
+ the basicHTTP event i/o processor to send it an event -->
+ <transition event="childRunning" target="s02">
+ <assign conf:location="1" conf:eventDataFieldValue="uri"/>
+ <send event="test" conf:targetExpr="1" httpResponse="true" type="http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor"/>
+ </transition>
+ </state>
+
+ <state id="s02">
+ <!-- the child should send this back automatically. It does not need to take
+ any transition on the event -->
+ <transition event="HTTP.2" conf:targetpass=""/>
+ </state>
+ </state>
+
+ <conf:pass/>
+ <conf:fail/>
+
+</scxml> \ No newline at end of file