summaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-03-28 23:28:46 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-03-28 23:28:46 (GMT)
commit2317f2bf8beb03c60463a9482dbef23540f5c1e0 (patch)
tree9983553e5289cf622e782d0132bb1810276364d2 /test/src
parent7279ab2caf72b68126bf0c1d7e62c7d89024f9a0 (diff)
downloaduscxml-2317f2bf8beb03c60463a9482dbef23540f5c1e0.zip
uscxml-2317f2bf8beb03c60463a9482dbef23540f5c1e0.tar.gz
uscxml-2317f2bf8beb03c60463a9482dbef23540f5c1e0.tar.bz2
Refactoring and W3C tests
- Moved core of interpreter to support various versions - Added experimental setConfiguration() - There can be more than one initial state
Diffstat (limited to 'test/src')
-rw-r--r--test/src/scxml-test-framework-client.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/src/scxml-test-framework-client.cpp b/test/src/scxml-test-framework-client.cpp
index 58f1057..fefe3d9 100644
--- a/test/src/scxml-test-framework-client.cpp
+++ b/test/src/scxml-test-framework-client.cpp
@@ -30,10 +30,12 @@ public:
TestIOProcessor() {}
virtual void beforeCompletion(uscxml::Interpreter* interpreter) {
- _interpreters[interpreter->getName()].second.curlReq = NULL;
+ onStableConfiguration(interpreter);
}
- virtual void afterCompletion(uscxml::Interpreter* interpreter) {}
+ virtual void afterCompletion(uscxml::Interpreter* interpreter) {
+ _interpreters[interpreter->getName()].second.curlReq = NULL;
+ }
virtual void beforeMicroStep(uscxml::Interpreter* interpreter) {}
virtual void beforeTakingTransitions(uscxml::Interpreter* interpreter, const Arabica::XPath::NodeSet<std::string>& transitions) {}
@@ -112,8 +114,8 @@ public:
std::cout << "---- received:" << std::endl;
evhttp_request_own(request.curlReq);
- std::cout << request.content << std::endl;
- uscxml::Data jsonReq = uscxml::Data::fromJSON(request.content);
+ std::cout << request.data.compound.at("content").atom << std::endl;
+ uscxml::Data jsonReq = uscxml::Data::fromJSON(request.data.compound.at("content").atom);
std::cout << jsonReq << std::endl;