123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- {-# LANGUAGE AllowAmbiguousTypes #-}
- {-# LANGUAGE DataKinds #-}
- {-# LANGUAGE DeriveAnyClass #-}
- {-# LANGUAGE DeriveGeneric #-}
- {-# LANGUAGE DerivingVia #-}
- {-# LANGUAGE KindSignatures #-}
- {-# LANGUAGE OverloadedStrings #-}
- {-# LANGUAGE ScopedTypeVariables #-}
- {-# LANGUAGE TypeApplications #-}
- {-
- - Copyright (C) 2019-2020 Koz Ross <koz.ross@retro-freedom.nz>
- -
- - This program is free software: you can redistribute it and/or modify
- - it under the terms of the GNU General Public License as published by
- - the Free Software Foundation, either version 3 of the License, or
- - (at your option) any later version.
- -
- - This program is distributed in the hope that it will be useful,
- - but WITHOUT ANY WARRANTY; without even the implied warranty of
- - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- - GNU General Public License for more details.
- -
- - You should have received a copy of the GNU General Public License
- - along with this program. If not, see <http://www.gnu.org/licenses/>.
- -}
- module Main where
- import Control.DeepSeq (NFData)
- import Data.Binary (Binary)
- import Data.Finitary (Finitary (..))
- import Data.Finitary.Finiteness (Finiteness (..))
- import qualified Data.Finitary.PackBits as Safe
- import qualified Data.Finitary.PackBits.Unsafe as Unsafe
- import Data.Finitary.PackBytes (PackBytes)
- import qualified Data.Finitary.PackBytes as PackBytes
- import Data.Finitary.PackInto (PackInto)
- import Data.Finitary.PackWords (PackWords)
- import qualified Data.Finitary.PackWords as PackWords
- import Data.Finite (Finite)
- import Data.Hashable (Hashable (..))
- import Data.Kind (Type)
- import Data.Proxy (Proxy (..))
- import Data.Word (Word16, Word64, Word8)
- import Foreign.Storable (Storable)
- import GHC.Generics (Generic)
- import GHC.TypeNats
- import Hedgehog
- import Hedgehog.Classes
- import qualified Hedgehog.Gen as G
- import qualified Hedgehog.Range as R
- data Foo = Bar | Baz Word8 Word8 | Quux Word16
- deriving (Eq, Show, Generic, Finitary)
- deriving (Ord, Bounded, NFData, Hashable, Binary) via (Finiteness Foo)
- data Big = Big Word64 Word64
- deriving (Eq, Show, Generic, Finitary)
- deriving (Ord, Bounded, NFData, Hashable, Binary) via (Finiteness Big)
- -- Generators
- choose :: forall (a :: Type) m. (MonadGen m, Finitary a) => m a
- choose = fromFinite <$> chooseFinite
- chooseFinite :: forall (n :: Nat) m. (KnownNat n, MonadGen m) => m (Finite n)
- chooseFinite = fromIntegral <$> G.integral (R.linear 0 limit)
- where
- limit = subtract @Integer 1 . fromIntegral . natVal @n $ Proxy
- finitenessLaws :: (Show a, Binary a, Ord a) => Gen a -> [Laws]
- finitenessLaws p = [binaryLaws p, ordLaws p]
- packLaws :: (Eq a, Show a, Storable a) => Gen a -> [Laws]
- packLaws p = [storableLaws p]
- ordIsMonotonic ::
- forall (a :: Type) (t :: Type -> Type).
- (Finitary a, Show a, Ord a, Ord (t a)) =>
- (a -> t a) ->
- Property
- ordIsMonotonic f = property $ do
- x <- forAll $ choose @a
- y <- forAll $ choose @a
- (x < y) === (f x < f y)
- finitenessTests :: [(String, [Laws])]
- finitenessTests =
- [ ("Small Finiteness", finitenessLaws @Foo choose),
- ("Big Finiteness", finitenessLaws @Big choose)
- ]
- packTests :: [(String, [Laws])]
- packTests =
- [ ("Small PackBytes", packLaws @(PackBytes Foo) choose),
- ("Big PackBytes", packLaws @(PackBytes Big) choose),
- ("Small PackWords", packLaws @(PackWords Foo) choose),
- ("Big PackWords", packLaws @(PackWords Big) choose),
- ("Small packed into Word64", packLaws @(PackInto Foo Word64) choose)
- ]
- main :: IO Bool
- main = (&&) <$> checkLaws <*> checkMonotonicity
- where
- checkLaws =
- (&&) <$> lawsCheckMany finitenessTests <*> lawsCheckMany packTests
- checkMonotonicity =
- checkParallel . Group "Monotonicity" $
- [ ("Small PackBits", ordIsMonotonic @Foo Safe.Packed),
- ("Small unsafe PackBits", ordIsMonotonic @Foo Unsafe.Packed),
- ("Small PackBytes", ordIsMonotonic @Foo PackBytes.Packed),
- ("Small PackWords", ordIsMonotonic @Foo PackWords.Packed),
- ("Big PackBits", ordIsMonotonic @Big Safe.Packed),
- ("Big unsafe PackBits", ordIsMonotonic @Big Unsafe.Packed),
- ("Big PackBytes", ordIsMonotonic @Big PackBytes.Packed),
- ("Big PackWords", ordIsMonotonic @Big PackWords.Packed)
- ]
|