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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
|
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RankNTypes #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Network.HTTP.ReqSpec (spec) where
import Control.Exception
import Control.Monad (forM_)
import Control.Monad.Trans.Control
import Data.Aeson (ToJSON (..), Value (..), object, (.=))
import Data.Aeson qualified as A
import Data.Aeson.KeyMap qualified as Aeson.KeyMap
import Data.ByteString qualified as B
import Data.ByteString.Lazy qualified as BL
import Data.Functor.Identity (runIdentity)
import Data.Maybe (fromJust)
import Data.Proxy
import Data.Text (Text)
import Data.Text qualified as T
import Data.Text.Encoding qualified as T
import Data.Text.IO qualified as TIO
import Network.HTTP.Client qualified as L
import Network.HTTP.Client.MultipartFormData qualified as LM
import Network.HTTP.Req hiding (req)
import Network.HTTP.Req qualified as Req
import Network.HTTP.Types qualified as Y
import Test.Hspec
import Test.QuickCheck
spec :: Spec
spec = do
describe "exception throwing on non-2xx status codes" $
it "throws indeed for non-2xx" $
req GET (httpbin /: "foo") NoReqBody ignoreResponse mempty
`shouldThrow` selector404
describe "exception throwing on non-2xx status codes (Req monad)" $
it "throws indeed for non-2xx" $
asIO . runReq defaultHttpConfig $
liftBaseWith $ \run ->
run (req GET (httpbin /: "foo") NoReqBody ignoreResponse mempty)
`shouldThrow` selector404
describe "response check via httpConfigCheckResponse" $
context "if it's set to always throw" $
it "throws indeed" $
blindlyThrowing (req GET httpbin NoReqBody ignoreResponse mempty)
`shouldThrow` anyException
describe "isStatusCodeException" $
it "extracts non-2xx response" $
req GET (httpbin /: "foo") NoReqBody ignoreResponse mempty
`shouldThrow` selector404ByStatusCodeException
describe "receiving user-agent header back" $
it "works" $ do
r <-
req
GET
(httpbin /: "user-agent")
NoReqBody
jsonResponse
(header "user-agent" "Req")
responseBody r
`shouldBe` object
["user-agent" .= ("Req" :: Text)]
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
describe "receiving request headers back" $
it "works" $ do
r <-
req
GET
(httpbin /: "headers")
NoReqBody
jsonResponse
(header "Foo" "bar" <> header "Baz" "quux")
stripFunnyHeaders (responseBody r)
`shouldBe` object
[ "headers"
.= object
[ "Accept-Encoding" .= ("gzip" :: Text),
"Foo" .= ("bar" :: Text),
"Baz" .= ("quux" :: Text)
]
]
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
describe "receiving GET data back" $
it "works" $ do
r <- req GET (httpbin /: "get") NoReqBody jsonResponse mempty
(stripFunnyHeaders . stripOrigin) (responseBody r)
`shouldBe` object
[ "args" .= emptyObject,
"url" .= ("http://localhost:1234/get" :: Text),
"headers"
.= object
[ "Accept-Encoding" .= ("gzip" :: Text)
]
]
responseHeader r "Content-Type" `shouldBe` return "application/json"
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
describe "receiving POST JSON data back" $
it "works" $ do
let text = "foo" :: Text
reflected = reflectJSON text
r <- req POST (httpbin /: "post") (ReqBodyJson text) jsonResponse mempty
(stripFunnyHeaders . stripOrigin) (responseBody r)
`shouldBe` object
[ "args" .= emptyObject,
"json" .= text,
"data" .= reflected,
"url" .= ("http://localhost:1234/post" :: Text),
"headers"
.= object
[ "Content-Type" .= ("application/json; charset=utf-8" :: Text),
"Accept-Encoding" .= ("gzip" :: Text),
"Content-Length" .= show (T.length reflected)
],
"files" .= emptyObject,
"form" .= emptyObject
]
responseHeader r "Content-Type" `shouldBe` return "application/json"
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
describe "receiving POST data back (multipart form data)" $
it "works" $ do
body <-
reqBodyMultipart
[ LM.partBS "foo" "foo data!",
LM.partBS "bar" "bar data!"
]
r <- req POST (httpbin /: "post") body jsonResponse mempty
let contentType = fromJust (getRequestContentType body)
(stripFunnyHeaders . stripOrigin) (responseBody r)
`shouldBe` object
[ "args" .= emptyObject,
"json" .= Null,
"data" .= ("" :: Text),
"url" .= ("http://localhost:1234/post" :: Text),
"headers"
.= object
[ "Content-Type" .= T.decodeUtf8 contentType,
"Accept-Encoding" .= ("gzip" :: Text),
"Content-Length" .= ("242" :: Text)
],
"files" .= emptyObject,
"form"
.= object
[ "foo" .= ("foo data!" :: Text),
"bar" .= ("bar data!" :: Text)
]
]
responseHeader r "Content-Type" `shouldBe` return "application/json"
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
describe "receiving PATCHed file back" $
it "works" $ do
let file :: FilePath
file = "httpbin-data/robots.txt"
contents <- TIO.readFile file
r <- req PATCH (httpbin /: "patch") (ReqBodyFile file) jsonResponse mempty
(stripFunnyHeaders . stripOrigin) (responseBody r)
`shouldBe` object
[ "args" .= emptyObject,
"json" .= Null,
"data" .= contents,
"url" .= ("http://localhost:1234/patch" :: Text),
"headers"
.= object
[ "Accept-Encoding" .= ("gzip" :: Text),
"Content-Length" .= show (T.length contents)
],
"files" .= emptyObject,
"form" .= emptyObject
]
responseHeader r "Content-Type" `shouldBe` return "application/json"
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
describe "receiving PUT form URL-encoded data back" $
it "works" $ do
let params =
"foo" =: ("bar" :: Text)
<> "baz" =: (5 :: Int)
<> queryFlag "quux"
r <- req PUT (httpbin /: "put") (ReqBodyUrlEnc params) jsonResponse mempty
(stripFunnyHeaders . stripOrigin) (responseBody r)
`shouldBe` object
[ "args" .= emptyObject,
"json" .= Null,
"data" .= ("" :: Text),
"url" .= ("http://localhost:1234/put" :: Text),
"headers"
.= object
[ "Content-Type" .= ("application/x-www-form-urlencoded" :: Text),
"Accept-Encoding" .= ("gzip" :: Text),
"Content-Length" .= ("18" :: Text)
],
"files" .= emptyObject,
"form"
.= object
[ "foo" .= ("bar" :: Text),
"baz" .= ("5" :: Text),
"quux" .= ("" :: Text)
]
]
responseHeader r "Content-Type" `shouldBe` return "application/json"
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
-- TODO /delete
describe "receiving UTF-8 encoded Unicode data" $
it "works" $ do
r <-
req
GET
(httpbin /: "encoding" /: "utf8")
NoReqBody
bsResponse
mempty
utf8data <- B.readFile "httpbin-data/utf8.html"
responseBody r `shouldBe` utf8data
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
-- TODO /gzip
-- TODO /deflate
describe "retrying" $
it "retries as many times as specified" $ do
-- FIXME We no longer can count retries because all the functions
-- responsible for controlling retrying are pure now.
let status = 408 :: Int
r <-
prepareForShit $
req
GET
(httpbin /: "status" /~ status)
NoReqBody
ignoreResponse
mempty
responseStatusCode r `shouldBe` status
-- forM_ [101..102] checkStatusCode
forM_ [200 .. 208] checkStatusCode
-- forM_ [300..308] checkStatusCode
forM_ [400 .. 431] checkStatusCode
forM_ [500 .. 511] checkStatusCode
-- TODO /response-headers
-- TODO /redirect
describe "redirects" $
it "follows redirects" $ do
r <-
req
GET
(httpbin /: "redirect-to")
NoReqBody
ignoreResponse
("url" =: ("https://httpbin.org" :: Text))
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
-- TODO /relative-redicet
-- TODO /absolute-redirect
-- TODO /cookies
describe "basicAuth" $ do
let user, password :: Text
user = "Scooby"
password = "Doo"
context "when we do not send appropriate basic auth data" $
it "fails with 401" $ do
r <-
prepareForShit $
req
GET
(httpbin /: "basic-auth" /~ user /~ password)
NoReqBody
ignoreResponse
mempty
responseStatusCode r `shouldBe` 401
responseStatusMessage r `shouldBe` "UNAUTHORIZED"
context "when we provide appropriate basic auth data" $
it "succeeds" $ do
r <-
req
GET
(httpbin /: "basic-auth" /~ user /~ password)
NoReqBody
ignoreResponse
(basicAuthUnsafe (T.encodeUtf8 user) (T.encodeUtf8 password))
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
-- TODO /hidden-basic-auth
-- TODO /digest-auth
-- TODO /stream
-- TODO /delay
-- TODO /drip
-- TODO /range
-- TODO /html
describe "robots.txt" $
it "works" $ do
r <- req GET (httpbin /: "robots.txt") NoReqBody bsResponse mempty
robots <- B.readFile "httpbin-data/robots.txt"
responseBody r `shouldBe` robots
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
-- TODO /deny
-- TODO /cache
describe "getting random bytes" $ do
it "works" $
property $ \n' -> do
let n :: Word
n = getSmall n'
r <-
req
GET
(httpbin /: "bytes" /~ n)
NoReqBody
lbsResponse
mempty
responseBody r `shouldSatisfy` ((== n) . fromIntegral . BL.length)
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
context "when we try to interpret 1000 random bytes as JSON" $
it "throws correct exception" $ do
let selector :: HttpException -> Bool
selector (JsonHttpException _) = True
selector _ = False
n :: Int
n = 1000
req
GET
(httpbin /: "bytes" /~ n)
NoReqBody
(Proxy :: Proxy (JsonResponse Value))
mempty
`shouldThrow` selector
describe "streaming random bytes" $
it "works" $
property $ \n' -> do
let n :: Word
n = getSmall n'
r <-
req
GET
(httpbin /: "stream-bytes" /~ n)
NoReqBody
bsResponse
mempty
responseBody r `shouldSatisfy` ((== n) . fromIntegral . B.length)
responseStatusCode r `shouldBe` 200
responseStatusMessage r `shouldBe` "OK"
-- TODO /links
-- TODO /image
-- TODO /image/png
-- TODO /image/jpeg
-- TODO /image/webp
-- TODO /image/svg
-- TODO /forms/post
-- TODO /xml
----------------------------------------------------------------------------
-- Instances
instance MonadHttp IO where
handleHttpException = throwIO
----------------------------------------------------------------------------
-- Helpers
-- | Run a request with such settings that it does not signal errors.
prepareForShit :: Req a -> IO a
prepareForShit = runReq defaultHttpConfig {httpConfigCheckResponse = noNoise}
where
noNoise _ _ _ = Nothing
-- | Run a request with such settings that it throws on any response.
blindlyThrowing :: Req a -> IO a
blindlyThrowing = runReq defaultHttpConfig {httpConfigCheckResponse = doit}
where
doit _ _ = error "Oops!"
-- | 'Url' representing <https://httpbin.org>.
httpbin :: Url 'Http
httpbin = http "localhost"
req ::
( MonadHttp m,
HttpMethod method,
HttpBody body,
HttpResponse response,
HttpBodyAllowed (AllowsBody method) (ProvidesBody body)
) =>
method ->
Url scheme ->
body ->
Proxy response ->
Option scheme ->
m response
req method url body responseProxy options =
Req.req method url body responseProxy (options <> defaultOptions)
-- | Options to apply by default.
defaultOptions :: Option scheme
defaultOptions = port 1234
-- | Remove “origin” field from JSON value. Origin may change, we don't want
-- to depend on that.
stripOrigin :: Value -> Value
stripOrigin (Object m) = Object (Aeson.KeyMap.delete "origin" m)
stripOrigin value = value
-- | Remove funny headers that might break the tests.
stripFunnyHeaders :: Value -> Value
stripFunnyHeaders = \case
Object m ->
Object
( runIdentity
( Aeson.KeyMap.alterF
(pure . fmap stripFunnyHeaders')
"headers"
m
)
)
value -> value
-- | Similar to 'stripFunnyHeaders', but acts directly on the argument
-- without trying to access its "headers" field.
stripFunnyHeaders' :: Value -> Value
stripFunnyHeaders' = \case
Object p ->
Object $
Aeson.KeyMap.filterWithKey
(\k _ -> k `elem` whitelistedHeaders)
p
value -> value
where
whitelistedHeaders =
[ "Content-Type",
"Accept-Encoding",
"Content-Length",
"Foo",
"Baz"
]
-- | This is a complete test case that makes use of <https://httpbin.org> to
-- get various response status codes.
checkStatusCode :: Int -> SpecWith ()
checkStatusCode code =
describe ("receiving status code " ++ show code) $
it "works" $ do
r <-
prepareForShit $
req
GET
(httpbin /: "status" /~ code)
NoReqBody
ignoreResponse
mempty
responseStatusCode r `shouldBe` code
-- | Exception selector that selects only 404 “Not found” exceptions.
selector404 :: HttpException -> Bool
selector404
( VanillaHttpException
( L.HttpExceptionRequest
_
(L.StatusCodeException response chunk)
)
) =
L.responseStatus response == Y.status404 && not (B.null chunk)
selector404 _ = False
-- | Same as 'selector404' except that it uses 'isStatusCodeException'.
selector404ByStatusCodeException :: HttpException -> Bool
selector404ByStatusCodeException e =
case isStatusCodeException e of
Nothing -> False
Just r -> responseStatusCode r == 404
-- | The empty JSON 'Object'.
emptyObject :: Value
emptyObject = Object Aeson.KeyMap.empty
-- | Get a rendered JSON value as 'Text'.
reflectJSON :: (ToJSON a) => a -> Text
reflectJSON = T.decodeUtf8 . BL.toStrict . A.encode
-- | Clarify to the type checker that the inner computation is in the 'IO'
-- monad.
asIO :: IO a -> IO a
asIO = id
|