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
|
use ron::{
de::from_str,
error::{Error, Position, SpannedError},
};
#[test]
fn test_hex() {
assert_eq!(from_str("0x507"), Ok(0x507));
assert_eq!(from_str("0x1A5"), Ok(0x1A5));
assert_eq!(from_str("0x53C537"), Ok(0x53C537));
assert_eq!(
from_str::<u8>("0x"),
Err(SpannedError {
code: Error::ExpectedInteger,
position: Position { line: 1, col: 3 },
})
);
assert_eq!(
from_str::<u8>("0x_1"),
Err(SpannedError {
code: Error::UnderscoreAtBeginning,
position: Position { line: 1, col: 3 },
})
);
assert_eq!(
from_str::<u8>("0xFFF"),
Err(SpannedError {
code: Error::IntegerOutOfBounds,
position: Position { line: 1, col: 6 },
})
);
}
#[test]
fn test_bin() {
assert_eq!(from_str("0b101"), Ok(0b101));
assert_eq!(from_str("0b001"), Ok(0b001));
assert_eq!(from_str("0b100100"), Ok(0b100100));
assert_eq!(
from_str::<u8>("0b"),
Err(SpannedError {
code: Error::ExpectedInteger,
position: Position { line: 1, col: 3 },
})
);
assert_eq!(
from_str::<u8>("0b_1"),
Err(SpannedError {
code: Error::UnderscoreAtBeginning,
position: Position { line: 1, col: 3 },
})
);
assert_eq!(
from_str::<u8>("0b111111111"),
Err(SpannedError {
code: Error::IntegerOutOfBounds,
position: Position { line: 1, col: 12 },
})
);
}
#[test]
fn test_oct() {
assert_eq!(from_str("0o1461"), Ok(0o1461));
assert_eq!(from_str("0o051"), Ok(0o051));
assert_eq!(from_str("0o150700"), Ok(0o150700));
assert_eq!(
from_str::<u8>("0o"),
Err(SpannedError {
code: Error::ExpectedInteger,
position: Position { line: 1, col: 3 },
})
);
assert_eq!(
from_str::<u8>("0o_1"),
Err(SpannedError {
code: Error::UnderscoreAtBeginning,
position: Position { line: 1, col: 3 },
})
);
assert_eq!(
from_str::<u8>("0o77777"),
Err(SpannedError {
code: Error::IntegerOutOfBounds,
position: Position { line: 1, col: 8 },
})
);
}
#[test]
fn test_dec() {
assert_eq!(from_str("1461"), Ok(1461));
assert_eq!(from_str("51"), Ok(51));
assert_eq!(from_str("150700"), Ok(150700));
assert_eq!(
from_str::<i8>("-_1"),
Err(SpannedError {
code: Error::UnderscoreAtBeginning,
position: Position { line: 1, col: 2 },
})
);
assert_eq!(
from_str::<u8>("256"),
Err(SpannedError {
code: Error::IntegerOutOfBounds,
position: Position { line: 1, col: 4 },
})
);
}
|