diff options
author | Stefan Radomski <github@mintwerk.de> | 2017-06-05 13:02:25 (GMT) |
---|---|---|
committer | Stefan Radomski <github@mintwerk.de> | 2017-06-05 13:02:25 (GMT) |
commit | c2624fcf87cac6b56c10771cdd88c3aaecbf2488 (patch) | |
tree | 7c2e203c7997bc93a4e46a59d025b766f98b58bb /test/w3c/jexl | |
parent | d1404b669a00a6cff2ac35f09d0222c1d9ab4bff (diff) | |
download | uscxml-c2624fcf87cac6b56c10771cdd88c3aaecbf2488.zip uscxml-c2624fcf87cac6b56c10771cdd88c3aaecbf2488.tar.gz uscxml-c2624fcf87cac6b56c10771cdd88c3aaecbf2488.tar.bz2 |
Added more encoding tests
Diffstat (limited to 'test/w3c/jexl')
-rw-r--r-- | test/w3c/jexl/test-enc-CP1250.scxml | 26 | ||||
-rw-r--r-- | test/w3c/jexl/test-enc-ISO-8859-15.scxml | 26 | ||||
-rw-r--r-- | test/w3c/jexl/test-enc-UTF8.scxml (renamed from test/w3c/jexl/test-utf8.scxml) | 6 |
3 files changed, 57 insertions, 1 deletions
diff --git a/test/w3c/jexl/test-enc-CP1250.scxml b/test/w3c/jexl/test-enc-CP1250.scxml new file mode 100644 index 0000000..993f0dc --- /dev/null +++ b/test/w3c/jexl/test-enc-CP1250.scxml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="CP1250"?> +<!-- test that neither if clause executes, so that bat is the only event raised. --> +<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="jexl"> + <datamodel> + <data id="Var1" expr="'ü'"/> + <data id="Var2" expr="'ü'"/> + </datamodel> + <state id="s0"> + <transition cond="Var1===Var2" target="s1"/> + <transition target="fail"/> + </state> + <state id="s1"> + <transition cond="Var1=='ü'" target="pass"/> + <transition 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> diff --git a/test/w3c/jexl/test-enc-ISO-8859-15.scxml b/test/w3c/jexl/test-enc-ISO-8859-15.scxml new file mode 100644 index 0000000..d6b0e26 --- /dev/null +++ b/test/w3c/jexl/test-enc-ISO-8859-15.scxml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="ISO-8859-15"?> +<!-- test that neither if clause executes, so that bat is the only event raised. --> +<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="jexl"> + <datamodel> + <data id="Var1" expr="'ü'"/> + <data id="Var2" expr="'ü'"/> + </datamodel> + <state id="s0"> + <transition cond="Var1===Var2" target="s1"/> + <transition target="fail"/> + </state> + <state id="s1"> + <transition cond="Var1=='ü'" target="pass"/> + <transition 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> diff --git a/test/w3c/jexl/test-utf8.scxml b/test/w3c/jexl/test-enc-UTF8.scxml index 932d06f..5b853ac 100644 --- a/test/w3c/jexl/test-utf8.scxml +++ b/test/w3c/jexl/test-enc-UTF8.scxml @@ -6,7 +6,11 @@ <data id="Var2" expr="'ü'"/> </datamodel> <state id="s0"> - <transition cond="Var1===Var2" target="pass"/> + <transition cond="Var1===Var2" target="s1"/> + <transition target="fail"/> + </state> + <state id="s1"> + <transition cond="Var1=='ü'" target="pass"/> <transition target="fail"/> </state> <final id="pass"> |