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
use crate::borrow::BorrowedOrOwned;
use crate::expectations::predicate::PredicateExpectation;
use crate::projection::{ProjectedExpectations, ProjectedExpectationsBuilder};
use crate::{CheckResult, Expectation, ExpectationBuilder};
use std::fmt::Debug;
/// Extension trait for Result expectations
pub trait ResultExpectations<'e, T, E>
where
T: Debug,
E: Debug,
{
/// Expect the Result to be Ok
/// ```
/// # use rxpect::expect;
/// # use rxpect::expectations::ResultExpectations;
///
/// let result: Result<i32, &str> = Ok(42);
/// expect(result).to_be_ok();
/// ```
/// asserts that the Result is Ok
fn to_be_ok(self) -> Self;
/// Expect the Result to be Err
/// ```
/// # use rxpect::expect;
/// # use rxpect::expectations::ResultExpectations;
///
/// let result: Result<i32, &str> = Err("error");
/// expect(result).to_be_err();
/// ```
/// asserts that the Result is Err
fn to_be_err(self) -> Self;
/// Expect the Result to be Ok and the Ok value to match a predicate
/// ```
/// # use rxpect::expect;
/// # use rxpect::expectations::ResultExpectations;
///
/// let result: Result<i32, &str> = Ok(42);
/// expect(result).to_be_ok_matching(|v| *v > 40);
/// ```
/// asserts that the Result is Ok and the predicate returns true when applied to the Ok value
fn to_be_ok_matching<F>(self, predicate: F) -> Self
where
F: Fn(&T) -> bool + 'e;
/// Expect the Result to be Err and the Err value to match a predicate
/// ```
/// # use rxpect::expect;
/// # use rxpect::expectations::ResultExpectations;
///
/// let result: Result<i32, &str> = Err("error");
/// expect(result).to_be_err_matching(|e| *e == "error");
/// ```
/// asserts that the Result is Err and the predicate returns true when applied to the Err value
fn to_be_err_matching<F>(self, predicate: F) -> Self
where
F: Fn(&E) -> bool + 'e;
}
pub trait ProjectedResultExpectations<'e, T, E>
where
T: Debug + 'e,
E: Debug + 'e,
{
/// Expect the Result to be Ok and then chain into further expectations
/// ```
/// # use rxpect::expect;
/// # use rxpect::expectations::{EqualityExpectations, ProjectedResultExpectations};
///
/// let result: Result<i32, &str> = Ok(42);
/// expect(result).to_be_ok_and().to_equal(42);
/// ```
/// asserts that the Result is Ok and the chained expectations hold for the Ok value
fn to_be_ok_and(self) -> ProjectedExpectationsBuilder<'e, Self, Result<T, E>, T>
where
Self: Sized + ExpectationBuilder<'e, Value = Result<T, E>>;
/// Expect the Result to be Err and then chain into further expectations
/// ```
/// # use rxpect::expect;
/// # use rxpect::expectations::{EqualityExpectations, ProjectedResultExpectations};
///
/// let result: Result<i32, &str> = Err("Error message");
/// expect(result).to_be_err_and().to_equal("Error message");
/// ```
/// asserts that the Result is Err and the chained expectations hold for the Err value
fn to_be_err_and(self) -> ProjectedExpectationsBuilder<'e, Self, Result<T, E>, E>
where
Self: Sized + ExpectationBuilder<'e, Value = Result<T, E>>;
}
fn ok_extract<T: Debug, E: Debug>(result: &Result<T, E>) -> Option<BorrowedOrOwned<'_, T>> {
result.as_ref().ok().map(BorrowedOrOwned::Borrowed)
}
fn ok_fail_message<T: Debug, E: Debug>(result: &Result<T, E>) -> String {
format!("Expectation failed (expected Ok)\n actual: {:?}", result)
}
fn err_extract<T: Debug, E: Debug>(result: &Result<T, E>) -> Option<BorrowedOrOwned<'_, E>> {
result.as_ref().err().map(BorrowedOrOwned::Borrowed)
}
fn err_fail_message<T: Debug, E: Debug>(result: &Result<T, E>) -> String {
format!("Expectation failed (expected Err)\n actual: {:?}", result)
}
impl<'e, T, E, B> ResultExpectations<'e, T, E> for B
where
T: Debug + 'e,
E: Debug + 'e,
B: ExpectationBuilder<'e, Value = Result<T, E>>,
{
fn to_be_ok(self) -> Self {
self.to_pass(PredicateExpectation::new(
(),
|value: &Result<T, E>, _| value.is_ok(),
|value: &Result<T, E>, _| {
format!("Expectation failed (expected Ok)\n actual: {:?}", value)
},
))
}
fn to_be_err(self) -> Self {
self.to_pass(PredicateExpectation::new(
(),
|value: &Result<T, E>, _| value.is_err(),
|value: &Result<T, E>, _| {
format!("Expectation failed (expected Err)\n actual: {:?}", value)
},
))
}
fn to_be_ok_matching<F>(self, predicate: F) -> Self
where
F: Fn(&T) -> bool + 'e,
{
self.to_pass(IsOkMatchingExpectation(predicate))
}
fn to_be_err_matching<F>(self, predicate: F) -> Self
where
F: Fn(&E) -> bool + 'e,
{
self.to_pass(IsErrMatchingExpectation(predicate))
}
}
impl<'e, T, E, B> ProjectedResultExpectations<'e, T, E> for B
where
T: Debug + 'e,
E: Debug + 'e,
B: ExpectationBuilder<'e, Value = Result<T, E>>,
{
fn to_be_ok_and(self) -> ProjectedExpectationsBuilder<'e, Self, Result<T, E>, T> {
let (expectation, expectations) =
ProjectedExpectations::new(ok_extract::<T, E>, ok_fail_message::<T, E>);
ProjectedExpectationsBuilder::from_expectation(self, expectation, expectations)
}
fn to_be_err_and(self) -> ProjectedExpectationsBuilder<'e, Self, Result<T, E>, E> {
let (expectation, expectations) =
ProjectedExpectations::new(err_extract::<T, E>, err_fail_message::<T, E>);
ProjectedExpectationsBuilder::from_expectation(self, expectation, expectations)
}
}
/// Expectation for to_be_ok_matching
struct IsOkMatchingExpectation<F>(F);
impl<T: Debug, E: Debug, F: Fn(&T) -> bool> Expectation<Result<T, E>>
for IsOkMatchingExpectation<F>
{
fn check(&self, value: &Result<T, E>) -> CheckResult {
match value {
Ok(v) => {
if (self.0)(v) {
CheckResult::Pass
} else {
CheckResult::Fail(format!(
"Expectation failed (expected Ok value to match predicate)\n actual: Ok({:?})",
v
))
}
}
Err(e) => CheckResult::Fail(format!(
"Expectation failed (expected Ok)\n actual: Err({:?})",
e
)),
}
}
}
/// Expectation for to_be_err_matching
struct IsErrMatchingExpectation<F>(F);
impl<T: Debug, E: Debug, F: Fn(&E) -> bool> Expectation<Result<T, E>>
for IsErrMatchingExpectation<F>
{
fn check(&self, value: &Result<T, E>) -> CheckResult {
match value {
Err(e) => {
if (self.0)(e) {
CheckResult::Pass
} else {
CheckResult::Fail(format!(
"Expectation failed (expected Err value to match predicate)\n actual: Err({:?})",
e
))
}
}
Ok(v) => CheckResult::Fail(format!(
"Expectation failed (expected Err)\n actual: Ok({:?})",
v
)),
}
}
}
#[cfg(test)]
mod tests {
use crate::expectations::EqualityExpectations;
use crate::expectations::result::{ProjectedResultExpectations, ResultExpectations};
use crate::{expect, expect_ref};
#[test]
pub fn that_to_be_ok_accepts_ok_values() {
// Given a Result that is Ok
let result: Result<i32, &str> = Ok(42);
// Expect the to_be_ok expectation to pass
expect(result).to_be_ok();
}
#[test]
#[should_panic]
pub fn that_to_be_ok_does_not_accept_err_values() {
// Given a Result that is Err
let result: Result<i32, &str> = Err("error");
// Expect the to_be_ok expectation to fail
expect(result).to_be_ok();
}
#[test]
pub fn that_to_be_err_accepts_err_values() {
// Given a Result that is Err
let result: Result<i32, &str> = Err("error");
// Expect the to_be_err expectation to pass
expect(result).to_be_err();
}
#[test]
#[should_panic]
pub fn that_to_be_err_does_not_accept_ok_values() {
// Given a Result that is Ok
let result: Result<i32, &str> = Ok(42);
// Expect the to_be_err expectation to fail
expect(result).to_be_err();
}
#[test]
pub fn that_to_be_ok_matching_accepts_ok_values_that_match_predicate() {
// Given a Result that is Ok with a value that matches the predicate
let result: Result<i32, &str> = Ok(42);
// Expect the to_be_ok_matching expectation to pass
expect(result).to_be_ok_matching(|v| *v > 40);
}
#[test]
#[should_panic]
pub fn that_to_be_ok_matching_does_not_accept_ok_values_that_do_not_match_predicate() {
// Given a Result that is Ok with a value that does not match the predicate
let result: Result<i32, &str> = Ok(42);
// Expect the to_be_ok_matching expectation to fail
expect(result).to_be_ok_matching(|v| *v < 40);
}
#[test]
#[should_panic]
pub fn that_to_be_ok_matching_does_not_accept_err_values() {
// Given a Result that is Err
let result: Result<i32, &str> = Err("error");
// Expect the to_be_ok_matching expectation to fail
expect(result).to_be_ok_matching(|v| *v > 40);
}
#[test]
pub fn that_to_be_err_matching_accepts_err_values_that_match_predicate() {
// Given a Result that is Err with a value that matches the predicate
let result: Result<i32, &str> = Err("error");
// Expect the to_be_err_matching expectation to pass
expect(result).to_be_err_matching(|e| *e == "error");
}
#[test]
#[should_panic]
pub fn that_to_be_err_matching_does_not_accept_err_values_that_do_not_match_predicate() {
// Given a Result that is Err with a value that does not match the predicate
let result: Result<i32, &str> = Err("error");
// Expect the to_be_err_matching expectation to fail
expect(result).to_be_err_matching(|e| *e == "other error");
}
#[test]
#[should_panic]
pub fn that_to_be_err_matching_does_not_accept_ok_values() {
// Given a Result that is Ok
let result: Result<i32, &str> = Ok(42);
// Expect the to_be_err_matching expectation to fail
expect(result).to_be_err_matching(|e| *e == "error");
}
#[test]
pub fn that_to_be_ok_and_accepts_ok_values_with_matching_expectations() {
// Given a Result that is Ok with a value that matches the expectation
let result: Result<i32, &str> = Ok(42);
// Expect the to_be_ok_and expectation to pass
expect(result).to_be_ok_and().to_equal(42);
}
#[test]
#[should_panic]
pub fn that_to_be_ok_and_does_not_accept_ok_values_with_non_matching_expectations() {
// Given a Result that is Ok with a value that does not match the expectation
let result: Result<i32, &str> = Ok(42);
// Expect the to_be_ok_and expectation to fail
expect(result).to_be_ok_and().to_equal(43);
}
#[test]
#[should_panic]
pub fn that_to_be_ok_and_does_not_accept_err_values() {
// Given a Result that is Err
let result: Result<i32, &str> = Err("error");
// Expect the to_be_ok_and expectation to fail
expect(result).to_be_ok_and().to_equal(42);
}
#[test]
pub fn that_to_be_err_and_accepts_err_values_with_matching_expectations() {
// Given a Result that is Err with a value that matches the expectation
let result: Result<i32, &str> = Err("error");
// Expect the to_be_err_and expectation to pass
expect(result).to_be_err_and().to_equal("error");
}
#[test]
#[should_panic]
pub fn that_to_be_err_and_does_not_accept_err_values_with_non_matching_expectations() {
// Given a Result that is Err with a value that does not match the expectation
let result: Result<i32, &str> = Err("error");
// Expect the to_be_err_and expectation to fail
expect(result).to_be_err_and().to_equal("other error");
}
#[test]
#[should_panic]
pub fn that_to_be_err_and_does_not_accept_ok_values() {
// Given a Result that is Ok
let result: Result<i32, &str> = Ok(42);
// Expect the to_be_err_and expectation to fail
expect(result).to_be_err_and().to_equal("error");
}
#[test]
pub fn that_to_be_ok_accepts_reference() {
// Given a Result that is Ok
let result: Result<i32, &str> = Ok(42);
// Expect the to_be_ok expectation to pass for a reference to the result
expect_ref(&result).to_be_ok();
}
}