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
|
#![allow(
// clippy is broken and shows wrong warnings
// clippy on stable does not know yet about the lint name
unknown_lints,
// https://github.com/rust-lang/rust-clippy/issues/8867
clippy::derive_partial_eq_without_eq,
)]
mod utils;
use crate::utils::{check_deserialization, check_error_deserialization, is_equal};
use expect_test::expect;
use serde::{Deserialize, Serialize};
use serde_with::{
formats::{Lowercase, Uppercase},
hex::Hex,
serde_as,
};
#[test]
fn hex_vec() {
#[serde_as]
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct B(#[serde_as(as = "Vec<Hex>")] Vec<Vec<u8>>);
is_equal(
B(vec![vec![0, 1, 2, 13], vec![14, 5, 6, 7]]),
expect![[r#"
[
"0001020d",
"0e050607"
]"#]],
);
// Check mixed case deserialization
check_deserialization(
B(vec![vec![0xaa, 0xbc, 0xff], vec![0xe0, 0x7d]]),
r#"["aaBCff","E07d"]"#,
);
check_error_deserialization::<B>(
r#"["0"]"#,
expect![[r#"Odd number of digits at line 1 column 5"#]],
);
check_error_deserialization::<B>(
r#"["zz"]"#,
expect![[r#"Invalid character 'z' at position 0 at line 1 column 6"#]],
);
}
#[test]
fn hex_vec_lowercase() {
#[serde_as]
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct B(#[serde_as(as = "Vec<Hex<Lowercase>>")] Vec<Vec<u8>>);
is_equal(
B(vec![vec![0, 1, 2, 13], vec![14, 5, 6, 7]]),
expect![[r#"
[
"0001020d",
"0e050607"
]"#]],
);
// Check mixed case deserialization
check_deserialization(
B(vec![vec![0xaa, 0xbc, 0xff], vec![0xe0, 0x7d]]),
r#"["aaBCff","E07d"]"#,
);
}
#[test]
fn hex_vec_uppercase() {
#[serde_as]
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct B(#[serde_as(as = "Vec<Hex<Uppercase>>")] Vec<Vec<u8>>);
is_equal(
B(vec![vec![0, 1, 2, 13], vec![14, 5, 6, 7]]),
expect![[r#"
[
"0001020D",
"0E050607"
]"#]],
);
// Check mixed case deserialization
check_deserialization(
B(vec![vec![0xaa, 0xbc, 0xff], vec![0xe0, 0x7d]]),
r#"["aaBCff","E07d"]"#,
);
}
|