blob: 2a00c96ce043809d9c4df91ce3010ce8a04a4371 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
{-# LANGUAGE RecordWildCards #-}
module Network.BitTorrent.Tracker.RPC.HTTPSpec (spec) where
import Control.Monad
import Data.Default
import Data.List as L
import Test.Hspec
import Data.Torrent.Progress
import Network.BitTorrent.Tracker.Message as Message
import Network.BitTorrent.Tracker.RPC.HTTP
import Network.BitTorrent.Tracker.TestData
import Network.BitTorrent.Tracker.MessageSpec hiding (spec)
validateInfo :: AnnounceQuery -> AnnounceInfo -> Expectation
validateInfo _ (Message.Failure reason) = do
error $ "validateInfo: " ++ show reason
validateInfo AnnounceQuery {..} AnnounceInfo {..} = do
return ()
-- case respComplete <|> respIncomplete of
-- Nothing -> return ()
-- Just n -> n `shouldBe` L.length (getPeerList respPeers)
isUnrecognizedScheme :: RpcException -> Bool
isUnrecognizedScheme (RequestFailed _) = True
isUnrecognizedScheme _ = False
spec :: Spec
spec = parallel $ do
describe "Manager" $ do
describe "newManager" $ do
it "" $ pending
describe "closeManager" $ do
it "" $ pending
describe "withManager" $ do
it "" $ pending
describe "RPC" $ do
describe "announce" $ do
it "must fail on bad uri scheme" $ do
withManager def $ \ mgr -> do
q <- arbitrarySample
announce mgr "magnet://foo.bar" q
`shouldThrow` isUnrecognizedScheme
describe "scrape" $ do
it "must fail on bad uri scheme" $ do
withManager def $ \ mgr -> do
scrape mgr "magnet://foo.bar" []
`shouldThrow` isUnrecognizedScheme
forM_ (L.filter isHttpTracker trackers) $ \ TrackerEntry {..} ->
context trackerName $ do
describe "announce" $ do
if tryAnnounce
then do
it "have valid response" $ do
withManager def $ \ mgr -> do
-- q <- arbitrarySample
let ih = maybe def L.head hashList
let q = AnnounceQuery ih "-HS0003-203534.37420" 6000
(Progress 0 0 0) Nothing Nothing (Just Started)
info <- announce mgr trackerURI q
validateInfo q info
else do
it "should fail with RequestFailed" $ do
pending
describe "scrape" $ do
if tryScraping
then do
it "have valid response" $ do
withManager def $ \ mgr -> do
xs <- scrape mgr trackerURI [def]
L.length xs `shouldSatisfy` (>= 1)
else do
it "should fail with ScrapelessTracker" $ do
pending
|