fastxml 0.8.1

A fast, memory-efficient XML library with XPath and XSD validation support
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
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
//! Tests for the one-pass streaming schema validator.

use std::sync::Arc;

use super::*;
use crate::error::{ErrorLevel, StructuredError, ValidationErrorType};
use crate::event::{XmlEvent, XmlEventHandler};
use crate::namespace::Namespace;
use crate::schema::types::{
    CompiledSchema, ComplexType, ContentModel, ContentModelType, FlattenedChildren,
};

use super::super::state::{ElementContext, ValidationState};

// =============================================
// ValidationMode Tests
// =============================================

#[test]
fn test_validation_mode_default() {
    let mode = ValidationMode::default();
    assert_eq!(mode, ValidationMode::Strict);
}

// =============================================
// ValidationState Tests
// =============================================

#[test]
fn test_validation_state_new() {
    let state = ValidationState::new();
    assert!(state.element_stack.is_empty());
    assert_eq!(state.depth, 0);
    assert_eq!(state.namespace_stack.len(), 1);
}

#[test]
fn test_validation_state_push_pop_element() {
    let mut state = ValidationState::new();

    state.push_element_str("root", None);
    assert_eq!(state.depth, 1);
    assert_eq!(state.element_stack.len(), 1);
    assert_eq!(state.element_stack[0].name.as_ref(), "root");

    state.push_element_str("child", Some("http://example.com"));
    assert_eq!(state.depth, 2);
    assert_eq!(state.element_stack.len(), 2);

    let popped = state.pop_element().unwrap();
    assert_eq!(popped.name.as_ref(), "child");
    assert_eq!(state.depth, 1);
}

#[test]
fn test_validation_state_element_path() {
    let mut state = ValidationState::new();
    assert_eq!(state.element_path(), "/");

    state.push_element_str("root", None);
    assert_eq!(state.element_path(), "/root");

    state.push_element_str("child", None);
    assert_eq!(state.element_path(), "/root/child");
}

// =============================================
// ElementContext Tests
// =============================================

#[test]
fn test_element_context_new() {
    let ctx = ElementContext::from_str("test", Some("http://example.com"));
    assert_eq!(ctx.name.as_ref(), "test");
    assert_eq!(ctx.namespace.as_deref(), Some("http://example.com"));
    assert!(ctx.child_counts.is_empty());
    assert!(ctx.text_content.is_empty());
    assert!(!ctx.schema_validated);
}

#[test]
fn test_element_context_child_counts() {
    let mut ctx = ElementContext::from_str("parent", None);

    assert_eq!(ctx.get_child_count("child1"), 0);

    assert_eq!(ctx.increment_child("child1"), 1);
    assert_eq!(ctx.get_child_count("child1"), 1);

    assert_eq!(ctx.increment_child("child1"), 2);
    assert_eq!(ctx.get_child_count("child1"), 2);

    assert_eq!(ctx.increment_child("child2"), 1);
    assert_eq!(ctx.get_child_count("child2"), 1);
}

// =============================================
// OnePassSchemaValidator Tests
// =============================================

#[test]
fn test_streaming_validator_new() {
    let schema = CompiledSchema::new();
    let validator = OnePassSchemaValidator::new(Arc::new(schema));
    assert!(validator.is_valid());
    assert!(validator.is_clean());
    assert_eq!(validator.error_count(), 0);
}

#[test]
fn test_streaming_validator_with_mode() {
    let schema = CompiledSchema::new();
    let validator = OnePassSchemaValidator::new(Arc::new(schema)).set_mode(ValidationMode::Lenient);
    assert!(validator.is_valid());
}

#[test]
fn test_streaming_validator_max_errors() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));
    validator.set_max_errors(2);

    // Add 3 errors
    validator.add_error(StructuredError::new("error1", ValidationErrorType::Other));
    validator.add_error(StructuredError::new("error2", ValidationErrorType::Other));
    validator.add_error(StructuredError::new("error3", ValidationErrorType::Other));

    // Should only have 2 errors
    assert_eq!(validator.errors().len(), 2);
}

#[test]
fn test_streaming_validator_make_error() {
    let schema = CompiledSchema::new();
    let validator = OnePassSchemaValidator::new(Arc::new(schema));

    let error = validator.make_error(ValidationErrorType::UnknownElement, "test error");
    assert_eq!(error.message, "test error");
    assert_eq!(error.error_type, ValidationErrorType::UnknownElement);
}

#[test]
fn test_streaming_validator_errors_and_warnings() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    validator.add_error(
        StructuredError::new("error1", ValidationErrorType::Other).with_level(ErrorLevel::Error),
    );
    validator.add_error(
        StructuredError::new("warning1", ValidationErrorType::Other)
            .with_level(ErrorLevel::Warning),
    );
    validator.add_error(
        StructuredError::new("error2", ValidationErrorType::Other).with_level(ErrorLevel::Error),
    );

    assert_eq!(validator.error_count(), 2);
    assert_eq!(validator.warning_count(), 1);
    assert_eq!(validator.errors_only().len(), 2);
    assert_eq!(validator.warnings().len(), 1);
    assert!(!validator.is_valid());
    assert!(!validator.is_clean());
}

#[test]
fn test_streaming_validator_with_schema_elements() {
    use crate::schema::types::{ElementDef, SimpleType, TypeDef};

    let mut schema = CompiledSchema::new();

    // Add a simple element definition
    schema.elements.insert(
        "root".to_string(),
        ElementDef::new("root").with_type("xs:string"),
    );

    // Add type definition
    schema.types.insert(
        "xs:string".to_string(),
        TypeDef::Simple(SimpleType::new("xs:string")),
    );

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Valid element
    let _ = validator.handle(&XmlEvent::StartElement {
        name: "root".into(),
        prefix: None,
        namespace: None,
        attributes: vec![],
        namespace_decls: vec![],
        line: Some(1),
        column: Some(1),
    });

    assert!(validator.is_valid());
}

#[test]
fn test_streaming_validator_unknown_element_strict() {
    use crate::schema::types::ElementDef;

    let mut schema = CompiledSchema::new();

    // Add at least one element so schema has elements
    schema
        .elements
        .insert("known".to_string(), ElementDef::new("known"));

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    let _ = validator.handle(&XmlEvent::StartElement {
        name: "unknown".into(),
        prefix: None,
        namespace: None,
        attributes: vec![],
        namespace_decls: vec![],
        line: Some(1),
        column: Some(1),
    });

    // Should have an error for unknown element in strict mode
    assert!(!validator.is_valid());
    assert!(
        validator
            .errors()
            .iter()
            .any(|e| e.message.contains("unknown"))
    );
}

#[test]
fn test_streaming_validator_unknown_element_lenient() {
    use crate::schema::types::ElementDef;

    let mut schema = CompiledSchema::new();

    // Add at least one element so schema has elements
    schema
        .elements
        .insert("known".to_string(), ElementDef::new("known"));

    let mut validator =
        OnePassSchemaValidator::new(Arc::new(schema)).set_mode(ValidationMode::Lenient);

    let _ = validator.handle(&XmlEvent::StartElement {
        name: "unknown".into(),
        prefix: None,
        namespace: None,
        attributes: vec![],
        namespace_decls: vec![],
        line: Some(1),
        column: Some(1),
    });

    // Should NOT have an error in lenient mode
    assert!(validator.is_valid());
}

#[test]
fn test_streaming_validator_text_content() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    let _ = validator.handle(&XmlEvent::StartElement {
        name: "test".into(),
        prefix: None,
        namespace: None,
        attributes: vec![],
        namespace_decls: vec![],
        line: None,
        column: Some(1),
    });

    let _ = validator.handle(&XmlEvent::Text("content".to_string()));

    // Check that text was collected
    let ctx = validator.state.current_element().unwrap();
    assert_eq!(ctx.text_content, "content");
}

#[test]
fn test_streaming_validator_cdata_content() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    let _ = validator.handle(&XmlEvent::StartElement {
        name: "test".into(),
        prefix: None,
        namespace: None,
        attributes: vec![],
        namespace_decls: vec![],
        line: None,
        column: Some(1),
    });

    let _ = validator.handle(&XmlEvent::CData("cdata content".to_string()));

    // Check that CDATA was collected as text
    let ctx = validator.state.current_element().unwrap();
    assert_eq!(ctx.text_content, "cdata content");
}

#[test]
fn test_streaming_validator_finish_unclosed_element() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Start element but don't close it
    let _ = validator.handle(&XmlEvent::StartElement {
        name: "unclosed".into(),
        prefix: None,
        namespace: None,
        attributes: vec![],
        namespace_decls: vec![],
        line: None,
        column: Some(1),
    });

    let _ = validator.finish();

    // Should report unclosed element
    assert!(!validator.is_valid());
    assert!(
        validator
            .errors()
            .iter()
            .any(|e| e.message.contains("not closed"))
    );
}

#[test]
fn test_streaming_validator_into_errors() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    validator.add_error(StructuredError::new(
        "test error",
        ValidationErrorType::Other,
    ));

    let errors = validator.into_errors();
    assert_eq!(errors.len(), 1);
    assert_eq!(errors[0].message, "test error");
}

#[test]
fn test_streaming_validator_min_occurs() {
    use crate::schema::types::{ElementDef, TypeDef};

    let mut schema = CompiledSchema::new();

    // Create a complex type with required child
    let complex_type = ComplexType {
        name: "ParentType".to_string(),
        base_type: None,
        content: ContentModel::Sequence(vec![
            ElementDef::new("required_child").with_occurs(1, Some(1)),
        ]),
        attributes: Vec::new(),
        is_abstract: false,
        mixed: false,
    };

    schema.elements.insert(
        "parent".to_string(),
        ElementDef::new("parent").with_type("ParentType"),
    );

    schema
        .types
        .insert("ParentType".to_string(), TypeDef::Complex(complex_type));

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Start parent element
    let _ = validator.handle(&XmlEvent::StartElement {
        name: "parent".into(),
        prefix: None,
        namespace: None,
        attributes: vec![],
        namespace_decls: vec![],
        line: Some(1),
        column: Some(1),
    });

    // End parent without adding required child
    let _ = validator.handle(&XmlEvent::EndElement {
        name: "parent".into(),
        prefix: None,
    });

    // Should have error about missing required child
    assert!(!validator.is_valid());
    assert!(
        validator
            .errors()
            .iter()
            .any(|e| e.message.contains("required_child"))
    );
}

#[test]
fn test_streaming_validator() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    validator
        .handle(&XmlEvent::StartElement {
            name: "root".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(1),
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "root".into(),
            prefix: None,
        })
        .unwrap();

    validator.handle(&XmlEvent::Eof).unwrap();
    validator.finish().unwrap();

    assert!(validator.is_valid());
}

#[test]
fn test_streaming_validator_set_max_errors() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));
    validator.set_max_errors(5);
    assert!(validator.is_valid());
}

#[test]
fn test_streaming_validator_errors_methods() {
    let schema = CompiledSchema::new();
    let validator = OnePassSchemaValidator::new(Arc::new(schema));
    assert!(validator.errors().is_empty());
    assert!(validator.errors_only().is_empty());
    assert!(validator.warnings().is_empty());
    assert_eq!(validator.error_count(), 0);
    assert_eq!(validator.warning_count(), 0);
}

#[test]
fn test_streaming_validator_is_clean() {
    let schema = CompiledSchema::new();
    let validator = OnePassSchemaValidator::new(Arc::new(schema));
    assert!(validator.is_clean());
}

#[test]
fn test_streaming_validator_with_prefix() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    validator
        .handle(&XmlEvent::StartElement {
            name: "root".into(),
            prefix: Some("ns".into()),
            namespace: Some("http://example.com".to_string()),
            attributes: vec![],
            namespace_decls: vec![Namespace::new(
                "ns".to_string(),
                "http://example.com".to_string(),
            )],
            line: None,
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "root".into(),
            prefix: Some("ns".into()),
        })
        .unwrap();

    validator.finish().unwrap();
    assert!(validator.is_valid());
}

#[test]
fn test_streaming_validator_with_attributes() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    validator
        .handle(&XmlEvent::StartElement {
            name: "root".into(),
            prefix: None,
            namespace: None,
            attributes: vec![
                ("id".into(), "1".into()),
                ("xmlns:ns".into(), "http://example.com".into()),
                (
                    "xsi:schemaLocation".into(),
                    "http://example.com schema.xsd".into(),
                ),
            ],
            namespace_decls: vec![],
            line: None,
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "root".into(),
            prefix: None,
        })
        .unwrap();

    validator.finish().unwrap();
    assert!(validator.is_valid());
}

#[test]
fn test_streaming_validator_nested_elements() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    validator
        .handle(&XmlEvent::StartElement {
            name: "root".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: None,
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::StartElement {
            name: "child".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: None,
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::StartElement {
            name: "grandchild".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: None,
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::Text("content".to_string()))
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "grandchild".into(),
            prefix: None,
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "child".into(),
            prefix: None,
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "root".into(),
            prefix: None,
        })
        .unwrap();

    validator.finish().unwrap();
    assert!(validator.is_valid());
}

#[test]
fn test_streaming_validator_other_events() {
    let schema = CompiledSchema::new();
    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // ProcessingInstruction
    validator
        .handle(&XmlEvent::ProcessingInstruction {
            target: "xml".to_string(),
            content: Some("version=\"1.0\"".to_string()),
        })
        .unwrap();

    // Comment
    validator
        .handle(&XmlEvent::Comment("This is a comment".to_string()))
        .unwrap();

    validator
        .handle(&XmlEvent::StartElement {
            name: "root".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: None,
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "root".into(),
            prefix: None,
        })
        .unwrap();

    validator.finish().unwrap();
    assert!(validator.is_valid());
}

// =============================================
// Type Inheritance Tests
// =============================================

/// Test that inherited elements from base types are recognized.
///
/// This test reproduces the issue where elements like `creationDate` defined
/// in a base type (e.g., AbstractCityObjectType) are not recognized when
/// validating an element whose type extends that base type.
#[test]
fn test_inherited_elements_from_base_type() {
    use crate::schema::types::{ComplexType, ContentModel, ElementDef, TypeDef};

    // Build a schema with type inheritance:
    // - BaseType has element "baseElement" (like creationDate in _CityObject)
    // - ExtendedType extends BaseType and adds "extElement" (like lod in ReliefFeature)
    // - "root" element uses ExtendedType

    let mut schema = CompiledSchema::new();

    // BaseType with "baseElement"
    let mut base_type = ComplexType::new("BaseType");
    base_type.content = ContentModel::Sequence(vec![
        ElementDef::new("baseElement")
            .with_type("xs:string")
            .optional(),
    ]);
    schema
        .types
        .insert("BaseType".to_string(), TypeDef::Complex(base_type));

    // ExtendedType extends BaseType, adds "extElement"
    let mut extended_type = ComplexType::new("ExtendedType");
    extended_type.content = ContentModel::ComplexExtension {
        base_type: "BaseType".to_string(),
        elements: vec![
            ElementDef::new("extElement")
                .with_type("xs:integer")
                .optional(),
        ],
    };
    schema
        .types
        .insert("ExtendedType".to_string(), TypeDef::Complex(extended_type));

    // Root element uses ExtendedType
    let root_elem = ElementDef::new("root").with_type("ExtendedType");
    schema.elements.insert("root".to_string(), root_elem);

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Start root element
    validator
        .handle(&XmlEvent::StartElement {
            name: "root".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(1),
            column: Some(1),
        })
        .unwrap();

    // Add inherited element (baseElement) - this should be valid!
    validator
        .handle(&XmlEvent::StartElement {
            name: "baseElement".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(2),
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::Text("inherited content".to_string()))
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "baseElement".into(),
            prefix: None,
        })
        .unwrap();

    // Add direct extension element (extElement)
    validator
        .handle(&XmlEvent::StartElement {
            name: "extElement".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(3),
            column: Some(1),
        })
        .unwrap();

    validator.handle(&XmlEvent::Text("42".to_string())).unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "extElement".into(),
            prefix: None,
        })
        .unwrap();

    // End root
    validator
        .handle(&XmlEvent::EndElement {
            name: "root".into(),
            prefix: None,
        })
        .unwrap();

    validator.finish().unwrap();

    // Check for errors - inherited element should NOT cause an error
    let errors: Vec<_> = validator
        .errors()
        .iter()
        .filter(|e| e.message.contains("baseElement"))
        .collect();

    assert!(
        errors.is_empty(),
        "Inherited element 'baseElement' should be recognized, but got errors: {:?}",
        errors
    );

    assert!(
        validator.is_valid(),
        "Validation should pass for inherited elements, but got errors: {:?}",
        validator.errors()
    );
}

/// Test multi-level type inheritance (grandparent -> parent -> child).
#[test]
fn test_multi_level_inheritance() {
    use crate::schema::types::{ComplexType, ContentModel, ElementDef, TypeDef};

    let mut schema = CompiledSchema::new();

    // GrandparentType has "grandparentElem"
    let mut grandparent_type = ComplexType::new("GrandparentType");
    grandparent_type.content = ContentModel::Sequence(vec![
        ElementDef::new("grandparentElem")
            .with_type("xs:string")
            .optional(),
    ]);
    schema.types.insert(
        "GrandparentType".to_string(),
        TypeDef::Complex(grandparent_type),
    );

    // ParentType extends GrandparentType, adds "parentElem"
    let mut parent_type = ComplexType::new("ParentType");
    parent_type.content = ContentModel::ComplexExtension {
        base_type: "GrandparentType".to_string(),
        elements: vec![
            ElementDef::new("parentElem")
                .with_type("xs:string")
                .optional(),
        ],
    };
    schema
        .types
        .insert("ParentType".to_string(), TypeDef::Complex(parent_type));

    // ChildType extends ParentType, adds "childElem"
    let mut child_type = ComplexType::new("ChildType");
    child_type.content = ContentModel::ComplexExtension {
        base_type: "ParentType".to_string(),
        elements: vec![
            ElementDef::new("childElem")
                .with_type("xs:string")
                .optional(),
        ],
    };
    schema
        .types
        .insert("ChildType".to_string(), TypeDef::Complex(child_type));

    // Root element uses ChildType
    let root_elem = ElementDef::new("root").with_type("ChildType");
    schema.elements.insert("root".to_string(), root_elem);

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Start root
    validator
        .handle(&XmlEvent::StartElement {
            name: "root".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(1),
            column: Some(1),
        })
        .unwrap();

    // Add grandparent-level element
    validator
        .handle(&XmlEvent::StartElement {
            name: "grandparentElem".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(2),
            column: Some(1),
        })
        .unwrap();
    validator.handle(&XmlEvent::Text("gp".to_string())).unwrap();
    validator
        .handle(&XmlEvent::EndElement {
            name: "grandparentElem".into(),
            prefix: None,
        })
        .unwrap();

    // Add parent-level element
    validator
        .handle(&XmlEvent::StartElement {
            name: "parentElem".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(3),
            column: Some(1),
        })
        .unwrap();
    validator.handle(&XmlEvent::Text("p".to_string())).unwrap();
    validator
        .handle(&XmlEvent::EndElement {
            name: "parentElem".into(),
            prefix: None,
        })
        .unwrap();

    // Add child-level element
    validator
        .handle(&XmlEvent::StartElement {
            name: "childElem".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(4),
            column: Some(1),
        })
        .unwrap();
    validator.handle(&XmlEvent::Text("c".to_string())).unwrap();
    validator
        .handle(&XmlEvent::EndElement {
            name: "childElem".into(),
            prefix: None,
        })
        .unwrap();

    // End root
    validator
        .handle(&XmlEvent::EndElement {
            name: "root".into(),
            prefix: None,
        })
        .unwrap();

    validator.finish().unwrap();

    // All three elements should be valid (inherited from different levels)
    assert!(
        validator.is_valid(),
        "Multi-level inheritance should work, but got errors: {:?}",
        validator.errors()
    );
}

// =============================================
// Substitution Group Tests
// =============================================

/// Test that substitution group members can be used in place of the head element.
///
/// This test reproduces the issue where elements like `dem:ReliefFeature` are not
/// recognized as valid substitutes for abstract elements like `_CityObject`.
#[test]
fn test_substitution_group_basic() {
    use crate::schema::types::{ComplexType, ContentModel, ElementDef, TypeDef};

    let mut schema = CompiledSchema::new();

    // Define a parent type that expects "_CityObject" (abstract head element) as REQUIRED
    let mut parent_type = ComplexType::new("ParentType");
    parent_type.content = ContentModel::Sequence(vec![
        // Parent expects "_CityObject" as required child (min_occurs=1)
        ElementDef::new("_CityObject").with_type("AbstractCityObjectType"),
    ]);
    schema
        .types
        .insert("ParentType".to_string(), TypeDef::Complex(parent_type));

    // Define the abstract type
    let abstract_type = ComplexType::new("AbstractCityObjectType");
    schema.types.insert(
        "AbstractCityObjectType".to_string(),
        TypeDef::Complex(abstract_type),
    );

    // Define the concrete type
    let concrete_type = ComplexType::new("ReliefFeatureType");
    schema.types.insert(
        "ReliefFeatureType".to_string(),
        TypeDef::Complex(concrete_type),
    );

    // Define the head element (abstract)
    let mut head_elem = ElementDef::new("_CityObject");
    head_elem.is_abstract = true;
    head_elem.type_ref = Some("AbstractCityObjectType".to_string());
    schema.elements.insert("_CityObject".to_string(), head_elem);

    // Define the substitute element (concrete)
    let mut substitute_elem = ElementDef::new("ReliefFeature");
    substitute_elem.type_ref = Some("ReliefFeatureType".to_string());
    substitute_elem.substitution_group = Some("_CityObject".to_string());
    schema
        .elements
        .insert("ReliefFeature".to_string(), substitute_elem);

    // Define parent element
    let parent_elem = ElementDef::new("parent").with_type("ParentType");
    schema.elements.insert("parent".to_string(), parent_elem);

    // Build substitution groups (head -> members)
    schema
        .substitution_groups
        .insert("_CityObject".to_string(), vec!["ReliefFeature".to_string()]);

    // Build reverse lookup cache (member -> head)
    schema
        .substitution_group_heads
        .insert("ReliefFeature".to_string(), "_CityObject".to_string());

    // Build transitive members cache (head -> all members)
    schema.transitive_substitution_groups.insert(
        "_CityObject".to_string(),
        Arc::new(vec!["ReliefFeature".to_string()]),
    );

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Start parent element
    validator
        .handle(&XmlEvent::StartElement {
            name: "parent".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(1),
            column: Some(1),
        })
        .unwrap();

    // Use substitute element (ReliefFeature instead of _CityObject)
    validator
        .handle(&XmlEvent::StartElement {
            name: "ReliefFeature".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(2),
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "ReliefFeature".into(),
            prefix: None,
        })
        .unwrap();

    // End parent
    validator
        .handle(&XmlEvent::EndElement {
            name: "parent".into(),
            prefix: None,
        })
        .unwrap();

    validator.finish().unwrap();

    // Check: ReliefFeature should be accepted as a substitute for _CityObject
    let errors: Vec<_> = validator
        .errors()
        .iter()
        .filter(|e| e.message.contains("ReliefFeature") && e.message.contains("not declared"))
        .collect();

    assert!(
        errors.is_empty(),
        "Substitution group member 'ReliefFeature' should be accepted in place of '_CityObject', but got errors: {:?}",
        errors
    );

    assert!(
        validator.is_valid(),
        "Validation should pass for substitution group members, but got errors: {:?}",
        validator.errors()
    );
}

/// Test that max_occurs is correctly validated for substitution groups.
///
/// When multiple substitution group members are used, their counts should be
/// summed when checking against the max_occurs constraint.
#[test]
fn test_substitution_group_max_occurs() {
    use crate::schema::types::{ComplexType, ContentModel, ElementDef, TypeDef};

    let mut schema = CompiledSchema::new();

    // Define a parent type that expects "_CityObject" with max_occurs=2
    let mut parent_type = ComplexType::new("ParentType");
    parent_type.content = ContentModel::Sequence(vec![
        // Parent expects "_CityObject" at most 2 times
        ElementDef::new("_CityObject")
            .with_type("AbstractCityObjectType")
            .with_occurs(0, Some(2)),
    ]);
    schema
        .types
        .insert("ParentType".to_string(), TypeDef::Complex(parent_type));

    // Define types
    let abstract_type = ComplexType::new("AbstractCityObjectType");
    schema.types.insert(
        "AbstractCityObjectType".to_string(),
        TypeDef::Complex(abstract_type),
    );

    let relief_type = ComplexType::new("ReliefFeatureType");
    schema.types.insert(
        "ReliefFeatureType".to_string(),
        TypeDef::Complex(relief_type),
    );

    let building_type = ComplexType::new("BuildingType");
    schema
        .types
        .insert("BuildingType".to_string(), TypeDef::Complex(building_type));

    // Define elements
    let mut head_elem = ElementDef::new("_CityObject");
    head_elem.is_abstract = true;
    head_elem.type_ref = Some("AbstractCityObjectType".to_string());
    schema.elements.insert("_CityObject".to_string(), head_elem);

    let mut relief_elem = ElementDef::new("ReliefFeature");
    relief_elem.type_ref = Some("ReliefFeatureType".to_string());
    relief_elem.substitution_group = Some("_CityObject".to_string());
    schema
        .elements
        .insert("ReliefFeature".to_string(), relief_elem);

    let mut building_elem = ElementDef::new("Building");
    building_elem.type_ref = Some("BuildingType".to_string());
    building_elem.substitution_group = Some("_CityObject".to_string());
    schema
        .elements
        .insert("Building".to_string(), building_elem);

    let parent_elem = ElementDef::new("parent").with_type("ParentType");
    schema.elements.insert("parent".to_string(), parent_elem);

    // Build substitution groups
    schema.substitution_groups.insert(
        "_CityObject".to_string(),
        vec!["ReliefFeature".to_string(), "Building".to_string()],
    );

    // Build reverse lookup cache (member -> head)
    schema
        .substitution_group_heads
        .insert("ReliefFeature".to_string(), "_CityObject".to_string());
    schema
        .substitution_group_heads
        .insert("Building".to_string(), "_CityObject".to_string());

    // Build transitive members cache (head -> all members)
    schema.transitive_substitution_groups.insert(
        "_CityObject".to_string(),
        Arc::new(vec!["ReliefFeature".to_string(), "Building".to_string()]),
    );

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Start parent
    validator
        .handle(&XmlEvent::StartElement {
            name: "parent".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(1),
            column: Some(1),
        })
        .unwrap();

    // Add 3 substitutes (exceeds max_occurs=2)
    for (i, name) in ["ReliefFeature", "Building", "ReliefFeature"]
        .iter()
        .enumerate()
    {
        validator
            .handle(&XmlEvent::StartElement {
                name: (*name).into(),
                prefix: None,
                namespace: None,
                attributes: vec![],
                namespace_decls: vec![],
                line: Some(i + 2),
                column: Some(1),
            })
            .unwrap();
        validator
            .handle(&XmlEvent::EndElement {
                name: (*name).into(),
                prefix: None,
            })
            .unwrap();
    }

    // End parent
    validator
        .handle(&XmlEvent::EndElement {
            name: "parent".into(),
            prefix: None,
        })
        .unwrap();

    validator.finish().unwrap();

    // Check: Should have a max_occurs error since we have 3 substitutes but max is 2
    let errors: Vec<_> = validator
        .errors()
        .iter()
        .filter(|e| e.message.contains("occurs") && e.message.contains("maximum"))
        .collect();

    assert!(
        !errors.is_empty(),
        "Should have a max_occurs error when 3 substitutes are used but max is 2, errors: {:?}",
        validator.errors()
    );
}

// =============================================
// Choice Content Model Tests
// =============================================

/// Test that Choice content model accepts any one of the choices.
///
/// This test reproduces the issue where `boundedBy` requires `Envelope` OR `Null`,
/// but the validator incorrectly requires both when using Choice content model.
#[test]
fn test_choice_content_model_basic() {
    use crate::schema::types::{ComplexType, ContentModel, ElementDef, TypeDef};

    let mut schema = CompiledSchema::new();

    // Define a type with Choice content model (like BoundingShapeType)
    // Choice means: ONE of the elements should be present, not ALL
    let mut choice_type = ComplexType::new("BoundingShapeType");
    choice_type.content = ContentModel::Choice(vec![
        ElementDef::new("Envelope").with_type("xs:string"),
        ElementDef::new("Null").with_type("xs:string"),
    ]);
    schema.types.insert(
        "BoundingShapeType".to_string(),
        TypeDef::Complex(choice_type),
    );

    // Define parent element that uses the choice type
    let parent_elem = ElementDef::new("boundedBy").with_type("BoundingShapeType");
    schema.elements.insert("boundedBy".to_string(), parent_elem);

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Start boundedBy
    validator
        .handle(&XmlEvent::StartElement {
            name: "boundedBy".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(1),
            column: Some(1),
        })
        .unwrap();

    // Add Envelope (one of the choices)
    validator
        .handle(&XmlEvent::StartElement {
            name: "Envelope".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(2),
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "Envelope".into(),
            prefix: None,
        })
        .unwrap();

    // End boundedBy
    validator
        .handle(&XmlEvent::EndElement {
            name: "boundedBy".into(),
            prefix: None,
        })
        .unwrap();

    validator.finish().unwrap();

    // Check: Should NOT have an error about missing 'Null' element
    // because Choice means ONE of the options, not ALL
    let errors: Vec<_> = validator
        .errors()
        .iter()
        .filter(|e| e.message.contains("Null") && e.message.contains("requires"))
        .collect();

    assert!(
        errors.is_empty(),
        "Choice content model should accept any ONE of the choices, not require ALL. Got errors: {:?}",
        errors
    );

    assert!(
        validator.is_valid(),
        "Validation should pass when one choice element is present, but got errors: {:?}",
        validator.errors()
    );
}

// =============================================
// Simple API Tests (validate method)
// =============================================

/// Test the simple validate() API.
#[test]
fn test_validate_simple_api() {
    let schema = CompiledSchema::new();
    let xml = r#"<root><child>text</child></root>"#;
    let reader = std::io::BufReader::new(xml.as_bytes());

    let errors = OnePassSchemaValidator::new(Arc::new(schema))
        .validate(reader)
        .unwrap();

    // Empty schema should validate any document
    assert!(errors.is_empty());
}

/// Test the simple validate() API with max_errors.
#[test]
fn test_validate_simple_api_with_max_errors() {
    use crate::schema::types::ElementDef;

    let mut schema = CompiledSchema::new();
    // Add an element so unknown elements trigger errors
    schema
        .elements
        .insert("known".to_string(), ElementDef::new("known"));

    let xml = r#"<unknown1><unknown2><unknown3/></unknown2></unknown1>"#;
    let reader = std::io::BufReader::new(xml.as_bytes());

    let errors = OnePassSchemaValidator::new(Arc::new(schema))
        .with_max_errors(2)
        .validate(reader)
        .unwrap();

    // Should have at most 2 errors due to max_errors limit
    assert_eq!(errors.len(), 2);
}

/// Test the builder pattern methods.
#[test]
fn test_builder_pattern() {
    let schema = Arc::new(CompiledSchema::new());
    let xml = r#"<root/>"#;
    let reader = std::io::BufReader::new(xml.as_bytes());

    let errors = OnePassSchemaValidator::new(Arc::clone(&schema))
        .set_mode(ValidationMode::Lenient)
        .with_max_errors(10)
        .validate(reader)
        .unwrap();

    assert!(errors.is_empty());
}

/// Test substitution groups with prefixed element names.
///
/// This reproduces the issue where:
/// - Schema expects `_Ring` as child (abstract element)
/// - XML has `gml:LinearRing` (prefixed substitution group member)
/// - Substitution members are stored as `["Ring", "LinearRing"]` (no prefix)
/// - Child counts are stored as `gml:LinearRing` (with prefix)
/// - Validation should recognize `gml:LinearRing` as a valid substitute for `_Ring`
#[test]
fn test_substitution_group_with_prefixed_elements() {
    use crate::schema::types::{ComplexType, ContentModel, ElementDef, TypeDef};

    let mut schema = CompiledSchema::new();

    // Define parent type (like AbstractRingPropertyType) that expects "_Ring"
    let mut parent_type = ComplexType::new("AbstractRingPropertyType");
    parent_type.content = ContentModel::Sequence(vec![
        // Parent expects "_Ring" as required child
        ElementDef::new("_Ring").with_type("AbstractRingType"),
    ]);
    schema.types.insert(
        "AbstractRingPropertyType".to_string(),
        TypeDef::Complex(parent_type),
    );

    // Define the abstract type
    let abstract_type = ComplexType::new("AbstractRingType");
    schema.types.insert(
        "AbstractRingType".to_string(),
        TypeDef::Complex(abstract_type),
    );

    // Define the concrete type
    let concrete_type = ComplexType::new("LinearRingType");
    schema.types.insert(
        "LinearRingType".to_string(),
        TypeDef::Complex(concrete_type),
    );

    // Define the head element (abstract)
    let mut head_elem = ElementDef::new("_Ring");
    head_elem.is_abstract = true;
    head_elem.type_ref = Some("AbstractRingType".to_string());
    schema.elements.insert("_Ring".to_string(), head_elem);

    // Define the substitute element
    let mut substitute_elem = ElementDef::new("LinearRing");
    substitute_elem.type_ref = Some("LinearRingType".to_string());
    substitute_elem.substitution_group = Some("_Ring".to_string());
    schema
        .elements
        .insert("LinearRing".to_string(), substitute_elem);

    // Define parent element (like "exterior")
    let parent_elem = ElementDef::new("exterior").with_type("AbstractRingPropertyType");
    schema.elements.insert("exterior".to_string(), parent_elem);

    // Build substitution groups (head -> members)
    schema
        .substitution_groups
        .insert("_Ring".to_string(), vec!["LinearRing".to_string()]);

    // Build reverse lookup cache (member -> head)
    schema
        .substitution_group_heads
        .insert("LinearRing".to_string(), "_Ring".to_string());

    // Build transitive members cache (head -> all members)
    schema.transitive_substitution_groups.insert(
        "_Ring".to_string(),
        Arc::new(vec!["LinearRing".to_string()]),
    );

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Start exterior element
    validator
        .handle(&XmlEvent::StartElement {
            name: "exterior".into(),
            prefix: None,
            namespace: None,
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(1),
            column: Some(1),
        })
        .unwrap();

    // Use prefixed substitute element: gml:LinearRing instead of _Ring
    // Note: In actual XML parsing, 'name' is the local name only,
    // and 'prefix' is passed separately
    validator
        .handle(&XmlEvent::StartElement {
            name: "LinearRing".into(),  // Local name only
            prefix: Some("gml".into()), // Prefix passed separately
            namespace: Some("http://www.opengis.net/gml".into()),
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(2),
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "LinearRing".into(),
            prefix: Some("gml".into()),
        })
        .unwrap();

    // End exterior
    validator
        .handle(&XmlEvent::EndElement {
            name: "exterior".into(),
            prefix: None,
        })
        .unwrap();

    validator.finish().unwrap();

    // Should have no errors - gml:LinearRing should be recognized as substitute for _Ring
    let ring_errors: Vec<_> = validator
        .errors()
        .iter()
        .filter(|e| e.message.contains("_Ring"))
        .collect();

    assert!(
        ring_errors.is_empty(),
        "Prefixed substitution group member 'gml:LinearRing' should satisfy '_Ring' requirement, but got errors: {:?}",
        ring_errors
    );
}

/// Test that elements with same local name but different namespaces are distinguished.
///
/// This reproduces the issue where `gml:boundedBy` (expects Envelope/Null) and
/// `brid:boundedBy` (expects WallSurface/RoofSurface) are conflated.
#[test]
fn test_same_local_name_different_namespaces() {
    use crate::schema::types::{ComplexType, ContentModel, ElementDef, TypeDef};

    let mut schema = CompiledSchema::new();

    // Define gml:BoundingShapeType with Choice(Envelope, Null)
    let mut gml_bounding_type = ComplexType::new("BoundingShapeType");
    gml_bounding_type.content = ContentModel::Choice(vec![
        ElementDef::new("Envelope").with_type("xs:string"),
        ElementDef::new("Null").with_type("xs:string"),
    ]);
    schema.types.insert(
        "gml:BoundingShapeType".to_string(),
        TypeDef::Complex(gml_bounding_type),
    );

    // Define brid:BridgeBoundedByType with Choice(WallSurface, RoofSurface)
    let mut brid_bounded_type = ComplexType::new("BridgeBoundedByType");
    brid_bounded_type.content = ContentModel::Choice(vec![
        ElementDef::new("WallSurface").with_type("xs:string"),
        ElementDef::new("RoofSurface").with_type("xs:string"),
    ]);
    schema.types.insert(
        "brid:BridgeBoundedByType".to_string(),
        TypeDef::Complex(brid_bounded_type),
    );

    // Define gml:boundedBy element
    let gml_bounded_elem = ElementDef::new("boundedBy").with_type("gml:BoundingShapeType");
    schema
        .elements
        .insert("gml:boundedBy".to_string(), gml_bounded_elem);

    // Define brid:boundedBy element
    let brid_bounded_elem = ElementDef::new("boundedBy").with_type("brid:BridgeBoundedByType");
    schema
        .elements
        .insert("brid:boundedBy".to_string(), brid_bounded_elem);

    // Pre-populate type_children_cache
    let gml_cache = FlattenedChildren::with_content_model(ContentModelType::Choice);
    schema.type_children_cache.insert(
        "gml:BoundingShapeType".to_string(),
        Arc::new({
            let mut f = gml_cache;
            f.constraints.insert("Envelope".to_string(), (0, Some(1)));
            f.constraints.insert("Null".to_string(), (0, Some(1)));
            f
        }),
    );

    let brid_cache = FlattenedChildren::with_content_model(ContentModelType::Choice);
    schema.type_children_cache.insert(
        "brid:BridgeBoundedByType".to_string(),
        Arc::new({
            let mut f = brid_cache;
            f.constraints
                .insert("WallSurface".to_string(), (0, Some(1)));
            f.constraints
                .insert("RoofSurface".to_string(), (0, Some(1)));
            f
        }),
    );

    let mut validator = OnePassSchemaValidator::new(Arc::new(schema));

    // Start brid:boundedBy (expects WallSurface or RoofSurface)
    validator
        .handle(&XmlEvent::StartElement {
            name: "boundedBy".into(),
            prefix: Some("brid".into()),
            namespace: Some("http://www.opengis.net/citygml/bridge/2.0".into()),
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(1),
            column: Some(1),
        })
        .unwrap();

    // Add WallSurface (valid for brid:boundedBy)
    validator
        .handle(&XmlEvent::StartElement {
            name: "WallSurface".into(),
            prefix: Some("brid".into()),
            namespace: Some("http://www.opengis.net/citygml/bridge/2.0".into()),
            attributes: vec![],
            namespace_decls: vec![],
            line: Some(2),
            column: Some(1),
        })
        .unwrap();

    validator
        .handle(&XmlEvent::EndElement {
            name: "WallSurface".into(),
            prefix: Some("brid".into()),
        })
        .unwrap();

    // End brid:boundedBy
    validator
        .handle(&XmlEvent::EndElement {
            name: "boundedBy".into(),
            prefix: Some("brid".into()),
        })
        .unwrap();

    validator.finish().unwrap();

    // Should NOT have an error about missing 'Envelope' or 'Null'
    // because brid:boundedBy expects WallSurface/RoofSurface, not Envelope/Null
    let envelope_errors: Vec<_> = validator
        .errors()
        .iter()
        .filter(|e| e.message.contains("Envelope") || e.message.contains("Null"))
        .collect();

    assert!(
        envelope_errors.is_empty(),
        "brid:boundedBy should NOT require Envelope/Null (those are for gml:boundedBy). Got errors: {:?}",
        envelope_errors
    );

    assert!(
        validator.is_valid(),
        "Validation should pass for brid:boundedBy with WallSurface, but got errors: {:?}",
        validator.errors()
    );
}