packages feed

hashing-0.1.0.0: test/Spec.hs

{-# LANGUAGE PackageImports #-}
{-# LANGUAGE TemplateHaskell #-}

import qualified Data.ByteString.Lazy as LBS
import qualified Data.ByteString      as B
import           Data.ByteString.Internal
import           Test.QuickCheck
import           Test.QuickCheck.Monadic
import           Control.Monad
import "hashing" Crypto.Hash
import           Foreign.ForeignPtr
import           Foreign.Ptr

import qualified "cryptonite" Crypto.Hash as H

data BoxedBS = BoxedBS {
    unBoxedBS :: ByteString
  } deriving Show

instance Arbitrary BoxedBS where
  arbitrary = do
    g <- resize (2^10) (listOf arbitrary)
    return $! BoxedBS (B.pack g)

data BoxedLBS = BoxedLBS {
    unBoxedLBS :: LBS.ByteString
  } deriving Show

instance Arbitrary BoxedLBS where
  arbitrary = do
    g <- resize (2^10) (listOf arbitrary)
    return $! BoxedLBS (LBS.pack g)

prop_ByteStringPtrAlignedTo8Bytes :: BoxedBS -> Property
prop_ByteStringPtrAlignedTo8Bytes (BoxedBS (PS fptr _ _)) = monadicIO $ do
  t <-  run (withForeignPtr fptr $ \ptr ->
              return $! alignPtr ptr 8 == ptr)
  assert t

prop_SHA256HashLazyEqualsHashStrict (BoxedLBS lbs) = lhs == rhs
  where lhs = hashLazy lbs :: SHA256
        rhs = hashFinal . foldl hashUpdate hashInit . LBS.toChunks $ lbs

prop_SHA224HashLazyEqualsHashStrict (BoxedLBS lbs) = lhs == rhs
  where lhs = hashLazy lbs :: SHA224
        rhs = hashFinal . foldl hashUpdate hashInit . LBS.toChunks $ lbs

prop_MD5HashIsCorrect (BoxedLBS lbs) = show lhs == show rhs
  where lhs = hashLazy lbs :: MD5
        rhs = H.hashlazy lbs :: H.Digest H.MD5

prop_WhirlpoolHashIsCorrect (BoxedLBS lbs) = show lhs == show rhs
  where lhs = hashLazy lbs :: Whirlpool
        rhs = H.hashlazy lbs :: H.Digest H.Whirlpool

prop_SHA1HashIsCorrect (BoxedLBS lbs) = show lhs == show rhs
  where lhs = hashLazy lbs :: SHA1
        rhs = H.hashlazy lbs :: H.Digest H.SHA1

prop_SHA224HashIsCorrect (BoxedLBS lbs) = show lhs == show rhs
  where lhs = hashLazy lbs :: SHA224
        rhs = H.hashlazy lbs :: H.Digest H.SHA224

prop_SHA256HashIsCorrect (BoxedLBS lbs) = show lhs == show rhs
  where lhs = hashLazy lbs :: SHA256
        rhs = H.hashlazy lbs :: H.Digest H.SHA256

prop_SHA384HashIsCorrect (BoxedLBS lbs) = show lhs == show rhs
  where lhs = hashLazy lbs :: SHA384
        rhs = H.hashlazy lbs :: H.Digest H.SHA384

prop_SHA512HashIsCorrect (BoxedLBS lbs) = show lhs == show rhs
  where lhs = hashLazy lbs :: SHA512
        rhs = H.hashlazy lbs :: H.Digest H.SHA512

data BoxedBSUnaligned = BoxedBSUnaligned {
    unBoxedBSUnaligned :: ByteString
  } deriving Show

instance Arbitrary BoxedBSUnaligned where
  arbitrary = do
    g <- resize (2^10) (listOf arbitrary)
    i <- elements [1, 3, 5, 7, 9, 11, 13, 17]
    let bs = B.pack g
    j <- choose (1, min 1 (B.length bs - i))
    return $! BoxedBSUnaligned . B.take j . B.drop i $ bs

prop_SHA512HashUnalignedIsCorrect :: BoxedBSUnaligned -> Bool
prop_SHA512HashUnalignedIsCorrect (BoxedBSUnaligned bs) = show lhs == show rhs
  where lhs = hash bs :: SHA512
        rhs = H.hash bs :: H.Digest H.SHA512

return []
runTests = $quickCheckAll

main :: IO ()
main = void runTests