blob: f3dcec886a2bdb783309d8aa307f640441859f93 (
plain)
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
|
{-# LANGUAGE RecordWildCards #-}
module Network.BitTorrent.Tracker.RPC.UDPSpec (spec, trackerURIs) where
import Control.Monad
import Data.Default
import Data.List as L
import Data.Maybe
import Network.URI
import Test.Hspec
import Network.BitTorrent.Tracker.MessageSpec hiding (spec)
import Network.BitTorrent.Tracker.RPC.UDP
trackerURIs :: [URI]
trackerURIs =
[ fromJust $ parseURI "udp://tracker.openbittorrent.com:80/announce"
, fromJust $ parseURI "udp://tracker.publicbt.com:80/announce"
]
spec :: Spec
spec = do
forM_ trackerURIs $ \ uri ->
context (show uri) $ do
describe "announce" $ do
it "have valid response" $ do
withManager def $ \ mgr -> do
q <- arbitrarySample
announce mgr uri q >>= validateInfo q
describe "scrape" $ do
it "have valid response" $ do
withManager def $ \ mgr -> do
xs <- scrape mgr uri [def]
L.length xs `shouldSatisfy` (>= 1)
|