Rename my //users directory and all places that refer to glittershark to grfn, including nix references and documentation. This may require some extra attention inside of gerrit's database after it lands to allow me to actually push things. Change-Id: I4728b7ec2c60024392c1c1fa6e0d4a59b3e266fa Reviewed-on: https://cl.tvl.fyi/c/depot/+/2933 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: glittershark <grfn@gws.fyi>
42 lines
1.3 KiB
Haskell
42 lines
1.3 KiB
Haskell
{-# LANGUAGE UndecidableInstances #-}
|
|
module Xanthous.Util.QuickCheck
|
|
( functionShow
|
|
, FunctionShow(..)
|
|
, functionJSON
|
|
, FunctionJSON(..)
|
|
, genericArbitrary
|
|
, GenericArbitrary(..)
|
|
) where
|
|
--------------------------------------------------------------------------------
|
|
import Xanthous.Prelude
|
|
import Test.QuickCheck
|
|
import Test.QuickCheck.Function
|
|
import Test.QuickCheck.Instances.ByteString ()
|
|
import Test.QuickCheck.Arbitrary.Generic
|
|
import Data.Aeson
|
|
import GHC.Generics (Rep)
|
|
--------------------------------------------------------------------------------
|
|
|
|
newtype FunctionShow a = FunctionShow a
|
|
deriving newtype (Show, Read)
|
|
|
|
instance (Show a, Read a) => Function (FunctionShow a) where
|
|
function = functionShow
|
|
|
|
functionJSON :: (ToJSON a, FromJSON a) => (a -> c) -> a :-> c
|
|
functionJSON = functionMap encode (headEx . decode)
|
|
|
|
newtype FunctionJSON a = FunctionJSON a
|
|
deriving newtype (ToJSON, FromJSON)
|
|
|
|
instance (ToJSON a, FromJSON a) => Function (FunctionJSON a) where
|
|
function = functionJSON
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
newtype GenericArbitrary a = GenericArbitrary a
|
|
deriving newtype Generic
|
|
|
|
instance (Generic a, GArbitrary rep, Rep a ~ rep)
|
|
=> Arbitrary (GenericArbitrary a) where
|
|
arbitrary = genericArbitrary
|