summaryrefslogtreecommitdiff
path: root/tests/Network
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2014-02-04 18:16:14 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2014-02-04 18:16:14 +0400
commit24df88dd3e63024155d86ac3231ca2abbba3fc86 (patch)
tree562dc7b9c1833f69590016ccdf1d0283b55c5240 /tests/Network
parenteaf426da786acf925a1786938c5ae2b1c9230a07 (diff)
Update tests
Diffstat (limited to 'tests/Network')
-rw-r--r--tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs12
-rw-r--r--tests/Network/BitTorrent/Tracker/RPC/UDPSpec.hs10
-rw-r--r--tests/Network/BitTorrent/Tracker/RPCSpec.hs21
3 files changed, 29 insertions, 14 deletions
diff --git a/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs b/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
index eb549516..81c4fae0 100644
--- a/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
+++ b/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
@@ -24,11 +24,13 @@ spec = do
24 context (show uri) $ do 24 context (show uri) $ do
25 describe "announce" $ do 25 describe "announce" $ do
26 it "have valid response" $ do 26 it "have valid response" $ do
27 q <- arbitrarySample 27 withManager def $ \ mgr -> do
28 info <- runResourceT $ connect uri >>= announce q 28 q <- arbitrarySample
29 validateInfo q info 29 info <- runResourceT $ announce mgr uri q
30 validateInfo q info
30 31
31 describe "scrape" $ do 32 describe "scrape" $ do
32 it "have valid response" $ do 33 it "have valid response" $ do
33 xs <- runResourceT $ connect uri >>= scrape [def] 34 withManager def $ \ mgr -> do
34 L.length xs `shouldSatisfy` (>= 1) 35 xs <- runResourceT $ scrape mgr uri [def]
36 L.length xs `shouldSatisfy` (>= 1)
diff --git a/tests/Network/BitTorrent/Tracker/RPC/UDPSpec.hs b/tests/Network/BitTorrent/Tracker/RPC/UDPSpec.hs
index e46f15b6..f3dcec88 100644
--- a/tests/Network/BitTorrent/Tracker/RPC/UDPSpec.hs
+++ b/tests/Network/BitTorrent/Tracker/RPC/UDPSpec.hs
@@ -24,10 +24,12 @@ spec = do
24 context (show uri) $ do 24 context (show uri) $ do
25 describe "announce" $ do 25 describe "announce" $ do
26 it "have valid response" $ do 26 it "have valid response" $ do
27 q <- arbitrarySample 27 withManager def $ \ mgr -> do
28 connect uri >>= announce q >>= validateInfo q 28 q <- arbitrarySample
29 announce mgr uri q >>= validateInfo q
29 30
30 describe "scrape" $ do 31 describe "scrape" $ do
31 it "have valid response" $ do 32 it "have valid response" $ do
32 xs <- connect uri >>= scrape [def] 33 withManager def $ \ mgr -> do
33 L.length xs `shouldSatisfy` (>= 1) 34 xs <- scrape mgr uri [def]
35 L.length xs `shouldSatisfy` (>= 1)
diff --git a/tests/Network/BitTorrent/Tracker/RPCSpec.hs b/tests/Network/BitTorrent/Tracker/RPCSpec.hs
index 6bc72e86..340754d3 100644
--- a/tests/Network/BitTorrent/Tracker/RPCSpec.hs
+++ b/tests/Network/BitTorrent/Tracker/RPCSpec.hs
@@ -1,9 +1,11 @@
1module Network.BitTorrent.Tracker.RPCSpec (spec) where 1module Network.BitTorrent.Tracker.RPCSpec (spec) where
2import Control.Applicative
2import Control.Monad 3import Control.Monad
3import Data.Default 4import Data.Default
4import Data.List as L 5import Data.List as L
5import Network.URI 6import Network.URI
6import Test.Hspec 7import Test.Hspec
8import Test.QuickCheck
7 9
8import Network.BitTorrent.Tracker.MessageSpec hiding (spec) 10import Network.BitTorrent.Tracker.MessageSpec hiding (spec)
9import Network.BitTorrent.Tracker.RPC.HTTPSpec as HTTP hiding (spec) 11import Network.BitTorrent.Tracker.RPC.HTTPSpec as HTTP hiding (spec)
@@ -13,17 +15,26 @@ import Network.BitTorrent.Tracker.RPC as RPC
13uris :: [URI] 15uris :: [URI]
14uris = UDP.trackerURIs ++ HTTP.trackerURIs 16uris = UDP.trackerURIs ++ HTTP.trackerURIs
15 17
18pinfo :: PeerInfo
19pinfo = PeerInfo "-HS0003-203534.37422" 6000 Nothing
20
21instance Arbitrary SAnnounceQuery where
22 arbitrary = SAnnounceQuery <$> arbitrary <*> arbitrary
23 <*> arbitrary <*> arbitrary
24
16spec :: Spec 25spec :: Spec
17spec = do 26spec = do
18 forM_ uris $ \ uri -> 27 forM_ uris $ \ uri ->
19 context (show uri) $ do 28 context (show uri) $ do
20 describe "announce" $ do 29 describe "announce" $ do
21 it "have valid response" $ do 30 it "have valid response" $ do
22 q <- arbitrarySample 31 withManager def pinfo $ \ mgr -> do
23 info <- connect uri >>= announce q 32 q <- arbitrarySample
24 validateInfo q info 33 info <- announce mgr uri q
34 return ()
25 35
26 describe "scrape" $ do 36 describe "scrape" $ do
27 it "have valid response" $ do 37 it "have valid response" $ do
28 xs <- connect uri >>= scrape [def] 38 withManager def pinfo $ \ mgr -> do
29 L.length xs `shouldSatisfy` (>= 1) 39 xs <- scrape mgr uri [def]
40 L.length xs `shouldSatisfy` (>= 1)