-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`All` is a monoid build around `.&&.`. It is useful when writing complex properties which check multiple conditions. Since it is a monoid it allows one to use `foldMap` which is often much more ergonomic than using `conjoin`. `All` satisfies `monoid` laws up to `isSuccess`, unless one is using `checkCoverage` & `cover`. I'd argue this is not a problem since `checkCoverage` and `cover` are most often added at the top of the property. This patch also adds `Any` monoid build around `.||.`. Tests are also included.
- Loading branch information
Showing
5 changed files
with
227 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
{-# LANGUAGE CPP #-} | ||
{-# LANGUAGE ExistentialQuantification #-} | ||
|
||
module Test.QuickCheck.Monoids | ||
( Every (..) | ||
, Some (..) | ||
) where | ||
|
||
#ifndef NO_SEMIGROUP | ||
import Data.List.NonEmpty as NonEmpty | ||
import Data.Semigroup (Semigroup (..)) | ||
#else | ||
import Data.Monoid (Monoid (..)) | ||
#endif | ||
import Test.QuickCheck.Property | ||
|
||
-- | Conjunction monoid built with `.&&.`. | ||
-- | ||
-- Use `property @Every` as an accessor which doesn't leak | ||
-- existential variables. | ||
-- | ||
-- Note: monoid laws are satisfied up to `isSuccess` unless one is using | ||
-- `checkCoverage`. | ||
-- | ||
#ifndef NO_EXISTENTIAL_FIELD_SELECTORS | ||
data Every = forall p. Testable p => Every { getEvery :: p } | ||
#else | ||
data Every = forall p. Testable p => Every p | ||
#endif | ||
|
||
instance Testable Every where | ||
property (Every p) = property p | ||
|
||
#ifndef NO_SEMIGROUP | ||
instance Semigroup Every where | ||
Every p <> Every p' = Every (p .&&. p') | ||
sconcat = Every . conjoin . NonEmpty.toList | ||
|
||
instance Monoid Every where | ||
mempty = Every True | ||
mappend = (<>) | ||
mconcat = Every . conjoin | ||
#else | ||
instance Monoid Every where | ||
mempty = Every True | ||
mappend (Every p) (Every p') = Every (p .&&. p') | ||
mconcat = Every . conjoin | ||
#endif | ||
|
||
|
||
-- | Disjunction monoid built with `.||.`. | ||
-- | ||
-- Use `property @Some` as an accessor which doesn't leak | ||
-- existential variables. | ||
-- | ||
-- Note: monoid laws are satisfied up to `isSuccess` unless one is using | ||
-- `checkCoverage`. | ||
-- | ||
#ifndef NO_EXISTENTIAL_FIELD_SELECTORS | ||
data Some = forall p. Testable p => Some { getSome :: p } | ||
#else | ||
data Some = forall p. Testable p => Some p | ||
#endif | ||
|
||
instance Testable Some where | ||
property (Some p) = property p | ||
|
||
#ifndef NO_SEMIGROUP | ||
instance Semigroup Some where | ||
Some p <> Some p' = Some (p .||. p') | ||
sconcat = Some . disjoin . NonEmpty.toList | ||
|
||
instance Monoid Some where | ||
mempty = Some False | ||
mappend = (<>) | ||
mconcat = Some . disjoin | ||
#else | ||
instance Monoid Some where | ||
mempty = Some False | ||
mappend (Some p) (Some p') = Some (p .||. p') | ||
mconcat = Some . disjoin | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
{-# LANGUAGE CPP #-} | ||
{-# LANGUAGE TemplateHaskell #-} | ||
|
||
{-# OPTIONS_GHC -Wno-orphans #-} | ||
{-# LANGUAGE FlexibleInstances #-} | ||
|
||
module Main (main) where | ||
|
||
import Data.List.NonEmpty | ||
import Data.Semigroup (Semigroup (..)) | ||
|
||
import Test.QuickCheck | ||
|
||
instance Arbitrary Every where | ||
arbitrary = oneof [ pure $ Every True | ||
, pure $ Every False | ||
, pure $ Every (counterexample "False" False) | ||
, pure $ Every (counterexample "True" True) | ||
, pure $ Every (ioProperty (return True)) | ||
, pure $ Every (ioProperty (return False)) | ||
, pure $ Every (checkCoverage $ cover 100 True "" True) | ||
, pure $ Every (checkCoverage $ cover 100 True "" False) | ||
, pure $ Every (checkCoverage $ cover 100 False "" False) | ||
] | ||
|
||
|
||
instance Arbitrary Some where | ||
arbitrary = oneof [ pure $ Some True | ||
, pure $ Some False | ||
, pure $ Some (counterexample "False" False) | ||
, pure $ Some (counterexample "True" True) | ||
, pure $ Some (ioProperty (return True)) | ||
, pure $ Some (ioProperty (return False)) | ||
, pure $ Some (checkCoverage $ cover 100 True "" True) | ||
, pure $ Some (checkCoverage $ cover 100 True "" False) | ||
, pure $ Some (checkCoverage $ cover 100 False "" True) | ||
, pure $ Some (checkCoverage $ cover 100 False "" False) | ||
] | ||
|
||
|
||
newtype Fail a = Fail a | ||
|
||
instance Arbitrary (Fail Every) where | ||
arbitrary = oneof [ Fail <$> (arbitrary :: Gen Every) | ||
, pure $ Fail $ Every (checkCoverage $ cover 100 False "" True) | ||
] | ||
|
||
|
||
check_associative_law :: (Testable p, Semigroup p) => Blind p -> Blind p -> Blind p -> Property | ||
check_associative_law (Blind a) (Blind b) (Blind c) = ioProperty $ do | ||
x <- isSuccess <$> quickCheckWithResult args (a <> (b <> c)) | ||
y <- isSuccess <$> quickCheckWithResult args ((a <> b) <> c) | ||
return (x == y) | ||
|
||
|
||
#ifndef NO_SEMIGROUP_SUPERCLASS | ||
check_unit_law :: (Testable p, Monoid p) => Blind p -> Property | ||
#else | ||
check_unit_law :: (Testable p, Monoid p, Semigroup p) => Blind p -> Property | ||
#endif | ||
check_unit_law (Blind a) = ioProperty $ do | ||
x <- isSuccess <$> quickCheckWithResult args (a <> mempty) | ||
y <- isSuccess <$> quickCheckWithResult args (mempty <> a) | ||
z <- isSuccess <$> quickCheckWithResult args a | ||
return (x == y .&&. y == z) | ||
|
||
|
||
check_sconcat_law :: (Testable p, Semigroup p) => Blind p -> Blind p -> Property | ||
check_sconcat_law (Blind a) (Blind b) = ioProperty $ do | ||
x <- isSuccess <$> quickCheckWithResult args (sconcat $ a :| [b]) | ||
y <- isSuccess <$> quickCheckWithResult args (a <> b) | ||
return (x == y) | ||
|
||
|
||
#ifndef NO_SEMIGROUP_SUPERCLASS | ||
check_mconcat_law :: (Testable p, Monoid p) => Blind p -> Blind p -> Property | ||
#else | ||
check_mconcat_law :: (Testable p, Monoid p, Semigroup p) => Blind p -> Blind p -> Property | ||
#endif | ||
check_mconcat_law (Blind a) (Blind b) = ioProperty $ do | ||
x <- isSuccess <$> quickCheckWithResult args (mconcat [a, b]) | ||
y <- isSuccess <$> quickCheckWithResult args (a <> b) | ||
return (x == y) | ||
|
||
|
||
-- | ||
-- Auxiliary definitions | ||
-- | ||
|
||
args :: Args | ||
args = stdArgs { chatty = False, maxShrinks = 0 } | ||
|
||
-- | ||
-- Properties | ||
-- | ||
|
||
prop_every_associative :: Blind Every -> Blind Every -> Blind Every -> Property | ||
prop_every_associative = check_associative_law | ||
|
||
prop_every_unit :: Blind Every -> Property | ||
prop_every_unit = check_unit_law | ||
|
||
prop_every_unit_fail :: Blind (Fail Every) -> Property | ||
prop_every_unit_fail (Blind (Fail a)) = | ||
expectFailure $ check_unit_law (Blind a) | ||
|
||
prop_every_sconcat_law :: Blind Every -> Blind Every -> Property | ||
prop_every_sconcat_law = check_sconcat_law | ||
|
||
prop_every_mconcat_law :: Blind Every -> Blind Every -> Property | ||
prop_every_mconcat_law = check_mconcat_law | ||
|
||
prop_some_associative :: Blind Some -> Blind Some -> Blind Some -> Property | ||
prop_some_associative = check_associative_law | ||
|
||
prop_some_unit :: Blind Some -> Property | ||
prop_some_unit = check_unit_law | ||
|
||
prop_some_sconcat_law :: Blind Some -> Blind Some -> Property | ||
prop_some_sconcat_law = check_sconcat_law | ||
|
||
prop_some_mconcat_law :: Blind Some -> Blind Some -> Property | ||
prop_some_mconcat_law = check_mconcat_law | ||
|
||
return [] | ||
main = $quickCheckAll | ||
|