diff options
Diffstat (limited to 'test/w3c/ecma/test513.scxml')
-rw-r--r-- | test/w3c/ecma/test513.scxml | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/test/w3c/ecma/test513.scxml b/test/w3c/ecma/test513.scxml deleted file mode 100644 index c26d498..0000000 --- a/test/w3c/ecma/test513.scxml +++ /dev/null @@ -1,50 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?><!-- 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 xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" datamodel="ecmascript" version="1.0"> - -<state id="s0" initial="s01"> - <datamodel> - <data id="Var1"/> - </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" datamodel="ecmascript" version="1.0"> - <state id="child0"> - <onentry> - <send target="#_parent" event="childRunning"> - <param name="uri" expr="_ioprocessors['basichttp']['location']"/> - </send> - </onentry> - </state> - </scxml> - </content> - </invoke> - - <transition event="*" target="fail"/> - - <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 location="Var1" expr="_event.data.uri"/> - <send event="test" targetexpr="Var1" 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" target="pass"/> - </state> - </state> - - <final id="pass"><onentry><log label="Outcome" expr="'pass'"/></onentry></final> - <final id="fail"><onentry><log label="Outcome" expr="'fail'"/></onentry></final> - -</scxml>
\ No newline at end of file |