Suppress the orphan instance warning.
HTTP,
network-uri,
parsec,
- QuickCheck,
tasty,
tasty-hunit
executable functorrent
main-is: Main.hs
+ other-modules: TestInstances
other-extensions: OverloadedStrings
hs-source-dirs: src
- ghc-options: -Wall -fwarn-incomplete-patterns -optc-Os
+ ghc-options: -Wall -fwarn-incomplete-patterns -fno-warn-orphans -optc-Os
default-language: Haskell2010
build-depends: base,
base16-bytestring,
import Data.Map.Strict (Map, fromList, toList)
import Text.ParserCombinators.Parsec
import qualified Text.Parsec.ByteString as ParsecBS
-import Test.QuickCheck
data BVal = Bint Integer
| Bstr ByteString
| Bdict (Map String BVal)
deriving (Ord, Eq, Show)
-instance Arbitrary ByteString where
- arbitrary = pack <$> arbitrary
-
-instance Arbitrary BVal where
- arbitrary = sized bval
- where
- bval :: Int -> Gen BVal
- bval 0 = oneof [ Bint <$> arbitrary
- , Bstr <$> arbitrary]
- bval n = oneof [ Bint <$> arbitrary
- , Bstr <$> arbitrary
- , Blist <$> vectorOf n (bval (n `div` 4))
- , do keys <- vectorOf n arbitrary
- vals <- vectorOf n (bval (n `div` 4))
- return $ Bdict $ fromList $ zip keys vals ]
-
-- getters
bValToInteger :: BVal -> Maybe Integer
bValToInteger (Bint x) = Just x
--- /dev/null
+module FuncTorrent.TestInstances where
+
+import qualified Data.ByteString as B
+import Test.QuickCheck
+
+import Bencode
+
+instance Arbitrary B.ByteString where
+ arbitrary = B.pack <$> arbitrary
+
+instance Arbitrary BVal where
+ arbitrary = sized bval
+ where
+ bval :: Int -> Gen BVal
+ bval 0 = oneof [ Bint <$> arbitrary
+ , Bstr <$> arbitrary]
+ bval n = oneof [ Bint <$> arbitrary
+ , Bstr <$> arbitrary
+ , Blist <$> vectorOf n (bval (n `div` 4))
+ , do keys <- vectorOf n arbitrary
+ vals <- vectorOf n (bval (n `div` 4))
+ return $ Bdict $ fromList $ zip keys vals ]