1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
module Regress (regressions) where
import qualified Test.Framework as F
import Control.Monad (when)
import Test.Framework.Providers.HUnit (testCase)
import Test.HUnit (Assertion, assertFailure, (@?=))
import Test.Framework.Providers.QuickCheck2 (testProperty)
import GHC.Generics (Generic)
import Data.List (nub)
import Data.Fixed (Pico)
import Data.Text (Text)
import Data.ByteString (ByteString)
import qualified Data.Text.Lazy as TL
import qualified Data.ByteString.Char8 as BS8
import qualified Data.ByteString.Lazy as BSL
import qualified Data.ByteString.Lazy.Char8 as BSL8
#ifdef HAVE_MMAP
import qualified Regress.Mmap as Mmap
#endif
import Data.Hashable
#include "MachDeps.h"
assertInequal :: Eq a => String -> a -> a -> Assertion
assertInequal msg x y
| x == y = assertFailure msg
| otherwise = return ()
regressions :: [F.Test]
regressions = [] ++
#ifdef HAVE_MMAP
Mmap.regressions ++
[ testCase "Fixed" $ do
(hash (1 :: Pico) == hash (2 :: Pico)) @?= False
] ++
#endif
[ F.testGroup "Generic: sum of nullary constructors"
[ testCase "0" $ nullaryCase 0 S0
, testCase "1" $ nullaryCase 1 S1
, testCase "2" $ nullaryCase 2 S2
, testCase "3" $ nullaryCase 3 S3
, testCase "4" $ nullaryCase 4 S4
]
, testCase "Zero tuples: issue 271" $ do
assertInequal "Hash of (0,0) != 0" (hash (0 :: Int, 0 :: Int)) 0
assertInequal "Hash of (0,0,0) != 0" (hash (0 :: Int, 0 :: Int, 0 :: Int)) 0
, testProperty "odd, odd: issue 271" $ \x' y' ->
let x = if odd x' then x' else x' + 1 :: Int
y = if odd y' then y' else y' + 1 :: Int
in hash (x, y) /= hash (negate x, negate y)
, testCase "Generic: Peano https://github.com/tibbe/hashable/issues/135" $ do
let ns = take 20 $ iterate S Z
let hs = map hash ns
hs @?= nub hs
#if WORD_SIZE_IN_BITS == 64
, testCase "64 bit Text" $ do
hash ("hello world" :: Text) @?=
#if MIN_VERSION_text(2,0,0)
2589482369471999198
#else
-1955893671357159554
#endif
#endif
, F.testGroup "concatenation"
[ testCase "String" $ do
let lhs, rhs :: (String, String)
lhs = ("foo", "bar")
rhs = ("foobar", "")
when (hash lhs == hash rhs) $ do
assertFailure "Should have different hashes"
, testCase "Text" $ do
let lhs, rhs :: (Text, Text)
lhs = ("foo", "bar")
rhs = ("foobar", "")
when (hash lhs == hash rhs) $ do
assertFailure "Should have different hashes"
, testCase "Lazy Text" $ do
let lhs, rhs :: (TL.Text, TL.Text)
lhs = ("foo", "bar")
rhs = ("foobar", "")
when (hash lhs == hash rhs) $ do
assertFailure "Should have different hashes"
, testCase "ByteString" $ do
let lhs, rhs :: (ByteString, ByteString)
lhs = (BS8.pack "foo", BS8.pack "bar")
rhs = (BS8.pack "foobar", BS8.empty)
when (hash lhs == hash rhs) $ do
assertFailure "Should have different hashes"
, testCase "Lazy ByteString" $ do
let lhs, rhs :: (BSL.ByteString, BSL.ByteString)
lhs = (BSL8.pack "foo", BSL8.pack "bar")
rhs = (BSL8.pack "foobar", BSL.empty)
when (hash lhs == hash rhs) $ do
assertFailure "Should have different hashes"
]
]
where
nullaryCase :: Int -> SumOfNullary -> IO ()
nullaryCase n s = do
let salt = 42
let expected = salt `hashWithSalt` n `hashWithSalt` ()
let actual = hashWithSalt salt s
actual @?= expected
data SumOfNullary = S0 | S1 | S2 | S3 | S4 deriving (Eq, Generic)
instance Hashable SumOfNullary
data Nat = Z | S Nat deriving (Eq, Generic)
instance Hashable Nat
|