summaryrefslogtreecommitdiffstats
path: root/test/src/test-validating.cpp
blob: 19897a1f4af58367b2b52e4f394eb9048f13855e (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
#include "uscxml/config.h"
#include "uscxml/Interpreter.h"
#include "uscxml/interpreter/InterpreterImpl.h"
#include "uscxml/debug/InterpreterIssue.h"
#include "uscxml/util/DOM.h"
#include "uscxml/interpreter/Logging.h"
#include <xercesc/util/PlatformUtils.hpp>
#include <iostream>

uscxml::Factory* factory = NULL;

using namespace uscxml;

std::set<std::string> issueLocationsForXML(const std::string xml) {
	Interpreter interpreter = Interpreter::fromXML(xml, "");

	// common xmlns and version requirement on scxml attribute
	interpreter.getImpl()->getDocument()->getDocumentElement()->setAttribute(X("xmlns"), X("http://www.w3.org/2005/07/scxml"));
	interpreter.getImpl()->getDocument()->getDocumentElement()->setAttribute(X("version"), X("1.0"));

	std::list<InterpreterIssue> issues = interpreter.validate();

	std::set<std::string> issueLocations;

	for (std::list<InterpreterIssue>::iterator issueIter = issues.begin(); issueIter != issues.end(); issueIter++) {
		std::cout << *issueIter << std::endl;
		issueLocations.insert(issueIter->xPath);
	}
	return issueLocations;
}

size_t runtimeIssues;
class IssueMonitor : public InterpreterMonitor {
public:
	IssueMonitor() {
		runtimeIssues = 0;
	}
	void reportIssue(const std::string& sessionId, const InterpreterIssue& issue) {
		runtimeIssues++;
	}
};

bool endlessLoop() {

	if (Factory::getInstance()->hasDataModel("ecmascript")) {
		// Potential endless loop

		const char* xml =
		    "<scxml datamodel=\"ecmascript\">"
		    "	<datamodel><data id=\"counter\" expr=\"5\" /></datamodel>"
		    "	<state id=\"foo\">"
		    "		<onentry><script>counter--;</script></onentry>"
		    "		<transition target=\"foo\" cond=\"counter > 0\" />"
		    "		<transition target=\"bar\" cond=\"counter == 0\" />"
		    " </state>"
		    "	<state id=\"bar\" final=\"true\" />"
		    "</scxml>";

		IssueMonitor monitor;
		Interpreter interpreter = Interpreter::fromXML(xml, "");
		interpreter.addMonitor(&monitor);

		while(interpreter.step() > 0) {}

		// four identical configurations between macrosteps
		assert(runtimeIssues == 4);
	}
	return true;
}

bool unreachableState() {
	if (1) {
		// Unreachable states 1

		const char* xml =
		    "<scxml>"
		    "	<state id=\"foo\">"
		    "		<parallel id=\"foz\">"
		    "			<state id=\"s0\" />"
		    "			<state id=\"s1\" />"
		    "			<state id=\"s2\" />"
		    "		</parallel>"
		    " </state>"
		    "	<state id=\"bar\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"bar\"]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}
	return true;
}

bool invalidParents() {
	if (1) {
		// Invalid parents
		const char* xml =
		    "<scxml>"
		    "		<onentry>"
		    "			<cancel sendid=\"foo\" />"
		    "		</onentry>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("/scxml[1]/onentry[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}
	return true;
}

bool noIdAttr() {
	if (1) {
		// State has no 'id' attribute
		// *** This is not actually an error! ***
		const char* xml =
		    "<scxml>"
		    "	<state>"
		    "		<transition/>"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("/scxml[1]/state[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	return true;
}

bool duplicateIdAttr() {
	if (1) {
		// Duplicate state with id
		const char* xml =
		    "<scxml>"
		    "	<state id=\"start\" />"
		    " <state id=\"start\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	return true;
}

bool invalidTarget() {
	if (1) {
		// Transition has non-existant target state

		const char* xml =
		    "<scxml>"
		    "	<state id=\"start\">"
		    "		<transition target=\"done\" />"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/transition[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	return true;
}

bool uselessHistory1() {
	if (1) {
		// Useless history 1

		const char* xml =
		    "<scxml>"
		    " <state id=\"start\" initial=\"bar\">"
		    "   <history id=\"bar\" />"
		    "   <state id=\"baz\" />"
		    "   <transition event=\"e.foo\" target=\"done\" />"
		    "   <transition event=\"e.bar\" target=\"baz\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//history[@id=\"bar\"]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	return true;
}

bool uselessHistory2() {
	if (1) {
		// Useless history 2

		const char* xml =
		    "<scxml>"
		    " <state id=\"start\" initial=\"bar\">"
		    "   <history id=\"bar\">"
		    "       <transition target=\"foo\" />"
		    "   </history>"
		    "   <transition target=\"done\" />"
		    "	<state id=\"foo\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//history[@id=\"bar\"]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}
	return true;
}

bool illegalCompletion() {
	if (1) {
		// No legal completion

		const char* xml =
		    "<scxml>"
		    " <state id=\"start\" initial=\"foo bar\">"
		    "	<state id=\"foo\" />"
		    "	<state id=\"bar\" />"
		    "   <transition target=\"foo bar\" />"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]") != issueLocations.end());
		assert(issueLocations.find("//state[@id=\"start\"]/transition[1]") != issueLocations.end());
		assert(issueLocations.size() == 2);
	}
	return true;
}

bool attributeConstraints() {
	if (1) {
		// attribute constraints

		{
			// initial attribute and <initial> child
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\" initial=\"foo\">"
			    "   <initial>"
			    "       <transition target=\"foo\" />"
			    "   </initial>"
			    "	<state id=\"foo\" />"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.find("//state[@id=\"start\"]") != issueLocations.end());
			assert(issueLocations.size() == 1);
		}

		{
			// initial attribute with atomic state
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\" initial=\"\" />"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.find("//state[@id=\"start\"]") != issueLocations.end());
			assert(issueLocations.size() == 1);
		}

		{
			// initial child with atomic state
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\">"
			    "   <initial>"
			    "       <transition target=\"start\" />"
			    "   </initial>"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.find("//state[@id=\"start\"]") != issueLocations.end());
			assert(issueLocations.size() == 2); // also invalid non-child target state in initial
		}

		// combinations of namelist, content and param
		{
			// send with content and namelist, not allowed
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\">"
			    "   <onentry>"
			    "     <send target=\"#_external\" namelist=\"var1\">"
			    "       <content>Foo!</content>"
			    "     </send>"
			    "   </onentry>"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/send[1]") != issueLocations.end());
			assert(issueLocations.size() == 1);
		}

		{
			// send with content and params, not allowed
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\">"
			    "   <onentry>"
			    "     <send target=\"#_external\">"
			    "       <param name=\"foo\" expr=\"3\" />"
			    "       <content>Foo!</content>"
			    "     </send>"
			    "   </onentry>"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/send[1]") != issueLocations.end());
			assert(issueLocations.size() == 1);
		}

		{
			// send with params and namelist, perfectly acceptable
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\">"
			    "   <onentry>"
			    "     <send target=\"#_external\" namelist=\"foo\">"
			    "       <param name=\"foo\" expr=\"3\" />"
			    "     </send>"
			    "   </onentry>"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.size() == 0);
		}

		{
			// invoke with content and src, not allowed
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\">"
			    "     <invoke type=\"scxml\" src=\"var1\">"
			    "       <content>Foo!</content>"
			    "     </invoke>"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.find("//state[@id=\"start\"]/invoke[1]") != issueLocations.end());
			assert(issueLocations.size() == 1);
		}

		{
			// source with src and child content, not allowed
			const char* xml =
			    "<scxml>"
			    "  <state id=\"start\">"
			    "    <onentry>"
			    "      <script src=\"https://raw.githubusercontent.com/tklab-tud/uscxml/master/test/w3c/null/test436.scxml\">"
			    "         foo"
			    "      </script>"
			    "    </onentry>"
			    "  </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/script[1]") != issueLocations.end());
			assert(issueLocations.size() == 1);
		}


		{
			// invoke with namelist and param, not allowed
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\">"
			    "     <invoke type=\"scxml\" namelist=\"var1\">"
			    "       <param name=\"foo\" expr=\"3\" />"
			    "     </invoke>"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.find("//state[@id=\"start\"]/invoke[1]") != issueLocations.end());
			assert(issueLocations.size() == 1);
		}

		{
			// invoke with param and content, perfectly acceptable
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\">"
			    "     <invoke type=\"scxml\">"
			    "       <param name=\"foo\" expr=\"3\" />"
			    "       <content>Foo!</content>"
			    "     </invoke>"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.size() == 0);
		}

		{
			// invoke with namelist and content, perfectly acceptable
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\">"
			    "     <invoke type=\"scxml\" namelist=\"var1\">"
			    "       <content>Foo!</content>"
			    "     </invoke>"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.size() == 0);
		}

		{
			// donedata with content and param, not allowed
			const char* xml =
			    "<scxml>"
			    " <state id=\"start\">"
			    "     <donedata>"
			    "       <param name=\"foo\" expr=\"3\" />"
			    "       <content>Foo!</content>"
			    "     </donedata>"
			    " </state>"
			    "</scxml>";

			std::set<std::string> issueLocations = issueLocationsForXML(xml);
			assert(issueLocations.find("//state[@id=\"start\"]/donedata[1]") != issueLocations.end());
			assert(issueLocations.size() == 1);
		}
	}
	return true;
}

bool optimallyEnabled() {
	if (1) {
		// Transition can never be optimally enabled (conditionless, eventless)

		const char* xml =
		    "<scxml>"
		    "  <state id=\"start\">"
		    "    <transition target=\"done\" />"
		    "    <transition target=\"done\" />"
		    "  </state>"
		    "  <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/transition[2]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}
	if (1) {
		// Transition can never be optimally enabled (conditionless, more events)

		const char* xml =
		    "<scxml>"
		    "	<state id=\"start\">"
		    "		<transition event=\"error\" target=\"done\" />"
		    "		<transition event=\"error.bar error.foo\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/transition[2]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}
	return true;
}

bool invalidInitial() {
	if (1) {
		// Initial attribute has invalid target state

		const char* xml =
		    "<scxml initial=\"foo\">"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("/scxml[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (1) {
		// Initial attribute with target outside of children

		const char* xml =
		    "<scxml>"
		    " <state id=\"start\" initial=\"foo done\">"
		    "	<state id=\"foo\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}
	if (1) {
		// Initial transition with target outside of children

		const char* xml =
		    "<scxml>"
		    " <state id=\"start\">"
		    "   <initial>"
		    "       <transition target=\"foo done\" />"
		    "   </initial>"
		    "	<state id=\"foo\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/initial[1]/transition[1]") != issueLocations.end());
		assert(issueLocations.size() == 1); // there are actually two issues with the transition
	}
	if (1) {
		// Initial history transition with target outside of children

		const char* xml =
		    "<scxml>"
		    " <state id=\"start\" initial=\"bar\">"
		    "   <history id=\"bar\">"
		    "       <transition target=\"foo done\" />"
		    "   </history>"
		    "	<state id=\"foo\">"
		    "       <transition target=\"baz\" />"
		    "   </state>"
		    "	<state id=\"baz\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//history[@id=\"bar\"]/transition[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}
	if (1) {
		// Initial transition with target outside of children

		const char* xml =
		    "<scxml>"
		    " <state id=\"start\">"
		    "   <initial>"
		    "       <transition target=\"foo done\" />"
		    "   </initial>"
		    "	<state id=\"foo\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/initial[1]/transition[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (1) {
		// Initial transition with event
		const char* xml =
		    "<scxml>"
		    " <state id=\"start\">"
		    "   <initial>"
		    "       <transition event=\"e.foo\" target=\"foo\" />"
		    "   </initial>"
		    "	<state id=\"foo\" />"
		    "   <transition event=\"e.bar\" target=\"done\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/initial[1]/transition[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (1) {
		// Initial transition with condition
		const char* xml =
		    "<scxml>"
		    " <state id=\"start\">"
		    "   <initial>"
		    "       <transition cond=\"true\" target=\"foo\" />"
		    "   </initial>"
		    "	<state id=\"foo\" />"
		    "   <transition event=\"e.bar\" target=\"done\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/initial[1]/transition[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (1) {
		// Initial with multiple transitions
		const char* xml =
		    "<scxml>"
		    " <state id=\"start\">"
		    "   <initial>"
		    "       <transition target=\"foo\" />"
		    "       <transition target=\"foo\" />"
		    "   </initial>"
		    "	<state id=\"foo\" />"
		    "   <transition event=\"e.bar\" target=\"done\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/initial[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (1) {
		// Initial with no transitions
		const char* xml =
		    "<scxml>"
		    " <state id=\"start\">"
		    "   <initial />"
		    "	<state id=\"foo\" />"
		    "   <transition event=\"e.bar\" target=\"done\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"foo\"]") != issueLocations.end()); // unreachable
		assert(issueLocations.find("//state[@id=\"start\"]/initial[1]") != issueLocations.end());
		assert(issueLocations.size() == 2);
	}
	return true;
}

bool invalidHistory() {
	if (1) {
		// History transition with event
		const char* xml =
		    "<scxml>"
		    " <state id=\"start\" initial=\"bar\">"
		    "   <history id=\"bar\">"
		    "       <transition event=\"e.foo\" target=\"foo\" />"
		    "   </history>"
		    "	<state id=\"foo\">"
		    "       <state id=\"foo.s1\">"
		    "           <transition target=\"foo.s2\" />"
		    "       </state>"
		    "       <state id=\"foo.s2\" />"
		    "   </state>"
		    "   <transition event=\"e.bar\" target=\"done\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//history[@id=\"bar\"]/transition[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (1) {
		// History transition with condition
		const char* xml =
		    "<scxml>"
		    " <state id=\"start\" initial=\"bar\">"
		    "   <history id=\"bar\">"
		    "       <transition cond=\"false\" target=\"foo\" />"
		    "   </history>"
		    "	<state id=\"foo\">"
		    "       <state id=\"foo.s1\">"
		    "           <transition target=\"foo.s2\" />"
		    "       </state>"
		    "       <state id=\"foo.s2\" />"
		    "   </state>"
		    "   <transition event=\"e.bar\" target=\"done\" />"
		    " </state>"
		    " <final id=\"done\" />"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//history[@id=\"bar\"]/transition[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}
	return true;
}

bool unknownIOProc() {
	if (1) {
		// Send to unknown IO Processor

		const char* xml =
		    "<scxml>"
		    "	<state id=\"start\">"
		    "		<onentry>"
		    "			<send type=\"non-existant\" />"
		    "		</onentry>"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/send[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	return true;
}

bool unknownDataModel() {
	if (1) {
		// SCXML document requires unknown datamodel

		const char* xml =
		    "<scxml datamodel=\"non-existant\">"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("/scxml[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	return true;
}

bool unknownExecContent() {
	if (1) {
		// Unknown executable content element

		const char* xml =
		    "<scxml>"
		    "	<state id=\"start\">"
		    "		<onentry>"
		    "			<nonexistant />"
		    "		</onentry>"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/nonexistant[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	return true;
}

bool syntaxErrors() {
	if (Factory::getInstance()->hasDataModel("ecmascript")) {
		// Syntax error in script

		const char* xml =
		    "<scxml datamodel=\"ecmascript\">"
		    "	<script>"
		    "   $wfwegr^ "
		    " </script>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("/scxml[1]/script[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (Factory::getInstance()->hasDataModel("ecmascript")) {
		// Syntax error in cond attribute

		const char* xml =
		    "<scxml datamodel=\"ecmascript\">"
		    "	<state id=\"start\">"
		    "		<onentry>"
		    "			<if cond=\"%2345\">"
		    "			<elseif cond=\"%2345\" />"
		    "			</if>"
		    "		</onentry>"
		    "		<transition cond=\"%2345\" />"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/transition[1]") != issueLocations.end());
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/if[1]") != issueLocations.end());
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/if[1]/elseif[1]") != issueLocations.end());
		assert(issueLocations.size() == 3);
	}

	if (Factory::getInstance()->hasDataModel("ecmascript")) {
		// Syntax error in expr attribute

		const char* xml =
		    "<scxml datamodel=\"ecmascript\">"
		    "	<datamodel>"
		    "		<data id=\"foo\" expr=\"%2345\" />"
		    "	</datamodel>"
		    "	<state id=\"start\">"
		    "		<onentry>"
		    "			<log expr=\"%2345\" />"
		    "			<assign location=\"foo\" expr=\"%2345\" />"
		    "			<send>"
		    "				<param expr=\"%2345\" />"
		    "			</send>"
		    "			<send>"
		    "				<content expr=\"%2345\" />"
		    "			</send>"
		    "		</onentry>"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/log[1]") != issueLocations.end());
		assert(issueLocations.find("//data[@id=\"foo\"]") != issueLocations.end());
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/assign[1]") != issueLocations.end());
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/send[1]/param[1]") != issueLocations.end());
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/send[2]/content[1]") != issueLocations.end());
		assert(issueLocations.size() == 5);
	}

	if (Factory::getInstance()->hasDataModel("ecmascript")) {
		// Syntax error with foreach

		const char* xml =
		    "<scxml datamodel=\"ecmascript\">"
		    "	<state id=\"start\">"
		    "		<onentry>"
		    "			<foreach item=\"%2345\" index=\"%2345\" array=\"%2345\">"
		    "			</foreach>"
		    "		</onentry>"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/foreach[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (Factory::getInstance()->hasDataModel("ecmascript")) {
		// Syntax error with send

		const char* xml =
		    "<scxml datamodel=\"ecmascript\">"
		    "	<state id=\"start\">"
		    "		<onentry>"
		    "			<send eventexpr=\"%2345\" targetexpr=\"%2345\" typeexpr=\"%2345\" idlocation=\"%2345\" delayexpr=\"%2345\" />"
		    "		</onentry>"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/send[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (Factory::getInstance()->hasDataModel("ecmascript")) {
		// Syntax error with invoke

		const char* xml =
		    "<scxml datamodel=\"ecmascript\">"
		    "	<state id=\"start\">"
		    "		<invoke typeexpr=\"%2345\" srcexpr=\"%2345\" idlocation=\"%2345\" />"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/invoke[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	if (Factory::getInstance()->hasDataModel("ecmascript")) {
		// Syntax error with cancel

		const char* xml =
		    "<scxml datamodel=\"ecmascript\">"
		    "	<state id=\"start\">"
		    "		<onentry>"
		    "			<cancel sendidexpr=\"%2345\" />"
		    "		</onentry>"
		    " </state>"
		    "</scxml>";

		std::set<std::string> issueLocations = issueLocationsForXML(xml);
		assert(issueLocations.find("//state[@id=\"start\"]/onentry[1]/cancel[1]") != issueLocations.end());
		assert(issueLocations.size() == 1);
	}

	return true;
}

int main(int argc, char** argv) {

	factory = Factory::getInstance();
//	return EXIT_SUCCESS;

	try {
		using namespace XERCESC_NS;

		int iterations = 1;

		while(iterations--) {

			endlessLoop();
			unreachableState();
			invalidParents();
			noIdAttr();
			duplicateIdAttr();
			invalidTarget();
			uselessHistory1();
			uselessHistory2();
			illegalCompletion();
			attributeConstraints();
			optimallyEnabled();
			invalidInitial();
			invalidHistory();
			unknownIOProc();
			unknownDataModel();
			unknownExecContent();
			syntaxErrors();

		}
	} catch (ErrorEvent e) {
		std::cout << e;
		return EXIT_FAILURE;
	}

	return EXIT_SUCCESS;
}