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
use std::cmp::Ordering;
use std::ops::{Range, RangeFrom, RangeTo, RangeFull};
#[cfg(feature="nightly")]
use std::ops::{RangeInclusive, RangeToInclusive};
#[derive(PartialEq, Eq, Debug)]
pub enum CardinalityCheckResult {
Possible,
Satisfied,
Wrong,
}
pub trait Cardinality {
fn check(&self, count: u32) -> CardinalityCheckResult;
fn describe(&self) -> String;
fn describe_upper_bound(&self) -> String;
}
impl Cardinality for u32 {
fn check(&self, count: u32) -> CardinalityCheckResult {
match count.cmp(self) {
Ordering::Equal => CardinalityCheckResult::Satisfied,
Ordering::Greater => CardinalityCheckResult::Wrong,
Ordering::Less => CardinalityCheckResult::Possible,
}
}
fn describe(&self) -> String {
match *self {
0 => "never called".to_string(),
1 => "called exactly one time".to_string(),
n => format!("called exactly {} times", n)
}
}
fn describe_upper_bound(&self) -> String {
if *self == 1 {
"called exactly one time".to_string()
} else {
format!("called exactly {} times", self)
}
}
}
impl Cardinality for Range<u32> {
fn check(&self, count: u32) -> CardinalityCheckResult {
if count < self.start {
CardinalityCheckResult::Possible
} else if count < self.end {
CardinalityCheckResult::Satisfied
} else {
CardinalityCheckResult::Wrong
}
}
fn describe(&self) -> String {
match (self.start, self.end) {
(_, 0) | (_, 1) => "never called".to_string(),
(b, e) => format!("called from {} and less than {} times", b, e),
}
}
fn describe_upper_bound(&self) -> String {
if self.end == 1 {
"never called".to_string()
} else {
format!("called at most {} times", self.end-1)
}
}
}
#[cfg(feature="nightly")]
impl Cardinality for RangeInclusive<u32> {
fn check(&self, count: u32) -> CardinalityCheckResult {
if count < self.start {
CardinalityCheckResult::Possible
} else if count <= self.end {
CardinalityCheckResult::Satisfied
} else {
CardinalityCheckResult::Wrong
}
}
fn describe(&self) -> String {
match (self.start, self.end) {
(_, 0) => "never called".to_string(),
(_, 1) => "called at most one time".to_string(),
(b, e) => format!("called from {} to {} times", b, e),
}
}
fn describe_upper_bound(&self) -> String {
if self.end == 0 {
"never called".to_string()
} else if self.end == 1 {
"called at most one time".to_string()
} else {
format!("called at most {} times", self.end)
}
}
}
impl Cardinality for RangeFrom<u32> {
fn check(&self, count: u32) -> CardinalityCheckResult {
match count.cmp(&self.start) {
Ordering::Equal |
Ordering::Greater => CardinalityCheckResult::Satisfied,
Ordering::Less => CardinalityCheckResult::Possible,
}
}
fn describe(&self) -> String {
match self.start {
0 => "called any number of times".to_string(),
1 => "called at least once".to_string(),
n => format!("called at least {} times", n),
}
}
fn describe_upper_bound(&self) -> String {
unreachable!()
}
}
impl Cardinality for RangeTo<u32> {
fn check(&self, count: u32) -> CardinalityCheckResult {
match count.cmp(&self.end) {
Ordering::Less => CardinalityCheckResult::Satisfied,
Ordering::Equal |
Ordering::Greater => CardinalityCheckResult::Wrong,
}
}
fn describe(&self) -> String {
match self.end {
0 | 1 => "never called".to_string(),
n => format!("called less than {} times", n),
}
}
fn describe_upper_bound(&self) -> String {
if self.end <= 1 {
"never called".to_string()
} else {
format!("called less than {} times", self.end)
}
}
}
#[cfg(feature="nightly")]
impl Cardinality for RangeToInclusive<u32> {
fn check(&self, count: u32) -> CardinalityCheckResult {
match count.cmp(&self.end) {
Ordering::Less |
Ordering::Equal => CardinalityCheckResult::Satisfied,
Ordering::Greater => CardinalityCheckResult::Wrong,
}
}
fn describe(&self) -> String {
match self.end {
0 => "never called".to_string(),
1 => "at most once".to_string(),
n => format!("called no more than {} times", n),
}
}
fn describe_upper_bound(&self) -> String {
if self.end == 0 {
"never called".to_string()
} else if self.end == 1 {
format!("called at most one time")
} else {
format!("called at most {} times", self.end)
}
}
}
impl Cardinality for RangeFull {
fn check(&self, _: u32) -> CardinalityCheckResult {
CardinalityCheckResult::Satisfied
}
fn describe(&self) -> String {
"called any number of times".to_string()
}
fn describe_upper_bound(&self) -> String {
unreachable!()
}
}
pub struct Never;
pub fn never() -> Never { Never }
impl Cardinality for Never {
fn check(&self, count: u32) -> CardinalityCheckResult {
if count == 0 {
CardinalityCheckResult::Satisfied
} else {
CardinalityCheckResult::Wrong
}
}
fn describe(&self) -> String {
"never called".to_string()
}
fn describe_upper_bound(&self) -> String {
"never called".to_string()
}
}