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
use core::any::Any;
use crate::std_facade::{fmt, Box, Vec};
use crate::test_runner::failure_persistence::FailurePersistence;
use crate::test_runner::Seed;
#[derive(Debug, Default, PartialEq)]
struct NoopFailurePersistence;
impl FailurePersistence for NoopFailurePersistence {
fn load_persisted_failures(&self, _source_file: Option<&'static str>) -> Vec<Seed> {
Vec::new()
}
fn save_persisted_failure(&mut self,
_source_file: Option<&'static str>,
_seed: Seed,
_shrunken_value: &dyn fmt::Debug,
) {
}
fn box_clone(&self) -> Box<dyn FailurePersistence> {
Box::new(NoopFailurePersistence)
}
fn eq(&self, other: &dyn FailurePersistence) -> bool {
other.as_any().downcast_ref::<Self>().map_or(false, |x| x == self)
}
fn as_any(&self) -> &dyn Any { self }
}
#[cfg(test)]
mod tests {
use super::*;
use crate::test_runner::failure_persistence::tests::*;
#[test]
fn default_load_is_empty() {
assert!(NoopFailurePersistence::default()
.load_persisted_failures(None).is_empty());
assert!(NoopFailurePersistence::default()
.load_persisted_failures(HI_PATH).is_empty());
}
#[test]
fn seeds_not_recoverable() {
let mut p = NoopFailurePersistence::default();
p.save_persisted_failure(HI_PATH, INC_SEED, &"");
assert!(p.load_persisted_failures(HI_PATH).is_empty());
assert!(p.load_persisted_failures(None).is_empty());
assert!(p.load_persisted_failures(UNREL_PATH).is_empty());
}
}