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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
use crate::{implementation, private, Asserter};
use std::fmt::Debug;
/// Specifies various assertions on [`IntoIterator`]. Implemented on [`Asserter`]
///
/// This trait is sealed and cannot be implemented outside Smoothy.
pub trait IteratorAssertion<Iterable, Item>: private::Sealed
where
Iterable: IntoIterator<Item = Item>,
{
/// Convenience function for getting the size of the Iterator.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec!["Hello World!".to_string()];
/// assert_that(vec).size().is(1);
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec![];
/// assert_that(vec).size().is(42);
/// ```
///
/// # Panics
/// When the Iterator does not contain a first element.
#[track_caller]
#[must_use = "Accessing the count of the iterable does not assert anything"]
fn size(self) -> Asserter<usize>;
/// Asserts that the Iterable is not empty.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec![String::from("Hello World!")];
/// assert_that(vec).is_not_empty();
/// ```
///
/// # Panics
/// When the Iterable is empty.
#[track_caller]
#[allow(clippy::wrong_self_convention)]
fn is_not_empty(self) -> Asserter<Vec<Item>>
where
Item: Debug;
/// Asserts that the Iterable is empty.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec![];
/// assert_that(vec).is_empty();
/// ```
///
/// # Panics
/// When the Iterable is not empty.
#[track_caller]
#[allow(clippy::wrong_self_convention)]
fn is_empty(self)
where
Item: Debug;
/// Convenience function for accessing the first (0th) element of the Iterable.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec!["Hello World!".to_string()];
/// assert_that(vec).first().equals("Hello World!");
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec![];
/// assert_that(vec).first().equals("Hello World!");
/// ```
///
/// # Panics
/// When the Iterator does not contain a first element.
#[track_caller]
#[must_use = "Accessing the first element only asserts that size > 0. If you want to assert the size use assert_that(iter).size().equals(1) instead"]
fn first(self) -> Asserter<Item>
where
Item: Debug;
/// Convenience function for accessing the second (1st) element of the Iterable.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec!["First".to_string(), "Second".to_string()];
/// assert_that(vec).second().equals("Second");
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec![];
/// assert_that(vec).second().equals("Hello World!");
/// ```
///
/// # Panics
/// When the Iterator does not contain a second element.
#[track_caller]
#[must_use = "Accessing the second element only asserts that size > 1. If you want to assert the size use assert_that(iter).size().equals(2) instead"]
fn second(self) -> Asserter<Item>
where
Item: Debug;
/// Convenience function for accessing the third (2nd) element of the Iterable.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec![
/// "First".to_string(),
/// "Second".to_string(),
/// "Third".to_string(),
/// ];
/// assert_that(vec).third().equals("Third");
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec![];
/// assert_that(vec).third().equals("Hello World!");
/// ```
///
/// # Panics
/// When the Iterator does not contain a third element.
#[track_caller]
#[must_use = "Accessing the third element only asserts that size > 2. If you want to assert the size use assert_that(iter).size().equals(3) instead"]
fn third(self) -> Asserter<Item>
where
Item: Debug;
/// Convenience function for accessing the nth element of the Iterable.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec![
/// "First".to_string(),
/// "Second".to_string(),
/// "Third".to_string(),
/// ];
/// assert_that(vec).nth(2).equals("Third");
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec: Vec<String> = vec![];
/// assert_that(vec).nth(0).equals("Hello World!");
/// ```
///
/// # Panics
/// When the Iterator does not contain a nth element.
#[track_caller]
#[must_use = "Accessing the nth element only asserts that size is at least nth. If you want to assert the size use assert_that(iter).size().equals(nth) instead"]
fn nth(self, nth: usize) -> Asserter<Item>
where
Item: Debug;
/// Asserts that the iterable contains the item at least once in any place in the iterator
///
/// [See top-level docs for more details on content assertions](index.html#content-assertions)
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec = vec!["First", "Second", "Third"];
///
/// assert_that(vec).contains("Second");
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec = vec!["First", "Second", "Third"];
///
/// assert_that(vec).contains("Does not exist");
/// ```
///
/// # Panics
/// When the Iterator does not contain the expected item.
#[track_caller]
fn contains(self, expected: impl Into<Item>) -> Asserter<Vec<Item>>
where
Item: Debug + PartialEq;
/// Asserts that the iterable contains each item at least once in any place in the iterator
///
/// [See top-level docs for more details on content assertions](index.html#content-assertions)
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec = vec!["First", "Second", "Third"];
///
/// assert_that(vec).contains_all(["Second", "First"]);
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec = vec!["First", "Second", "Third"];
///
/// assert_that(vec).contains_all(["Does not exist", "Also does not exist"]);
/// ```
///
/// # Panics
/// When the Iterator does not contain at least one of the expected items.
#[track_caller]
fn contains_all(
self,
expected_items: impl IntoIterator<Item = impl Into<Item>>,
) -> Asserter<Vec<Item>>
where
Item: Debug + PartialEq;
/// Asserts that the iterable contains only the expected items any place in the iterator
///
/// [See top-level docs for more details on content assertions](index.html#content-assertions)
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec = vec!["A", "B", "A", "C"];
///
/// // Order does not matter
/// assert_that(vec).contains_only(["C", "A", "A", "B"]);
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec = vec!["A", "B", "C"];
///
/// // Missing "C"
/// assert_that(vec).contains_only(["A", "B"]);
/// ```
///
/// # Panics
/// When the Iterator contains additional elements other than the specified ones.
#[track_caller]
fn contains_only(
self,
expected_items: impl IntoIterator<Item = impl Into<Item>>,
) -> Asserter<Vec<Item>>
where
Item: Debug + PartialEq;
/// Asserts that all elements in the iterable match the given predicate.
///
/// Succeeds when the iterator is empty. Use [`is_not_empty`](IteratorAssertion::is_not_empty) first to assert that the iterator is empty.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec = vec![2, 4, 6, 8];
/// assert_that(vec).all_match(|x| x % 2 == 0);
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec = vec![2, 3, 4];
/// assert_that(vec).all_match(|x| x % 2 == 0);
/// ```
///
/// # Panics
/// When at least one element does not match the predicate.
#[track_caller]
fn all_match(self, predicate: impl Fn(&Item) -> bool) -> Asserter<Vec<Item>>
where
Item: Debug;
/// Asserts that at least one element in the iterable matches the given predicate.
///
/// Panics when the iterator is empty.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec = vec![1, 2, 3, 4];
/// assert_that(vec).any_match(|x| x % 2 == 0);
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec = vec![1, 3, 5];
/// assert_that(vec).any_match(|x| x % 2 == 0);
/// ```
///
/// # Panics
/// When no elements match the predicate.
#[track_caller]
fn any_match(self, predicate: impl Fn(&Item) -> bool) -> Asserter<Vec<Item>>
where
Item: Debug;
/// Asserts that no elements in the iterable match the given predicate.
///
/// Returns true when the iterator is empty. Use [`is_not_empty`](IteratorAssertion::is_not_empty) first to assert that the iterator is empty.
///
/// # Examples
/// ```
/// # use smoothy::prelude::*;
/// #
/// let vec = vec![1, 3, 5];
/// assert_that(vec).none_match(|x| x % 2 == 0);
/// ```
///
/// ```should_panic
/// # use smoothy::prelude::*;
/// #
/// let vec = vec![1, 2, 3];
/// assert_that(vec).none_match(|x| x % 2 == 0);
/// ```
///
/// # Panics
/// When at least one element matches the predicate.
#[track_caller]
fn none_match(self, predicate: impl Fn(&Item) -> bool) -> Asserter<Vec<Item>>
where
Item: Debug;
}
impl<Iterable, Item> IteratorAssertion<Iterable, Item> for Asserter<Iterable>
where
Iterable: IntoIterator<Item = Item>,
{
fn size(self) -> Asserter<usize> {
let size = self.value.into_iter().count();
Asserter { value: size }
}
fn is_not_empty(self) -> Asserter<Vec<Item>>
where
Item: Debug,
{
let actual = self.value.into_iter().collect::<Vec<Item>>();
implementation::assert_no_expected(
!actual.is_empty(),
&actual,
"to contain at least one item",
);
Asserter { value: actual }
}
fn is_empty(self)
where
Item: Debug,
{
let actual = self.value.into_iter().collect::<Vec<Item>>();
implementation::assert_no_expected(actual.is_empty(), &actual, "to be empty");
}
fn first(self) -> Asserter<Item>
where
Item: Debug,
{
let mut actual = self.value.into_iter();
let maybe_item = actual.nth(0);
implementation::assert_no_expected(
maybe_item.is_some(),
actual.collect::<Vec<Item>>(),
"to contain a first item",
);
#[allow(clippy::unwrap_used)]
let item = maybe_item.unwrap();
Asserter { value: item }
}
fn second(self) -> Asserter<Item>
where
Item: Debug,
{
let mut actual = self.value.into_iter();
let maybe_item = actual.nth(1);
implementation::assert_no_expected(
maybe_item.is_some(),
actual.collect::<Vec<Item>>(),
"to contain a second item",
);
#[allow(clippy::unwrap_used)]
let item = maybe_item.unwrap();
Asserter { value: item }
}
fn third(self) -> Asserter<Item>
where
Item: Debug,
{
let mut actual = self.value.into_iter();
let maybe_item = actual.nth(2);
implementation::assert_no_expected(
maybe_item.is_some(),
actual.collect::<Vec<Item>>(),
"to contain a third item",
);
#[allow(clippy::unwrap_used)]
let item = maybe_item.unwrap();
Asserter { value: item }
}
fn nth(self, nth: usize) -> Asserter<Item>
where
Item: Debug,
{
let mut actual = self.value.into_iter();
let maybe_item = actual.nth(nth);
implementation::assert_no_expected(
maybe_item.is_some(),
actual.collect::<Vec<Item>>(),
&format!("to contain a {nth}th item"),
);
#[allow(clippy::unwrap_used)]
let item = maybe_item.unwrap();
Asserter { value: item }
}
fn contains(self, expected: impl Into<Item>) -> Asserter<Vec<Item>>
where
Item: Debug + PartialEq,
{
let actual = self.value.into_iter().collect::<Vec<Item>>();
let expected_item = expected.into();
implementation::assert(
actual.contains(&expected_item),
&actual,
"to contain",
expected_item,
);
Asserter { value: actual }
}
fn contains_all(
self,
expected: impl IntoIterator<Item = impl Into<Item>>,
) -> Asserter<Vec<Item>>
where
Item: Debug + PartialEq,
{
let actual = self.value.into_iter().collect::<Vec<Item>>();
#[allow(clippy::shadow_reuse)]
let expected = expected.into_iter().map(Into::into).collect::<Vec<Item>>();
let not_found = expected
.iter()
.filter(|ele| !actual.contains(ele))
.collect::<Vec<&Item>>();
implementation::assert_with_additional_info(
not_found.is_empty(),
&actual,
"to contain all of",
&expected,
"but did not contain",
¬_found,
);
Asserter { value: actual }
}
fn contains_only(
self,
expected: impl IntoIterator<Item = impl Into<Item>>,
) -> Asserter<Vec<Item>>
where
Item: Debug + PartialEq,
{
let actual_items = self.value.into_iter().collect::<Vec<Item>>();
let expected_items = expected.into_iter().map(Into::into).collect::<Vec<Item>>();
let mut expected_item_indices = (0..expected_items.len()).collect::<Vec<_>>();
let mut extra_items_in_actual = Vec::with_capacity(actual_items.len());
for actual in &actual_items {
#[allow(clippy::unwrap_used)]
let matching_available_item_found_in_expected =
expected_item_indices
.iter()
.position(|available_expected_item| {
expected_items.get(*available_expected_item).unwrap() == actual
});
match matching_available_item_found_in_expected {
None => {
// Element not found in expected -> actual has more elements than expected
extra_items_in_actual.push(actual);
}
Some(index) => {
// Actual was matched by an item in expected -> removing the index from the available items
expected_item_indices.remove(index);
}
}
}
implementation::assert_with_additional_info(
extra_items_in_actual.is_empty(),
&actual_items,
"to contain only",
&expected_items,
"but found extra items",
extra_items_in_actual,
);
implementation::assert_with_additional_info(
expected_item_indices.is_empty(),
&actual_items,
"to contain only",
&expected_items,
"but did not contain",
#[allow(clippy::unwrap_used)]
expected_item_indices
.iter()
.map(|expected_item_index| expected_items.get(*expected_item_index).unwrap())
.collect::<Vec<&Item>>(),
);
Asserter {
value: actual_items,
}
}
fn all_match(self, predicate: impl Fn(&Item) -> bool) -> Asserter<Vec<Item>>
where
Item: Debug,
{
let actual = self.value.into_iter().collect::<Vec<Item>>();
let non_matching = actual
.iter()
.filter(|item| !predicate(item))
.collect::<Vec<&Item>>();
implementation::assert_with_additional_info_no_expected(
non_matching.is_empty(),
&actual,
"to have only element matching the predicate",
"but found elements that did not match",
&non_matching,
);
Asserter { value: actual }
}
fn any_match(self, predicate: impl Fn(&Item) -> bool) -> Asserter<Vec<Item>>
where
Item: Debug,
{
let actual = self.value.into_iter().collect::<Vec<Item>>();
let has_match = actual.iter().any(predicate);
implementation::assert_no_expected(
has_match,
&actual,
"to have at least one element matching the predicate",
);
Asserter { value: actual }
}
fn none_match(self, predicate: impl Fn(&Item) -> bool) -> Asserter<Vec<Item>>
where
Item: Debug,
{
let actual = self.value.into_iter().collect::<Vec<Item>>();
let matching = actual
.iter()
.filter(|item| predicate(item))
.collect::<Vec<&Item>>();
implementation::assert_with_additional_info_no_expected(
matching.is_empty(),
&actual,
"to have no elements matching the predicate",
"but found elements that matched",
&matching,
);
Asserter { value: actual }
}
}