xrust 2.0.3

Support for XPath and XSLT
Documentation
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
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
/*

OASIS/NIST test cases

*/

#[cfg(all(test, feature = "test-conformance-xml"))]
use std::fs;
#[cfg(all(test, feature = "test-conformance-xml"))]
use xrust::item::Node;
#[cfg(all(test, feature = "test-conformance-xml"))]
use xrust::parser::{ParseError, ParserStateBuilder, StaticStateBuilder, xml};
#[cfg(all(test, feature = "test-conformance-xml"))]
use xrust::trees::smite::RNode;
#[cfg(all(test, feature = "test-conformance-xml"))]
use xrust::validators::Schema;
#[cfg(all(test, feature = "test-conformance-xml"))]
use xrust::{Error, ErrorKind};

#[cfg(all(test, feature = "test-conformance-xml"))]
fn test_oasis_invalid(xmldoc: &str) {
    let ss = StaticStateBuilder::new()
        .dtd_resolver(dtdfileresolve())
        .namespace(|_: &_| Err(ParseError::MissingNameSpace))
        .build();

    let testxml = RNode::new_document();
    let ps = ParserStateBuilder::new()
        .doc(testxml)
        .document_location("tests/conformance/xml/xmlconf/oasis/".to_string())
        .build();
    let parseresult = xml::parse_with_state(xmldoc, ps, ss);

    assert!(parseresult.is_ok());

    let doc = parseresult.unwrap();
    let validation = doc.validate(Schema::DTD);
    assert!(validation.is_err());
}
#[cfg(all(test, feature = "test-conformance-xml"))]
fn dtdfileresolve() -> fn(Option<String>, String) -> Result<String, Error> {
    move |locdir, uri| {
        let u = match locdir {
            None => uri,
            Some(ld) => ld + uri.as_str(),
        };
        match fs::read_to_string(u) {
            Err(_) => Err(Error::new(
                ErrorKind::Unknown,
                "Unable to read external DTD".to_string(),
            )),
            Ok(s) => Ok(s),
        }
    }
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op01pass1() {
    /*
        Test ID:o-p01pass1
        Test URI:p01pass1.xml
        Spec Sections:2.1 [1]
        Description:no prolog
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p01pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op01pass3() {
    /*
        Test ID:o-p01pass3
        Test URI:p01pass3.xml
        Spec Sections:2.1 [1]
        Description:Misc items after the document
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p01pass3.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op03pass1() {
    /*
        Test ID:o-p03pass1
        Test URI:p03pass1.xml
        Spec Sections:2.3 [3]
        Description:all valid S characters
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p03pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[ignore]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op04pass1() {
    /*
        Test ID:o-p04pass1
        Test URI:p04pass1.xml
        Spec Sections:2.3 [4]
        Description:names with all valid ASCII characters, and one from each other class in NameChar

        Note: While this may be well formed in a not namespace-aware XML processor, we don't have any
        interest in supporting those at this time.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p04pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[ignore]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op05pass1() {
    /*
        Test ID:o-p05pass1
        Test URI:p05pass1.xml
        Spec Sections:2.3 [5]
        Description:various valid Name constructions

        Note: While this may be well formed in a not namespace-aware XML processor, we don't have any
        interest in supporting those at this time.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p05pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[ignore]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op06fail1() {
    /*
        Test ID:o-p06fail1
        Test URI:p06fail1.xml
        Spec Sections:2.3 [6]
        Description:Requires at least one name.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p06fail1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[ignore]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op08fail1() {
    /*
        Test ID:o-p08fail1
        Test URI:p08fail1.xml
        Spec Sections:2.3 [8]
        Description:at least one Nmtoken is required.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p08fail1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[ignore]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op08fail2() {
    /*
        Test ID:o-p08fail2
        Test URI:p08fail2.xml
        Spec Sections:2.3 [8]
        Description:an invalid Nmtoken character.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p08fail2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op10pass1() {
    /*
        Test ID:o-p10pass1
        Test URI:p10pass1.xml
        Spec Sections:2.3 [10]
        Description:valid attribute values
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p10pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op14pass1() {
    /*
        Test ID:o-p14pass1
        Test URI:p14pass1.xml
        Spec Sections:2.4 [14]
        Description:valid CharData
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p14pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op15pass1() {
    /*
        Test ID:o-p15pass1
        Test URI:p15pass1.xml
        Spec Sections:2.5 [15]
        Description:valid comments
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p15pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op16pass1() {
    /*
        Test ID:o-p16pass1
        Test URI:p16pass1.xml
        Spec Sections:2.6 [16] [17]
        Description:Valid form of Processing Instruction. Shows that whitespace character data is valid before end of processing instruction.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p16pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op16pass2() {
    /*
        Test ID:o-p16pass2
        Test URI:p16pass2.xml
        Spec Sections:2.6 [16]
        Description:Valid form of Processing Instruction. Shows that whitespace character data is valid before end of processing instruction.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p16pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op16pass3() {
    /*
        Test ID:o-p16pass3
        Test URI:p16pass3.xml
        Spec Sections:2.6 [16]
        Description:Valid form of Processing Instruction. Shows that whitespace character data is valid before end of processing instruction.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p16pass3.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op18pass1() {
    /*
        Test ID:o-p18pass1
        Test URI:p18pass1.xml
        Spec Sections:2.7 [18]
        Description:valid CDSect's. Note that a CDStart in a CDSect is not recognized as such
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p18pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op22pass1() {
    /*
        Test ID:o-p22pass1
        Test URI:p22pass1.xml
        Spec Sections:2.8 [22]
        Description:prolog can be empty
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p22pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op22pass2() {
    /*
        Test ID:o-p22pass2
        Test URI:p22pass2.xml
        Spec Sections:2.8 [22]
        Description:XML declaration only
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p22pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op22pass3() {
    /*
        Test ID:o-p22pass3
        Test URI:p22pass3.xml
        Spec Sections:2.8 [22]
        Description:XML decl and Misc
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p22pass3.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op23pass1() {
    /*
        Test ID:o-p23pass1
        Test URI:p23pass1.xml
        Spec Sections:2.8 [23]
        Description:Test shows a valid XML declaration along with version info.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p23pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op23pass2() {
    /*
        Test ID:o-p23pass2
        Test URI:p23pass2.xml
        Spec Sections:2.8 [23]
        Description:Test shows a valid XML declaration along with encoding declaration.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p23pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op23pass3() {
    /*
        Test ID:o-p23pass3
        Test URI:p23pass3.xml
        Spec Sections:2.8 [23]
        Description:Test shows a valid XML declaration along with Standalone Document Declaration.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p23pass3.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op23pass4() {
    /*
        Test ID:o-p23pass4
        Test URI:p23pass4.xml
        Spec Sections:2.8 [23]
        Description:Test shows a valid XML declaration, encoding declarationand Standalone Document Declaration.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p23pass4.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op24pass1() {
    /*
        Test ID:o-p24pass1
        Test URI:p24pass1.xml
        Spec Sections:2.8 [24]
        Description:Test shows a prolog that has the VersionInfo delimited by double quotes.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p24pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op24pass2() {
    /*
        Test ID:o-p24pass2
        Test URI:p24pass2.xml
        Spec Sections:2.8 [24]
        Description:Test shows a prolog that has the VersionInfo delimited by single quotes.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p24pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op24pass3() {
    /*
        Test ID:o-p24pass3
        Test URI:p24pass3.xml
        Spec Sections:2.8 [24]
        Description:Test shows whitespace is allowed in prolog before version info.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p24pass3.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op24pass4() {
    /*
        Test ID:o-p24pass4
        Test URI:p24pass4.xml
        Spec Sections:2.8 [24]
        Description:Test shows whitespace is allowed in prolog on both sides of equal sign.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p24pass4.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op25pass1() {
    /*
        Test ID:o-p25pass1
        Test URI:p25pass1.xml
        Spec Sections:2.8 [25]
        Description:Test shows whitespace is NOT necessary before or after equal sign of versioninfo.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p25pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op25pass2() {
    /*
        Test ID:o-p25pass2
        Test URI:p25pass2.xml
        Spec Sections:2.8 [25]
        Description:Test shows whitespace can be used on both sides of equal sign of versioninfo.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p25pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op26pass1() {
    /*
        Test ID:o-p26pass1
        Test URI:p26pass1.xml
        Spec Sections:2.8 [26]
        Description:The valid version number. We cannot test others because a 1.0 processor is allowed to fail them.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p26pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op27pass1() {
    /*
        Test ID:o-p27pass1
        Test URI:p27pass1.xml
        Spec Sections:2.8 [27]
        Description:Comments are valid as the Misc part of the prolog.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p27pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op27pass2() {
    /*
        Test ID:o-p27pass2
        Test URI:p27pass2.xml
        Spec Sections:2.8 [27]
        Description:Processing Instructions are valid as the Misc part of the prolog.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p27pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op27pass3() {
    /*
        Test ID:o-p27pass3
        Test URI:p27pass3.xml
        Spec Sections:2.8 [27]
        Description:Whitespace is valid as the Misc part of the prolog.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p27pass3.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op27pass4() {
    /*
        Test ID:o-p27pass4
        Test URI:p27pass4.xml
        Spec Sections:2.8 [27]
        Description:A combination of comments, whitespaces and processing instructions are valid as the Misc part of the prolog.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p27pass4.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op32pass1() {
    /*
        Test ID:o-p32pass1
        Test URI:p32pass1.xml
        Spec Sections:2.9 [32]
        Description:Double quotes can be used as delimeters for the value of a Standalone Document Declaration.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p32pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op32pass2() {
    /*
        Test ID:o-p32pass2
        Test URI:p32pass2.xml
        Spec Sections:2.9 [32]
        Description:Single quotes can be used as delimeters for the value of a Standalone Document Declaration.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p32pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op39pass1() {
    /*
        Test ID:o-p39pass1
        Test URI:p39pass1.xml
        Spec Sections:3 3.1 [39] [44]
        Description:Empty element tag may be used for any element which has no content.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p39pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op39pass2() {
    /*
        Test ID:o-p39pass2
        Test URI:p39pass2.xml
        Spec Sections:3 3.1 [39] [43]
        Description:Character data is valid element content.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p39pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op40pass1() {
    /*
        Test ID:o-p40pass1
        Test URI:p40pass1.xml
        Spec Sections:3.1 [40]
        Description:Elements content can be empty.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p40pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op40pass2() {
    /*
        Test ID:o-p40pass2
        Test URI:p40pass2.xml
        Spec Sections:3.1 [40]
        Description:Whitespace is valid within a Start-tag.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p40pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op40pass3() {
    /*
        Test ID:o-p40pass3
        Test URI:p40pass3.xml
        Spec Sections:3.1 [40] [41]
        Description:Attributes are valid within a Start-tag.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p40pass3.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op40pass4() {
    /*
        Test ID:o-p40pass4
        Test URI:p40pass4.xml
        Spec Sections:3.1 [40]
        Description:Whitespace and Multiple Attributes are valid within a Start-tag.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p40pass4.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op41pass1() {
    /*
        Test ID:o-p41pass1
        Test URI:p41pass1.xml
        Spec Sections:3.1 [41]
        Description:Attributes are valid within a Start-tag.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p41pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op41pass2() {
    /*
        Test ID:o-p41pass2
        Test URI:p41pass2.xml
        Spec Sections:3.1 [41]
        Description:Whitespace is valid within a Start-tags Attribute.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p41pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op42pass1() {
    /*
        Test ID:o-p42pass1
        Test URI:p42pass1.xml
        Spec Sections:3.1 [42]
        Description:Test shows proper syntax for an End-tag.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p42pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op42pass2() {
    /*
        Test ID:o-p42pass2
        Test URI:p42pass2.xml
        Spec Sections:3.1 [42]
        Description:Whitespace is valid after name in End-tag.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p42pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op44pass1() {
    /*
        Test ID:o-p44pass1
        Test URI:p44pass1.xml
        Spec Sections:3.1 [44]
        Description:Valid display of an Empty Element Tag.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p44pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op44pass2() {
    /*
        Test ID:o-p44pass2
        Test URI:p44pass2.xml
        Spec Sections:3.1 [44]
        Description:Empty Element Tags can contain an Attribute.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p44pass2.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op44pass3() {
    /*
        Test ID:o-p44pass3
        Test URI:p44pass3.xml
        Spec Sections:3.1 [44]
        Description:Whitespace is valid in an Empty Element Tag following the end of the attribute value.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p44pass3.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op44pass4() {
    /*
        Test ID:o-p44pass4
        Test URI:p44pass4.xml
        Spec Sections:3.1 [44]
        Description:Whitespace is valid after the name in an Empty Element Tag.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p44pass4.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op44pass5() {
    /*
        Test ID:o-p44pass5
        Test URI:p44pass5.xml
        Spec Sections:3.1 [44]
        Description:Whitespace and Multiple Attributes are valid in an Empty Element Tag.
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p44pass5.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op66pass1() {
    /*
        Test ID:o-p66pass1
        Test URI:p66pass1.xml
        Spec Sections:4.1 [66]
        Description:valid character references
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p66pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[ignore]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op74pass1() {
    /*
        Test ID:o-p74pass1
        Test URI:p74pass1.xml
        Spec Sections:4.2 [74]
        Description:PEDef is either an entity value or an external id
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p74pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[ignore]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn op75pass1() {
    /*
        Test ID:o-p75pass1
        Test URI:p75pass1.xml
        Spec Sections:4.2.2 [75]
        Description:valid external identifiers
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/p75pass1.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn oe2() {
    /*
        Test ID:o-e2
        Test URI:e2.xml
        Spec Sections:3.3.1 [58] [59] Errata [E2]
        Description:Validity Constraint: No duplicate tokens
    */

    test_oasis_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/oasis/e2.xml")
            .unwrap()
            .as_str(),
    );
}