1use std::any::Any;
8use std::fmt::Debug;
9use std::str::FromStr as _;
10
11use proptest::test_runner::{FailurePersistence, PersistedSeed};
12
13#[derive(Clone, Debug, PartialEq)]
22pub struct FailedSeeds(pub Vec<&'static str>);
23
24impl FailurePersistence for FailedSeeds {
25 fn load_persisted_failures2(&self, _source_file: Option<&'static str>) -> Vec<PersistedSeed> {
26 let Self(seeds) = self;
27 seeds.iter().map(|s| PersistedSeed::from_str(s).expect("malformed seed")).collect()
28 }
29
30 fn save_persisted_failure2(
31 &mut self,
32 source_file: Option<&'static str>,
33 seed: PersistedSeed,
34 shrunken_value: &dyn Debug,
35 ) {
36 eprintln!("Test failed when: {:?}", shrunken_value);
37 eprintln!("To reproduce this failure please add the following line:");
38 eprintln!("\"{}\"", seed);
41 eprintln!("to the test config in file {}", source_file.expect("failed to get source file"));
42 }
43
44 fn box_clone(&self) -> Box<dyn FailurePersistence> {
45 Box::new(self.clone())
46 }
47
48 fn eq(&self, other: &dyn FailurePersistence) -> bool {
49 other.as_any().downcast_ref::<Self>().map_or(false, |x| x == self)
50 }
51
52 fn as_any(&self) -> &dyn Any {
53 self
54 }
55}
56
57#[macro_export]
58macro_rules! failed_seeds_no_std {
59 ($($seed:literal),*) => {
60 Some({
61 use alloc::{boxed::Box, vec};
62 Box::new(proptest_support::FailedSeeds(vec![$($seed),*]))
63 })
64 }
65}
66
67#[macro_export]
68macro_rules! failed_seeds {
69 ($($seed:literal),*) => {
70 Some({
71 Box::new(proptest_support::FailedSeeds(vec![$($seed),*]))
72 })
73 }
74}