extern crate rust2fun_laws; use proptest::prelude::*; use rust2fun_laws::applicative_laws::*; use rust2fun_laws::apply_laws::*; use rust2fun_laws::flatmap_laws::*; use rust2fun_laws::functor_laws::*; use rust2fun_laws::invariant_laws::*; use rust2fun_laws::monad_laws::*; use rust2fun_laws::monoid_laws::*; use rust2fun_laws::semigroup_laws::*; use rust2fun_laws::semigroupal_laws::*; use crate::common::{parse, print}; mod common; proptest! { #[test] fn test_invariant(fa: Option) { prop_assert!(invariant_identity(fa).holds()); prop_assert!(invariant_composition(fa, print, parse, parse::, print).holds()); } #[test] fn test_functor(fa: Option) { prop_assert!(covariant_identity(fa).holds()); prop_assert!(covariant_composition(fa, print, parse::).holds()); prop_assert!(lift_identity(fa).holds()); prop_assert!(lift_composition(fa, print, parse::).holds()); } #[test] fn test_semigroup(fa: Option, fb: Option, fc: Option) { prop_assert!(repeat_0(fa.clone()).holds()); prop_assert!(repeat_1(fb.clone()).holds()); prop_assert!(semigroup_associativity(fa, fb, fc).holds()); } #[test] fn test_monoid(fa: Option) { prop_assert!(monoid_left_identity(fa.clone()).holds()); prop_assert!(monoid_right_identity(fa.clone()).holds()); prop_assert!(is_id(fa).holds()); } #[test] fn test_semigroupal(fa: Option, fb: Option, fc: Option>) { prop_assert!(semigroupal_associativity(fa, fb, fc).holds()); } #[test] fn test_apply(fa: Option, fb: Option) { prop_assert!(map2_product_consistency(fa.clone(), fb, |a, b| a.len() == b).holds()); prop_assert!(product_r_consistency(fa.clone(), fb).holds()); prop_assert!(product_l_consistency(fa, fb).holds()); } #[test] fn test_applicative(fa: Option, a: bool) { prop_assert!(applicative_identity(fa).holds()); prop_assert!(applicative_homomorphism::, _, _>(a, print).holds()); prop_assert!(applicative_map(fa, print).holds()); prop_assert!(ap_product_consistent(fa, Some(print)).holds()); prop_assert!(ap_product_consistent(fa, None:: String>).holds()); prop_assert!(applicative_unit::>(a).holds()); } #[test] fn test_flatmap(fa: Option) { prop_assert!(flat_map_associativity(fa, |x| Some(print(x)), |s| Some(parse::(s))).holds()); prop_assert!(flat_map_associativity(fa, |_| None, |s| Some(parse::(s))).holds()); prop_assert!(flat_map_associativity(fa, |x| Some(print(x)), |_| None::).holds()); prop_assert!(flat_map_associativity(fa, |_| None::, |_| None::).holds()); prop_assert!(flat_map_consistent_apply(fa, Some(print)).holds()); prop_assert!(flat_map_consistent_apply(fa, None:: String>).holds()); prop_assert!(m_product_consistency(fa, |x| Some(print(x))).holds()); prop_assert!(m_product_consistency(fa, |_| None::).holds()); } #[test] fn test_monad(a: bool, fa: Option) { prop_assert!(monad_left_identity::, _, _>(a, |x| Some(print(x))).holds()); prop_assert!(monad_left_identity::, _, _>(a, |_| None::).holds()); prop_assert!(monad_right_identity(fa).holds()); prop_assert!(map_flat_map_coherence(fa, print).holds()); } }