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
|
{-# OPTIONS_GHC -XTemplateHaskell #-}
-- Copyright: (c) Magnus Therning, 2013
-- License: BSD3, found in the LICENSE file
module Codec.Binary.XxTest where
import Codec.TestUtils
import qualified Codec.Binary.Xx as Xx
import qualified Data.ByteString as BS
import qualified Data.ByteString.Char8 as BSC
import Data.Word (Word8)
import Test.Tasty
import Test.Tasty.TH
import Test.Tasty.HUnit
import Test.Tasty.QuickCheck
case_enc_foobar :: IO ()
case_enc_foobar = do
BS.empty @=? Xx.encode BS.empty
BSC.pack "NU" @=? Xx.encode (BSC.pack "f")
BSC.pack "Naw" @=? Xx.encode (BSC.pack "fo")
BSC.pack "Naxj" @=? Xx.encode (BSC.pack "foo")
BSC.pack "NaxjMU" @=? Xx.encode (BSC.pack "foob")
BSC.pack "NaxjMa2" @=? Xx.encode (BSC.pack "fooba")
BSC.pack "NaxjMa3m" @=? Xx.encode (BSC.pack "foobar")
case_dec_foobar :: IO ()
case_dec_foobar = do
Right BS.empty @=? Xx.decode BS.empty
Right (BSC.pack "f") @=? Xx.decode (BSC.pack "NU")
Right (BSC.pack "fo") @=? Xx.decode (BSC.pack "Naw")
Right (BSC.pack "foo") @=? Xx.decode (BSC.pack "Naxj")
Right (BSC.pack "foob") @=? Xx.decode (BSC.pack "NaxjMU")
Right (BSC.pack "fooba") @=? Xx.decode (BSC.pack "NaxjMa2")
Right (BSC.pack "foobar") @=? Xx.decode (BSC.pack "NaxjMa3m")
prop_encdec :: [Word8] -> Bool
prop_encdec ws = (BS.pack ws) == (fromRight $ Xx.decode $ Xx.encode $ BS.pack ws)
tests :: TestTree
tests = $(testGroupGenerator)
|