// cspell:ignore oneof //! Property testing for key set index and value set index as a rust collection. use modifier::Modifier; use proptest::{ collection::vec, prop_assert, prop_oneof, proptest, strategy, strategy::Strategy, test_runner::TestCaseResult, }; use std::{collections::HashSet, hash::Hash, rc::Rc}; use matterdb::{access::AccessExt, Fork, KeySetIndex, TemporaryDB}; mod common; use crate::common::{compare_collections, AsForkAction, ForkAction, FromFork, ACTIONS_MAX_LEN}; #[derive(Debug, Clone)] enum SetAction { // Should be applied to a small subset of values (like modulo 8 for int). Put(V), // Should be applied to a small subset of values (like modulo 8 for int). Remove(V), Clear, MergeFork, } impl AsForkAction for SetAction { fn as_fork_action(&self) -> Option { match self { SetAction::MergeFork => Some(ForkAction::Merge), _ => None, } } } fn generate_action() -> impl Strategy> { prop_oneof![ (0..8u8).prop_map(SetAction::Put), (0..8u8).prop_map(SetAction::Remove), strategy::Just(SetAction::Clear), strategy::Just(SetAction::MergeFork), ] } impl Modifier> for SetAction where V: Eq + Hash, { fn modify(self, set: &mut HashSet) { match self { SetAction::Put(v) => { set.insert(v); } SetAction::Remove(v) => { set.remove(&v); } SetAction::Clear => set.clear(), _ => unreachable!(), } } } impl Modifier, u8>> for SetAction { fn modify(self, set: &mut KeySetIndex, u8>) { match self { SetAction::Put(k) => { set.insert(&k); } SetAction::Remove(k) => { set.remove(&k); } SetAction::Clear => { set.clear(); } _ => unreachable!(), } } } impl FromFork for KeySetIndex, u8> { fn from_fork(fork: Rc) -> Self { fork.get_key_set("test") } fn clear(&mut self) { self.clear(); } } fn compare_key_set(set: &KeySetIndex, u8>, ref_set: &HashSet) -> TestCaseResult { for k in ref_set { prop_assert!(set.contains(k)); } for k in set.iter() { prop_assert!(ref_set.contains(&k)); } Ok(()) } #[test] fn compare_key_set_to_hash_set() { let db = TemporaryDB::new(); proptest!(|(ref actions in vec(generate_action(), 1..ACTIONS_MAX_LEN))| { compare_collections(&db, actions, compare_key_set)?; }); }