asserting 0.14.0

Fluent assertions for tests in Rust that are convenient to write and easy to extend.
Documentation
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
use crate::prelude::*;
use crate::std::error::Error;
use crate::std::fmt::{self, Display};
use crate::std::vec::Vec;

#[derive(Debug)]
struct SuperError {
    source: SourceError,
}

impl Display for SuperError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "super-error caused by {}", self.source)
    }
}

impl Error for SuperError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        Some(&self.source)
    }
}

#[derive(Debug, PartialEq)]
enum SourceError {
    Foo,
    Bar,
}

impl Display for SourceError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Foo => f.write_str("foo error"),
            Self::Bar => f.write_str("bar error"),
        }
    }
}

impl Error for SourceError {}

#[test]
fn error_has_debug_string() {
    let error = SuperError {
        source: SourceError::Bar,
    };

    assert_that(error).has_debug_string("SuperError { source: Bar }");
}

#[test]
fn verify_error_has_debug_string_fails() {
    let error = SuperError {
        source: SourceError::Foo,
    };

    let failures = verify_that(error)
        .has_debug_string("SuperError { source: Bar }")
        .display_failures();

    assert_eq!(
        failures,
        &[
            r#"expected subject to have a debug string equal to "SuperError { source: Bar }"
   but was: SuperError { source: Foo }
  expected: SuperError { source: Bar }
"#
        ]
    );
}

#[test]
fn error_does_not_have_debug_string() {
    let error = SuperError {
        source: SourceError::Bar,
    };

    assert_that(error).does_not_have_debug_string("SuperError { source: Foo }");
}

#[test]
fn verify_error_does_not_have_debug_string_fails() {
    let error = SuperError {
        source: SourceError::Bar,
    };

    let failures = verify_that(error)
        .does_not_have_debug_string("SuperError { source: Bar }")
        .display_failures();

    assert_eq!(
        failures,
        &[
            r#"expected subject to not have a debug string equal to "SuperError { source: Bar }"
   but was: SuperError { source: Bar }
  expected: not SuperError { source: Bar }
"#
        ]
    );
}

#[test]
fn error_has_display_string() {
    let error = SuperError {
        source: SourceError::Bar,
    };

    assert_that(error).has_display_string("super-error caused by bar error");
}

#[test]
fn verify_error_has_display_string_fails() {
    let error = SuperError {
        source: SourceError::Foo,
    };

    let failures = verify_that(error)
        .has_display_string("super-error caused by bar error")
        .display_failures();

    assert_eq!(
        failures,
        &[
            r#"expected subject to have a display string equal to "super-error caused by bar error"
   but was: "super-error caused by foo error"
  expected: "super-error caused by bar error"
"#
        ]
    );
}

#[test]
fn error_does_not_have_display_string() {
    let error = SuperError {
        source: SourceError::Bar,
    };

    assert_that(error).does_not_have_display_string("super-error caused by foo error");
}

#[test]
fn verify_error_does_not_have_display_string_fails() {
    let error = SuperError {
        source: SourceError::Foo,
    };

    let failures = verify_that(error)
        .does_not_have_display_string("super-error caused by foo error")
        .display_failures();

    assert_eq!(
        failures,
        &[
            r#"expected subject to not have a display string equal to "super-error caused by foo error"
   but was: "super-error caused by foo error"
  expected: not "super-error caused by foo error"
"#
        ]
    );
}

#[test]
fn source_error_has_no_source() {
    let error = SourceError::Foo;

    assert_that(error).has_no_source();
}

#[test]
fn verify_error_has_no_source_fails() {
    let error = SuperError {
        source: SourceError::Foo,
    };

    let failures = verify_that(error)
        .named("my error")
        .has_no_source()
        .display_failures();

    assert_eq!(
        failures,
        &[r"expected my error to have no source
   but was: SuperError { source: Foo }
  expected: <error with no source>
"]
    );
}

#[test]
fn super_error_has_source() {
    let error = SuperError {
        source: SourceError::Foo,
    };

    assert_that(error).has_source();
}

#[test]
fn verify_error_has_source_fails() {
    let error = SourceError::Bar;

    let failures = verify_that(error)
        .named("my error")
        .has_source()
        .display_failures();

    assert_eq!(
        failures,
        &[r"expected my error to have a source
   but was: Bar
  expected: <error with some source>
"]
    );
}

#[test]
fn super_error_has_source_message() {
    let error = SuperError {
        source: SourceError::Foo,
    };

    assert_that(error).has_source_message("foo error");
}

#[test]
fn verify_error_has_source_message_fails_wrong_source() {
    let error = SuperError {
        source: SourceError::Bar,
    };

    let failures = verify_that(error)
        .named("my error")
        .has_source_message("foo error")
        .display_failures();

    assert_eq!(
        failures,
        &[
            r#"expected my error to have a source message equal to "foo error"
   but was: "bar error"
  expected: "foo error"
"#
        ]
    );
}

#[test]
fn verify_error_has_source_message_fails_error_without_source() {
    let error = SourceError::Foo;

    let failures = verify_that(error)
        .named("my error")
        .has_source_message("foo error")
        .display_failures();

    assert_eq!(
        failures,
        &[
            r#"expected my error to have a source message equal to "foo error"
   but was: Foo - which has no source
  expected: "foo error"
"#
        ]
    );
}

#[test]
fn result_is_error_which_has_source() {
    let result: Result<Vec<i32>, SuperError> = Err(SuperError {
        source: SourceError::Bar,
    });

    assert_that(&result)
        .err()
        .has_source()
        .has_source_message("bar error");
}

#[cfg(feature = "colored")]
mod colored {
    use crate::error::tests::{SourceError, SuperError};
    use crate::prelude::*;

    #[test]
    fn highlight_diffs_error_has_no_source() {
        let error = SuperError {
            source: SourceError::Foo,
        };

        let failures = verify_that(error)
            .with_diff_format(DIFF_FORMAT_RED_YELLOW)
            .has_no_source()
            .display_failures();

        assert_eq!(
            failures,
            &["expected subject to have no source\n   \
                but was: \u{1b}[31mSuperError { source: Foo }\u{1b}[0m\n  \
               expected: \u{1b}[33m<error with no source>\u{1b}[0m\n\
            "]
        );
    }

    #[test]
    fn highlight_diffs_error_has_source() {
        let error = SourceError::Foo;

        let failures = verify_that(error)
            .with_diff_format(DIFF_FORMAT_RED_YELLOW)
            .has_source()
            .display_failures();

        assert_eq!(
            failures,
            &["expected subject to have a source\n   \
                but was: \u{1b}[31mFoo\u{1b}[0m\n  \
               expected: \u{1b}[33m<error with some source>\u{1b}[0m\n\
            "]
        );
    }

    #[test]
    fn highlight_diffs_error_has_source_message_fails_wrong_source() {
        let error = SuperError {
            source: SourceError::Bar,
        };

        let failures = verify_that(error)
            .with_diff_format(DIFF_FORMAT_RED_YELLOW)
            .has_source_message("foo error")
            .display_failures();

        assert_eq!(
            failures,
            &[
                "expected subject to have a source message equal to \"foo error\"\n   \
                    but was: \"\u{1b}[31mbar error\u{1b}[0m\"\n  \
                   expected: \"\u{1b}[33mfoo error\u{1b}[0m\"\n\
            "
            ]
        );
    }

    #[test]
    fn highlight_diffs_error_has_source_message_fails_error_without_source() {
        let error = SourceError::Foo;

        let failures = verify_that(error)
            .with_diff_format(DIFF_FORMAT_RED_YELLOW)
            .has_source_message("foo error")
            .display_failures();

        assert_eq!(
            failures,
            &[
                "expected subject to have a source message equal to \"foo error\"\n   \
                    but was: \u{1b}[31mFoo\u{1b}[0m - which has no source\n  \
                   expected: \u{1b}[33m\"foo error\"\u{1b}[0m\n\
            "
            ]
        );
    }
}

#[cfg(feature = "regex")]
mod with_regex {
    use super::*;

    #[test]
    fn error_has_debug_string_matching_regex() {
        let error = SuperError {
            source: SourceError::Bar,
        };

        assert_that(error).debug_string().matches(r"SuperError.*");
    }

    #[test]
    fn verify_error_has_debug_string_matching_regex_fails() {
        let error = SuperError {
            source: SourceError::Bar,
        };

        let failures = verify_that(error)
            .debug_string()
            .matches(r"SuperError \{ (source|target): Foo \}")
            .display_failures();

        assert_eq!(
            failures,
            &[
                r"expected subject's debug string to match the regex SuperError \{ (source|target): Foo \}
               but was: SuperError { source: Bar }
  does not match regex: SuperError \{ (source|target): Foo \}
"
            ]
        );
    }

    #[test]
    fn error_has_display_string_matching_regex() {
        let error = SuperError {
            source: SourceError::Bar,
        };

        assert_that(error).display_string().matches(r".*-error .*");
    }

    #[test]
    fn verify_error_has_display_string_matching_regex_fails() {
        let error = SuperError {
            source: SourceError::Bar,
        };

        let failures = verify_that(error)
            .display_string()
            .matches(r".*-error-caused.*")
            .display_failures();

        assert_eq!(
            failures,
            &[
                r"expected subject's display string to match the regex .*-error-caused.*
               but was: super-error caused by bar error
  does not match regex: .*-error-caused.*
"
            ]
        );
    }
}