jbeard4 / SCION

SCXML/Statecharts in JavaScript, moved to gitlab: https://gitlab.com/scion-scxml/scion
https://scion.scxml.io
Apache License 2.0
149 stars 29 forks source link

error test/scxml-test-framework/test/w3c-ecma/test201.txml.scxml #270

Closed feyzo closed 9 years ago

feyzo commented 10 years ago

https://github.com/jbeard4/scxml-test-framework/tree/master/test/scxml-test-framework/test/w3c-ecma/test201.txml.scxml

Error

null
Data:
"Property 'http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor' of object # is not a function"
scxml: 

<?xml version="1.0" encoding="UTF-8"?>
<!-- we test that the processor supports the basic http event i/o processor.  This is an optional
test since platforms are not required to support basic http event i/o -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="ecmascript">

<state id="s0">
  <onentry>
   <send type="http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor" event="event1"/>
   <send event="timeout"/>
    </onentry>

  <transition event="event1" target="pass"/>
  <transition event="*" target="fail"/>
 </state>

<final id="pass"><onentry><log label="Outcome" expr="'pass'"/></onentry></final>
<final id="fail"><onentry><log label="Outcome" expr="'fail'"/></onentry></final>

</scxml>

JSON:

{
"initialConfiguration": [
"pass"
],
"events": []
}

jbeard4 commented 9 years ago

@feyzo For now, just alias BasicHTTPEventProcessor to SCXMLEventProcessor

feyzo commented 9 years ago

This test is now failing.

Can you give me directions to move further? Here is the module javascript https://gist.github.com/feyzo/61b929d9a218e1de363b

jbeard4 commented 9 years ago

We would need to check the logs to see whether event1 is being sent to the state machine before timeout, as it should.

jbeard4 commented 9 years ago

@feyzo Please post verbose debugging output and we can discuss.