summaryrefslogtreecommitdiffstats
path: root/embedding/java/src/org/uscxml/tests/TestLifecycle.java
blob: 9278cbeb3e2cc8d3491e463c2779077f291da464 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package org.uscxml.tests;

import org.uscxml.Interpreter;
import org.uscxml.InterpreterException;
import org.uscxml.InterpreterState;

public class TestLifecycle {
	public static void main(String[] args) {
		System.load("/Users/sradomski/Documents/TK/Code/uscxml/build/cli/lib/libuscxmlNativeJava64.jnilib");

		// syntactic xml parse error -> throws
		try {
			String xml = "<invalid";
			Interpreter interpreter = Interpreter.fromXML(xml);
			throw new RuntimeException("");
		} catch (InterpreterException e) {
			System.err.println(e);
		}

		// semantic xml parse error -> throws
		try {
			String xml = "<invalid />";
			Interpreter interpreter = Interpreter.fromXML(xml);
			if (interpreter.getState() != InterpreterState.USCXML_INSTANTIATED) throw new RuntimeException("");
			interpreter.step();
			throw new RuntimeException("");
		} catch (InterpreterException e) {
			System.err.println(e);
		}

		// request unknown datamodel -> throws
		try {
			String xml =
			"<scxml datamodel=\"invalid\">" +
			"	<state id=\"start\">" +
			"		<transition target=\"done\" />" +
			" </state>" +
			" <final id=\"done\" />" +
			"</scxml>"; 
			Interpreter interpreter = Interpreter.fromXML(xml);
			if (interpreter.getState() != InterpreterState.USCXML_INSTANTIATED)  throw new RuntimeException("");
			interpreter.step();
			throw new RuntimeException("");
			
		} catch (InterpreterException e) {
			System.err.println(e);
		}

		try {
			// two microsteps
			String xml =
			"<scxml>" +
			"	<state id=\"start\">" +
			"		<transition target=\"s2\" />" +
			"   </state>" +
			"	<state id=\"s2\">" +
			"		<transition target=\"done\" />" +
			" </state>" +
			" <final id=\"done\" />" +
			"</scxml>";
			
			Interpreter interpreter = Interpreter.fromXML(xml);

			if (interpreter.getState() != InterpreterState.USCXML_INSTANTIATED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_MICROSTEPPED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_MICROSTEPPED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_FINISHED) throw new RuntimeException("");

		} catch (InterpreterException e) {
			System.err.println(e);
		}
	
		try {
			// single macrostep, multiple runs
			String xml =
			"<scxml>" +
			"	<state id=\"start\">" +
			"		<transition target=\"done\" />" +
			" </state>" +
			" <final id=\"done\" />" +
			"</scxml>";
			
			Interpreter interpreter = Interpreter.fromXML(xml);
			if (interpreter.getState() != InterpreterState.USCXML_INSTANTIATED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_MICROSTEPPED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_FINISHED) throw new RuntimeException("");
			interpreter.reset();

			if (interpreter.getState() != InterpreterState.USCXML_INSTANTIATED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_MICROSTEPPED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_FINISHED) throw new RuntimeException("");

		} catch (InterpreterException e) {
			System.err.println(e);
		}
		
		try {
			// macrostep in between
			String xml =
			"<scxml>" +
			"	<state id=\"start\">" +
			"		<onentry>" +
			"			<send event=\"continue\" delay=\"2s\"/>" +
			"		</onentry>" +
			"		<transition target=\"s2\" event=\"continue\" />" +
			" </state>" +
			"	<state id=\"s2\">" +
			"		<transition target=\"done\" />" +
			" </state>" +
			" <final id=\"done\" />" +
			"</scxml>";
			
			Interpreter interpreter = Interpreter.fromXML(xml);
			if (interpreter.getState() != InterpreterState.USCXML_INSTANTIATED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_IDLE) throw new RuntimeException("");
			if (interpreter.step(true) != InterpreterState.USCXML_MACROSTEPPED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_MICROSTEPPED) throw new RuntimeException("");
			if (interpreter.step() != InterpreterState.USCXML_FINISHED) throw new RuntimeException("");

		} catch (InterpreterException e) {
			System.err.println(e);
		}
	}
}