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
use fast_xml::de::Deserializer;
use fast_xml::utils::ByteBuf;
use fast_xml::DeError;
use pretty_assertions::assert_eq;
use serde::de::IgnoredAny;
use serde::serde_if_integer128;
use serde::Deserialize;
/// Deserialize an instance of type T from a string of XML text.
/// If deserialization was succeeded checks that all XML events was consumed
fn from_str<'de, T>(s: &'de str) -> Result<T, DeError>
where
T: Deserialize<'de>,
{
// Log XML that we try to deserialize to see it in the failed tests output
dbg!(s);
let mut de = Deserializer::from_str(s);
let result = T::deserialize(&mut de);
// If type was deserialized, the whole XML document should be consumed
if let Ok(_) = result {
match <()>::deserialize(&mut de) {
Err(DeError::UnexpectedEof) => (),
e => panic!("Expected end `UnexpectedEof`, but got {:?}", e),
}
}
result
}
#[test]
fn string_borrow() {
#[derive(Debug, Deserialize, PartialEq)]
struct BorrowedText<'a> {
#[serde(rename = "$value")]
text: &'a str,
}
let borrowed_item: BorrowedText = from_str("<text>Hello world</text>").unwrap();
assert_eq!(borrowed_item.text, "Hello world");
}
#[derive(Debug, Deserialize, PartialEq)]
struct Item {
name: String,
source: String,
}
#[test]
fn multiple_roots_attributes() {
let item: Vec<Item> = from_str(
r#"
<item name="hello1" source="world1.rs" />
<item name="hello2" source="world2.rs" />
"#,
)
.unwrap();
assert_eq!(
item,
vec![
Item {
name: "hello1".to_string(),
source: "world1.rs".to_string(),
},
Item {
name: "hello2".to_string(),
source: "world2.rs".to_string(),
},
]
);
}
#[test]
fn nested_collection() {
#[derive(Debug, Deserialize, PartialEq)]
struct Project {
name: String,
#[serde(rename = "item", default)]
items: Vec<Item>,
}
let project: Project = from_str(
r#"
<project name="my_project">
<item name="hello1" source="world1.rs" />
<item name="hello2" source="world2.rs" />
</project>
"#,
)
.unwrap();
assert_eq!(
project,
Project {
name: "my_project".to_string(),
items: vec![
Item {
name: "hello1".to_string(),
source: "world1.rs".to_string(),
},
Item {
name: "hello2".to_string(),
source: "world2.rs".to_string(),
},
],
}
);
}
#[test]
fn collection_of_enums() {
#[derive(Debug, Deserialize, PartialEq)]
enum MyEnum {
A(String),
B { name: String, flag: bool },
C,
}
#[derive(Debug, Deserialize, PartialEq)]
struct MyEnums {
// TODO: This should be #[serde(flatten)], but right now serde don't support flattening of sequences
// See https://github.com/serde-rs/serde/issues/1905
#[serde(rename = "$value")]
items: Vec<MyEnum>,
}
let s = r#"
<enums>
<A>test</A>
<B name="hello" flag="t" />
<C />
</enums>
"#;
let project: MyEnums = from_str(s).unwrap();
assert_eq!(
project,
MyEnums {
items: vec![
MyEnum::A("test".to_string()),
MyEnum::B {
name: "hello".to_string(),
flag: true,
},
MyEnum::C,
],
}
);
}
#[test]
fn deserialize_bytes() {
let item: ByteBuf = from_str(r#"<item>bytes</item>"#).unwrap();
assert_eq!(item, ByteBuf(b"bytes".to_vec()));
}
/// Test for https://github.com/tafia/quick-xml/issues/231
#[test]
fn implicit_value() {
use serde_value::Value;
let item: Value = from_str(r#"<root>content</root>"#).unwrap();
assert_eq!(
item,
Value::Map(
vec![(
Value::String("$value".into()),
Value::String("content".into())
)]
.into_iter()
.collect()
)
);
}
#[test]
fn explicit_value() {
#[derive(Debug, Deserialize, PartialEq)]
struct Item {
#[serde(rename = "$value")]
content: String,
}
let item: Item = from_str(r#"<root>content</root>"#).unwrap();
assert_eq!(
item,
Item {
content: "content".into()
}
);
}
#[test]
fn without_value() {
#[derive(Debug, Deserialize, PartialEq)]
struct Item;
let item: Item = from_str(r#"<root>content</root>"#).unwrap();
assert_eq!(item, Item);
}
/// Tests calling `deserialize_ignored_any`
#[test]
fn ignored_any() {
let err = from_str::<IgnoredAny>("");
match err {
Err(DeError::UnexpectedEof) => {}
other => panic!("Expected `UnexpectedEof`, found {:?}", other),
}
from_str::<IgnoredAny>(r#"<empty/>"#).unwrap();
from_str::<IgnoredAny>(r#"<with-attributes key="value"/>"#).unwrap();
from_str::<IgnoredAny>(r#"<nested>text</nested>"#).unwrap();
from_str::<IgnoredAny>(r#"<nested><![CDATA[cdata]]></nested>"#).unwrap();
from_str::<IgnoredAny>(r#"<nested><nested/></nested>"#).unwrap();
}
/// Tests for trivial XML documents: empty or contains only primitive type
/// on a top level; all of them should be considered invalid
mod trivial {
use super::*;
#[rustfmt::skip] // excess spaces used for readability
macro_rules! eof {
($name:ident: $type:ty = $value:expr) => {
#[test]
fn $name() {
let item = from_str::<$type>($value).unwrap_err();
match item {
DeError::UnexpectedEof => (),
_ => panic!("Expected `UnexpectedEof`, found {:?}", item),
}
}
};
($value:expr) => {
eof!(i8_: i8 = $value);
eof!(i16_: i16 = $value);
eof!(i32_: i32 = $value);
eof!(i64_: i64 = $value);
eof!(isize_: isize = $value);
eof!(u8_: u8 = $value);
eof!(u16_: u16 = $value);
eof!(u32_: u32 = $value);
eof!(u64_: u64 = $value);
eof!(usize_: usize = $value);
serde_if_integer128! {
eof!(u128_: u128 = $value);
eof!(i128_: i128 = $value);
}
eof!(f32_: f32 = $value);
eof!(f64_: f64 = $value);
eof!(false_: bool = $value);
eof!(true_: bool = $value);
eof!(char_: char = $value);
eof!(string: String = $value);
eof!(byte_buf: ByteBuf = $value);
#[test]
fn unit() {
let item = from_str::<()>($value).unwrap_err();
match item {
DeError::UnexpectedEof => (),
_ => panic!("Expected `UnexpectedEof`, found {:?}", item),
}
}
};
}
/// Empty document should considered invalid no matter what type we try to deserialize
mod empty_doc {
use super::*;
eof!("");
}
/// Document that contains only comment should be handled as if it is empty
mod only_comment {
use super::*;
eof!("<!--comment-->");
}
/// Tests deserialization from top-level tag content: `<root>...content...</root>`
mod struct_ {
use super::*;
/// Well-formed XML must have a single tag at the root level.
/// Any XML tag can be modeled as a struct, and content of this tag are modeled as
/// fields of this struct.
///
/// Because we want to get access to unnamed content of the tag (usually, this internal
/// XML node called `#text`) we use a rename to a special name `$value`
#[derive(Debug, Deserialize, PartialEq)]
struct Trivial<T> {
#[serde(rename = "$value")]
value: T,
}
macro_rules! in_struct {
($name:ident: $type:ty = $value:expr, $expected:expr) => {
#[test]
fn $name() {
let item: Trivial<$type> = from_str($value).unwrap();
assert_eq!(item, Trivial { value: $expected });
match from_str::<Trivial<$type>>(&format!("<outer>{}</outer>", $value)) {
// Expected unexpected start element `<root>`
Err(DeError::UnexpectedStart(tag)) => assert_eq!(tag, b"root"),
x => panic!(
r#"Expected `Err(DeError::UnexpectedStart("root"))`, but got `{:?}`"#,
x
),
}
}
};
}
/// Tests deserialization from text content in a tag
#[rustfmt::skip] // tests formatted in a table
mod text {
use super::*;
use pretty_assertions::assert_eq;
in_struct!(i8_: i8 = "<root>-42</root>", -42i8);
in_struct!(i16_: i16 = "<root>-4200</root>", -4200i16);
in_struct!(i32_: i32 = "<root>-42000000</root>", -42000000i32);
in_struct!(i64_: i64 = "<root>-42000000000000</root>", -42000000000000i64);
in_struct!(isize_: isize = "<root>-42000000000000</root>", -42000000000000isize);
in_struct!(u8_: u8 = "<root>42</root>", 42u8);
in_struct!(u16_: u16 = "<root>4200</root>", 4200u16);
in_struct!(u32_: u32 = "<root>42000000</root>", 42000000u32);
in_struct!(u64_: u64 = "<root>42000000000000</root>", 42000000000000u64);
in_struct!(usize_: usize = "<root>42000000000000</root>", 42000000000000usize);
serde_if_integer128! {
in_struct!(u128_: u128 = "<root>420000000000000000000000000000</root>", 420000000000000000000000000000u128);
in_struct!(i128_: i128 = "<root>-420000000000000000000000000000</root>", -420000000000000000000000000000i128);
}
in_struct!(f32_: f32 = "<root>4.2</root>", 4.2f32);
in_struct!(f64_: f64 = "<root>4.2</root>", 4.2f64);
in_struct!(false_: bool = "<root>false</root>", false);
in_struct!(true_: bool = "<root>true</root>", true);
in_struct!(char_: char = "<root>r</root>", 'r');
in_struct!(string: String = "<root>escaped string</root>", "escaped string".into());
// Byte buffers gives access to the raw data from the input, so never treated as escaped
// TODO: It is a bit unusual and it would be better completely forbid deserialization
// into bytes, because XML cannot store any bytes natively. User should use some sort
// of encoding to a string, for example, hex or base64
in_struct!(byte_buf: ByteBuf = "<root>escaped byte_buf</root>", ByteBuf(r"escaped byte_buf".into()));
}
/// Tests deserialization from CDATA content in a tag.
/// CDATA handling similar to text handling except that strings does not unescapes
#[rustfmt::skip] // tests formatted in a table
mod cdata {
use super::*;
use pretty_assertions::assert_eq;
in_struct!(i8_: i8 = "<root><![CDATA[-42]]></root>", -42i8);
in_struct!(i16_: i16 = "<root><![CDATA[-4200]]></root>", -4200i16);
in_struct!(i32_: i32 = "<root><![CDATA[-42000000]]></root>", -42000000i32);
in_struct!(i64_: i64 = "<root><![CDATA[-42000000000000]]></root>", -42000000000000i64);
in_struct!(isize_: isize = "<root><![CDATA[-42000000000000]]></root>", -42000000000000isize);
in_struct!(u8_: u8 = "<root><![CDATA[42]]></root>", 42u8);
in_struct!(u16_: u16 = "<root><![CDATA[4200]]></root>", 4200u16);
in_struct!(u32_: u32 = "<root><![CDATA[42000000]]></root>", 42000000u32);
in_struct!(u64_: u64 = "<root><![CDATA[42000000000000]]></root>", 42000000000000u64);
in_struct!(usize_: usize = "<root><![CDATA[42000000000000]]></root>", 42000000000000usize);
serde_if_integer128! {
in_struct!(u128_: u128 = "<root><![CDATA[420000000000000000000000000000]]></root>", 420000000000000000000000000000u128);
in_struct!(i128_: i128 = "<root><![CDATA[-420000000000000000000000000000]]></root>", -420000000000000000000000000000i128);
}
in_struct!(f32_: f32 = "<root><![CDATA[4.2]]></root>", 4.2f32);
in_struct!(f64_: f64 = "<root><![CDATA[4.2]]></root>", 4.2f64);
in_struct!(false_: bool = "<root><![CDATA[false]]></root>", false);
in_struct!(true_: bool = "<root><![CDATA[true]]></root>", true);
in_struct!(char_: char = "<root><![CDATA[r]]></root>", 'r');
// Escape sequences does not processed inside CDATA section
in_struct!(string: String = "<root><![CDATA[escaped string]]></root>", "escaped string".into());
in_struct!(byte_buf: ByteBuf = "<root><![CDATA[escaped byte_buf]]></root>", ByteBuf(r"escaped byte_buf".into()));
}
}
}
mod unit {
use super::*;
use pretty_assertions::assert_eq;
#[derive(Debug, Deserialize, PartialEq)]
struct Unit;
#[test]
fn simple() {
let data: Unit = from_str("<root/>").unwrap();
assert_eq!(data, Unit);
}
#[test]
fn excess_attribute() {
let data: Unit = from_str(r#"<root excess="attribute"/>"#).unwrap();
assert_eq!(data, Unit);
}
#[test]
fn excess_element() {
let data: Unit = from_str(r#"<root><excess>element</excess></root>"#).unwrap();
assert_eq!(data, Unit);
}
#[test]
fn excess_text() {
let data: Unit = from_str(r#"<root>excess text</root>"#).unwrap();
assert_eq!(data, Unit);
}
#[test]
fn excess_cdata() {
let data: Unit = from_str(r#"<root><![CDATA[excess CDATA]]></root>"#).unwrap();
assert_eq!(data, Unit);
}
}
mod newtype {
use super::*;
use pretty_assertions::assert_eq;
#[derive(Debug, Deserialize, PartialEq)]
struct Newtype(bool);
#[test]
fn simple() {
let data: Newtype = from_str("<root>true</root>").unwrap();
assert_eq!(data, Newtype(true));
}
#[test]
fn excess_attribute() {
let data: Newtype = from_str(r#"<root excess="attribute">true</root>"#).unwrap();
assert_eq!(data, Newtype(true));
}
}
mod tuple {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn simple() {
let data: (f32, String) = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
"<root>42</root><root>answer</root>",
)
.unwrap();
assert_eq!(data, (42.0, "answer".into()));
}
#[test]
fn excess_attribute() {
let data: (f32, String) = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root excess="attribute">42</root><root>answer</root>"#,
)
.unwrap();
assert_eq!(data, (42.0, "answer".into()));
}
}
mod tuple_struct {
use super::*;
use pretty_assertions::assert_eq;
#[derive(Debug, Deserialize, PartialEq)]
struct Tuple(f32, String);
#[test]
fn simple() {
let data: Tuple = from_str("<root>42</root><root>answer</root>").unwrap();
assert_eq!(data, Tuple(42.0, "answer".into()));
}
#[test]
fn excess_attribute() {
let data: Tuple = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root excess="attribute">42</root><root>answer</root>"#,
)
.unwrap();
assert_eq!(data, Tuple(42.0, "answer".into()));
}
}
macro_rules! maplike_errors {
($type:ty) => {
mod non_closed {
use super::*;
#[test]
fn attributes() {
let data = from_str::<$type>(r#"<root float="42" string="answer">"#);
match data {
Err(DeError::UnexpectedEof) => (),
_ => panic!("Expected `UnexpectedEof`, found {:?}", data),
}
}
#[test]
fn elements_root() {
let data = from_str::<$type>(r#"<root float="42"><string>answer</string>"#);
match data {
Err(DeError::UnexpectedEof) => (),
_ => panic!("Expected `UnexpectedEof`, found {:?}", data),
}
}
#[test]
fn elements_child() {
let data = from_str::<$type>(r#"<root float="42"><string>answer"#);
match data {
Err(DeError::UnexpectedEof) => (),
_ => panic!("Expected `UnexpectedEof`, found {:?}", data),
}
}
}
mod mismatched_end {
use super::*;
use fast_xml::Error::EndEventMismatch;
#[test]
fn attributes() {
let data = from_str::<$type>(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root float="42" string="answer"></mismatched>"#,
);
match data {
Err(DeError::InvalidXml(EndEventMismatch { .. })) => (),
_ => panic!("Expected `InvalidXml(EndEventMismatch)`, found {:?}", data),
}
}
#[test]
fn elements_root() {
let data = from_str::<$type>(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root float="42"><string>answer</string></mismatched>"#,
);
match data {
Err(DeError::InvalidXml(EndEventMismatch { .. })) => (),
_ => panic!("Expected `InvalidXml(EndEventMismatch)`, found {:?}", data),
}
}
#[test]
fn elements_child() {
let data = from_str::<$type>(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root float="42"><string>answer</mismatched></root>"#,
);
match data {
Err(DeError::InvalidXml(EndEventMismatch { .. })) => (),
_ => panic!("Expected `InvalidXml(EndEventMismatch)`, found {:?}", data),
}
}
}
};
}
mod map {
use super::*;
use pretty_assertions::assert_eq;
use std::collections::HashMap;
use std::iter::FromIterator;
#[test]
fn elements() {
let data: HashMap<(), ()> = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root><float>42</float><string>answer</string></root>"#,
)
.unwrap();
assert_eq!(
data,
HashMap::from_iter([((), ()), ((), ()),].iter().cloned())
);
}
#[test]
fn attributes() {
let data: HashMap<(), ()> = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root float="42" string="answer"/>"#,
)
.unwrap();
assert_eq!(
data,
HashMap::from_iter([((), ()), ((), ()),].iter().cloned())
);
}
#[test]
fn attribute_and_element() {
let data: HashMap<(), ()> = from_str(
r#"
<root float="42">
<string>answer</string>
</root>
"#,
)
.unwrap();
assert_eq!(
data,
HashMap::from_iter([((), ()), ((), ()),].iter().cloned())
);
}
maplike_errors!(HashMap<(), ()>);
}
mod struct_ {
use super::*;
use pretty_assertions::assert_eq;
#[derive(Debug, Deserialize, PartialEq)]
struct Struct {
float: f64,
string: String,
}
#[test]
fn elements() {
let data: Struct = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root><float>42</float><string>answer</string></root>"#,
)
.unwrap();
assert_eq!(
data,
Struct {
float: 42.0,
string: "answer".into()
}
);
}
#[test]
fn excess_elements() {
let data: Struct = from_str(
r#"
<root>
<before/>
<float>42</float>
<in-the-middle/>
<string>answer</string>
<after/>
</root>"#,
)
.unwrap();
assert_eq!(
data,
Struct {
float: 42.0,
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Struct = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root float="42" string="answer"/>"#,
)
.unwrap();
assert_eq!(
data,
Struct {
float: 42.0,
string: "answer".into()
}
);
}
#[test]
fn excess_attributes() {
let data: Struct = from_str(
r#"<root before="1" float="42" in-the-middle="2" string="answer" after="3"/>"#,
)
.unwrap();
assert_eq!(
data,
Struct {
float: 42.0,
string: "answer".into()
}
);
}
#[test]
fn attribute_and_element() {
let data: Struct = from_str(
r#"
<root float="42">
<string>answer</string>
</root>
"#,
)
.unwrap();
assert_eq!(
data,
Struct {
float: 42.0,
string: "answer".into()
}
);
}
maplike_errors!(Struct);
}
mod nested_struct {
use super::*;
use pretty_assertions::assert_eq;
#[derive(Debug, Deserialize, PartialEq)]
struct Struct {
nested: Nested,
string: String,
}
#[derive(Debug, Deserialize, PartialEq)]
struct Nested {
float: f32,
}
#[test]
fn elements() {
let data: Struct = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root><string>answer</string><nested><float>42</float></nested></root>"#,
)
.unwrap();
assert_eq!(
data,
Struct {
nested: Nested { float: 42.0 },
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Struct = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root string="answer"><nested float="42"/></root>"#,
)
.unwrap();
assert_eq!(
data,
Struct {
nested: Nested { float: 42.0 },
string: "answer".into()
}
);
}
}
mod flatten_struct {
use super::*;
use pretty_assertions::assert_eq;
#[derive(Debug, Deserialize, PartialEq)]
struct Struct {
#[serde(flatten)]
nested: Nested,
string: String,
}
#[derive(Debug, Deserialize, PartialEq)]
struct Nested {
//TODO: change to f64 after fixing https://github.com/serde-rs/serde/issues/1183
float: String,
}
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Struct = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root><float>42</float><string>answer</string></root>"#,
)
.unwrap();
assert_eq!(
data,
Struct {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Struct = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root float="42" string="answer"/>"#,
)
.unwrap();
assert_eq!(
data,
Struct {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
}
mod enum_ {
use super::*;
mod externally_tagged {
use super::*;
use pretty_assertions::assert_eq;
#[derive(Debug, Deserialize, PartialEq)]
enum Node {
Unit,
Newtype(bool),
//TODO: serde bug https://github.com/serde-rs/serde/issues/1904
// Tuple(f64, String),
Struct {
float: f64,
string: String,
},
Holder {
nested: Nested,
string: String,
},
Flatten {
#[serde(flatten)]
nested: Nested,
string: String,
},
}
#[derive(Debug, Deserialize, PartialEq)]
struct Nested {
//TODO: change to f64 after fixing https://github.com/serde-rs/serde/issues/1183
float: String,
}
/// Workaround for serde bug https://github.com/serde-rs/serde/issues/1904
#[derive(Debug, Deserialize, PartialEq)]
enum Workaround {
Tuple(f64, String),
}
#[test]
fn unit() {
let data: Node = from_str("<Unit/>").unwrap();
assert_eq!(data, Node::Unit);
}
#[test]
fn newtype() {
let data: Node = from_str("<Newtype>true</Newtype>").unwrap();
assert_eq!(data, Node::Newtype(true));
}
#[test]
fn tuple_struct() {
let data: Workaround = from_str("<Tuple>42</Tuple><Tuple>answer</Tuple>").unwrap();
assert_eq!(data, Workaround::Tuple(42.0, "answer".into()));
}
mod struct_ {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn elements() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<Struct><float>42</float><string>answer</string></Struct>"#,
)
.unwrap();
assert_eq!(
data,
Node::Struct {
float: 42.0,
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<Struct float="42" string="answer"/>"#,
)
.unwrap();
assert_eq!(
data,
Node::Struct {
float: 42.0,
string: "answer".into()
}
);
}
}
mod nested_struct {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn elements() {
let data: Node = from_str(
r#"<Holder><string>answer</string><nested><float>42</float></nested></Holder>"#,
)
.unwrap();
assert_eq!(
data,
Node::Holder {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<Holder string="answer"><nested float="42"/></Holder>"#,
)
.unwrap();
assert_eq!(
data,
Node::Holder {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
}
mod flatten_struct {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<Flatten><float>42</float><string>answer</string></Flatten>"#,
)
.unwrap();
assert_eq!(
data,
Node::Flatten {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<Flatten float="42" string="answer"/>"#,
)
.unwrap();
assert_eq!(
data,
Node::Flatten {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
}
}
mod internally_tagged {
use super::*;
#[derive(Debug, Deserialize, PartialEq)]
#[serde(tag = "tag")]
enum Node {
Unit,
/// Primitives (such as `bool`) are not supported by serde in the internally tagged mode
Newtype(NewtypeContent),
// Tuple(f64, String),// Tuples are not supported in the internally tagged mode
//TODO: change to f64 after fixing https://github.com/serde-rs/serde/issues/1183
Struct {
float: String,
string: String,
},
Holder {
nested: Nested,
string: String,
},
Flatten {
#[serde(flatten)]
nested: Nested,
string: String,
},
}
#[derive(Debug, Deserialize, PartialEq)]
struct NewtypeContent {
value: bool,
}
#[derive(Debug, Deserialize, PartialEq)]
struct Nested {
//TODO: change to f64 after fixing https://github.com/serde-rs/serde/issues/1183
float: String,
}
mod unit {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn elements() {
let data: Node = from_str(r#"<root><tag>Unit</tag></root>"#).unwrap();
assert_eq!(data, Node::Unit);
}
#[test]
fn attributes() {
let data: Node = from_str(r#"<root tag="Unit"/>"#).unwrap();
assert_eq!(data, Node::Unit);
}
}
mod newtype {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root><tag>Newtype</tag><value>true</value></root>"#,
)
.unwrap();
assert_eq!(data, Node::Newtype(NewtypeContent { value: true }));
}
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root tag="Newtype" value="true"/>"#,
)
.unwrap();
assert_eq!(data, Node::Newtype(NewtypeContent { value: true }));
}
}
mod struct_ {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Node = from_str(
r#"<root><tag>Struct</tag><float>42</float><string>answer</string></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Struct {
float: "42".into(),
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root tag="Struct" float="42" string="answer"/>"#,
)
.unwrap();
assert_eq!(
data,
Node::Struct {
float: "42".into(),
string: "answer".into()
}
);
}
}
mod nested_struct {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Node = from_str(
r#"<root><tag>Holder</tag><string>answer</string><nested><float>42</float></nested></root>"#,
).unwrap();
assert_eq!(
data,
Node::Holder {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root tag="Holder" string="answer"><nested float="42"/></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Holder {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
}
mod flatten_struct {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Node = from_str(
r#"<root><tag>Flatten</tag><float>42</float><string>answer</string></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Flatten {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root tag="Flatten" float="42" string="answer"/>"#,
)
.unwrap();
assert_eq!(
data,
Node::Flatten {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
}
}
mod adjacently_tagged {
use super::*;
#[derive(Debug, Deserialize, PartialEq)]
#[serde(tag = "tag", content = "content")]
enum Node {
Unit,
Newtype(bool),
//TODO: serde bug https://github.com/serde-rs/serde/issues/1904
// Tuple(f64, String),
Struct {
float: f64,
string: String,
},
Holder {
nested: Nested,
string: String,
},
Flatten {
#[serde(flatten)]
nested: Nested,
string: String,
},
}
#[derive(Debug, Deserialize, PartialEq)]
struct Nested {
//TODO: change to f64 after fixing https://github.com/serde-rs/serde/issues/1183
float: String,
}
/// Workaround for serde bug https://github.com/serde-rs/serde/issues/1904
#[derive(Debug, Deserialize, PartialEq)]
#[serde(tag = "tag", content = "content")]
enum Workaround {
Tuple(f64, String),
}
mod unit {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn elements() {
let data: Node = from_str(r#"<root><tag>Unit</tag></root>"#).unwrap();
assert_eq!(data, Node::Unit);
}
#[test]
fn attributes() {
let data: Node = from_str(r#"<root tag="Unit"/>"#).unwrap();
assert_eq!(data, Node::Unit);
}
}
mod newtype {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn elements() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root><tag>Newtype</tag><content>true</content></root>"#,
)
.unwrap();
assert_eq!(data, Node::Newtype(true));
}
#[test]
fn attributes() {
let data: Node = from_str(r#"<root tag="Newtype" content="true"/>"#).unwrap();
assert_eq!(data, Node::Newtype(true));
}
}
mod tuple_struct {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn elements() {
let data: Workaround = from_str(
r#"<root><tag>Tuple</tag><content>42</content><content>answer</content></root>"#,
).unwrap();
assert_eq!(data, Workaround::Tuple(42.0, "answer".into()));
}
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn attributes() {
let data: Workaround = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root tag="Tuple" content="42"><content>answer</content></root>"#,
)
.unwrap();
assert_eq!(data, Workaround::Tuple(42.0, "answer".into()));
}
}
mod struct_ {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn elements() {
let data: Node = from_str(
r#"<root><tag>Struct</tag><content><float>42</float><string>answer</string></content></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Struct {
float: 42.0,
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root tag="Struct"><content float="42" string="answer"/></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Struct {
float: 42.0,
string: "answer".into()
}
);
}
}
mod nested_struct {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn elements() {
let data: Node = from_str(
r#"<root>
<tag>Holder</tag>
<content>
<string>answer</string>
<nested>
<float>42</float>
</nested>
</content>
</root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Holder {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
r#"<root tag="Holder"><content string="answer"><nested float="42"/></content></root>"#,
).unwrap();
assert_eq!(
data,
Node::Holder {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
}
mod flatten_struct {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Node = from_str(
r#"<root><tag>Flatten</tag><content><float>42</float><string>answer</string></content></root>"#,
).unwrap();
assert_eq!(
data,
Node::Flatten {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root tag="Flatten"><content float="42" string="answer"/></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Flatten {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
}
}
mod untagged {
use super::*;
use pretty_assertions::assert_eq;
#[derive(Debug, Deserialize, PartialEq)]
#[serde(untagged)]
enum Node {
Unit,
Newtype(bool),
// serde bug https://github.com/serde-rs/serde/issues/1904
// Tuple(f64, String),
Struct {
float: f64,
string: String,
},
Holder {
nested: Nested,
string: String,
},
Flatten {
#[serde(flatten)]
nested: Nested,
// Can't use "string" as name because in that case this variant
// will have no difference from `Struct` variant
string2: String,
},
}
#[derive(Debug, Deserialize, PartialEq)]
struct Nested {
//TODO: change to f64 after fixing https://github.com/serde-rs/serde/issues/1183
float: String,
}
/// Workaround for serde bug https://github.com/serde-rs/serde/issues/1904
#[derive(Debug, Deserialize, PartialEq)]
#[serde(untagged)]
enum Workaround {
Tuple(f64, String),
}
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn unit() {
// Unit variant consists just from the tag, and because tags
// are not written, nothing is written
let data: Node = from_str("").unwrap();
assert_eq!(data, Node::Unit);
}
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn newtype() {
let data: Node = from_str("true").unwrap();
assert_eq!(data, Node::Newtype(true));
}
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn tuple_struct() {
let data: Workaround = from_str("<root>42</root><root>answer</root>").unwrap();
assert_eq!(data, Workaround::Tuple(42.0, "answer".into()));
}
mod struct_ {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root><float>42</float><string>answer</string></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Struct {
float: 42.0,
string: "answer".into()
}
);
}
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root float="42" string="answer"/>"#,
)
.unwrap();
assert_eq!(
data,
Node::Struct {
float: 42.0,
string: "answer".into()
}
);
}
}
mod nested_struct {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Node = from_str(
r#"<root><string>answer</string><nested><float>42</float></nested></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Holder {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root string="answer"><nested float="42"/></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Holder {
nested: Nested { float: "42".into() },
string: "answer".into()
}
);
}
}
mod flatten_struct {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[ignore = "Prime cause: deserialize_any under the hood + https://github.com/serde-rs/serde/issues/1183"]
fn elements() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root><float>42</float><string2>answer</string2></root>"#,
)
.unwrap();
assert_eq!(
data,
Node::Flatten {
nested: Nested { float: "42".into() },
string2: "answer".into()
}
);
}
#[test]
fn attributes() {
let data: Node = from_str(
// Comment for prevent unnecessary formatting - we use the same style in all tests
r#"<root float="42" string2="answer"/>"#,
)
.unwrap();
assert_eq!(
data,
Node::Flatten {
nested: Nested { float: "42".into() },
string2: "answer".into()
}
);
}
}
}
}