2017-10-26 21:19:30 +00:00
|
|
|
module Test.HTTPure.ResponseSpec where
|
2017-05-25 19:12:29 +00:00
|
|
|
|
2017-07-18 05:31:46 +00:00
|
|
|
import Prelude
|
2017-05-25 19:12:29 +00:00
|
|
|
|
2018-07-08 23:16:48 +00:00
|
|
|
import Effect.Class as EffectClass
|
2017-07-10 10:17:13 +00:00
|
|
|
import Test.Spec as Spec
|
2017-05-25 19:12:29 +00:00
|
|
|
|
2017-09-26 06:08:07 +00:00
|
|
|
import HTTPure.Headers as Headers
|
2017-07-10 10:17:13 +00:00
|
|
|
import HTTPure.Response as Response
|
2017-05-25 19:12:29 +00:00
|
|
|
|
2017-10-26 21:19:30 +00:00
|
|
|
import Test.HTTPure.TestHelpers as TestHelpers
|
|
|
|
import Test.HTTPure.TestHelpers ((?=))
|
2017-07-14 06:28:57 +00:00
|
|
|
|
2017-10-26 21:19:30 +00:00
|
|
|
sendSpec :: TestHelpers.Test
|
2017-07-14 06:28:57 +00:00
|
|
|
sendSpec = Spec.describe "send" do
|
2017-07-19 18:59:55 +00:00
|
|
|
Spec.it "writes the headers" do
|
2018-07-08 23:16:48 +00:00
|
|
|
header <- EffectClass.liftEffect do
|
2017-10-26 21:19:30 +00:00
|
|
|
httpResponse <- TestHelpers.mockResponse
|
2017-09-26 06:08:07 +00:00
|
|
|
Response.send httpResponse mockResponse
|
2017-10-26 21:19:30 +00:00
|
|
|
pure $ TestHelpers.getResponseHeader "Test" httpResponse
|
2017-07-19 18:59:55 +00:00
|
|
|
header ?= "test"
|
2018-07-11 05:23:28 +00:00
|
|
|
Spec.it "sets the Content-Length header" do
|
|
|
|
header <- EffectClass.liftEffect do
|
|
|
|
httpResponse <- TestHelpers.mockResponse
|
|
|
|
Response.send httpResponse mockResponse
|
|
|
|
pure $ TestHelpers.getResponseHeader "Content-Length" httpResponse
|
|
|
|
header ?= "4"
|
2017-07-19 18:59:55 +00:00
|
|
|
Spec.it "writes the status" do
|
2018-07-08 23:16:48 +00:00
|
|
|
status <- EffectClass.liftEffect do
|
2017-10-26 21:19:30 +00:00
|
|
|
httpResponse <- TestHelpers.mockResponse
|
2017-09-26 06:08:07 +00:00
|
|
|
Response.send httpResponse mockResponse
|
2017-10-26 21:19:30 +00:00
|
|
|
pure $ TestHelpers.getResponseStatus httpResponse
|
2017-09-26 06:08:07 +00:00
|
|
|
status ?= 123
|
2017-07-19 18:59:55 +00:00
|
|
|
Spec.it "writes the body" do
|
2018-07-08 23:16:48 +00:00
|
|
|
body <- EffectClass.liftEffect do
|
2017-10-26 21:19:30 +00:00
|
|
|
httpResponse <- TestHelpers.mockResponse
|
2017-09-26 06:08:07 +00:00
|
|
|
Response.send httpResponse mockResponse
|
2017-10-26 21:19:30 +00:00
|
|
|
pure $ TestHelpers.getResponseBody httpResponse
|
2017-07-19 18:59:55 +00:00
|
|
|
body ?= "test"
|
2017-09-26 06:08:07 +00:00
|
|
|
where
|
2017-09-29 14:25:31 +00:00
|
|
|
mockHeaders = Headers.header "Test" "test"
|
2017-09-27 19:34:00 +00:00
|
|
|
mockResponse = { status: 123, headers: mockHeaders, body: "test" }
|
2017-09-26 06:08:07 +00:00
|
|
|
|
2017-10-26 21:19:30 +00:00
|
|
|
responseFunctionSpec :: TestHelpers.Test
|
2017-09-26 06:08:07 +00:00
|
|
|
responseFunctionSpec = Spec.describe "response" do
|
2017-09-29 14:49:46 +00:00
|
|
|
Spec.it "has the right status" do
|
|
|
|
resp <- Response.response 123 "test"
|
|
|
|
resp.status ?= 123
|
|
|
|
Spec.it "has empty headers" do
|
|
|
|
resp <- Response.response 123 "test"
|
|
|
|
resp.headers ?= Headers.empty
|
|
|
|
Spec.it "has the right body" do
|
|
|
|
resp <- Response.response 123 "test"
|
|
|
|
resp.body ?= "test"
|
|
|
|
|
2017-10-26 21:19:30 +00:00
|
|
|
response'Spec :: TestHelpers.Test
|
2017-09-29 14:49:46 +00:00
|
|
|
response'Spec = Spec.describe "response'" do
|
2017-09-26 06:08:07 +00:00
|
|
|
Spec.it "has the right status" do
|
|
|
|
resp <- mockResponse
|
2017-09-27 19:34:00 +00:00
|
|
|
resp.status ?= 123
|
2017-09-26 06:08:07 +00:00
|
|
|
Spec.it "has the right headers" do
|
|
|
|
resp <- mockResponse
|
2017-09-27 19:34:00 +00:00
|
|
|
resp.headers ?= mockHeaders
|
2017-09-26 06:08:07 +00:00
|
|
|
Spec.it "has the right body" do
|
|
|
|
resp <- mockResponse
|
2017-09-27 19:34:00 +00:00
|
|
|
resp.body ?= "test"
|
2017-09-26 06:08:07 +00:00
|
|
|
where
|
2017-09-29 14:25:31 +00:00
|
|
|
mockHeaders = Headers.header "Test" "test"
|
2017-09-29 14:49:46 +00:00
|
|
|
mockResponse = Response.response' 123 mockHeaders "test"
|
2017-09-26 06:08:07 +00:00
|
|
|
|
2017-10-26 21:19:30 +00:00
|
|
|
emptyResponseSpec :: TestHelpers.Test
|
2017-09-29 14:49:46 +00:00
|
|
|
emptyResponseSpec = Spec.describe "emptyResponse" do
|
|
|
|
Spec.it "has the right status" do
|
|
|
|
resp <- Response.emptyResponse 123
|
|
|
|
resp.status ?= 123
|
|
|
|
Spec.it "has empty headers" do
|
|
|
|
resp <- Response.emptyResponse 123
|
|
|
|
resp.headers ?= Headers.empty
|
|
|
|
Spec.it "has an empty body" do
|
|
|
|
resp <- Response.emptyResponse 123
|
|
|
|
resp.body ?= ""
|
|
|
|
|
2017-10-26 21:19:30 +00:00
|
|
|
emptyResponse'Spec :: TestHelpers.Test
|
2017-09-29 14:49:46 +00:00
|
|
|
emptyResponse'Spec = Spec.describe "emptyResponse'" do
|
2017-09-26 06:08:07 +00:00
|
|
|
Spec.it "has the right status" do
|
|
|
|
resp <- mockResponse
|
2017-09-27 19:34:00 +00:00
|
|
|
resp.status ?= 123
|
2017-09-26 06:08:07 +00:00
|
|
|
Spec.it "has the right headers" do
|
|
|
|
resp <- mockResponse
|
2017-09-27 19:34:00 +00:00
|
|
|
resp.headers ?= mockHeaders
|
2017-09-26 06:08:07 +00:00
|
|
|
Spec.it "has an empty body" do
|
|
|
|
resp <- mockResponse
|
2017-09-27 19:34:00 +00:00
|
|
|
resp.body ?= ""
|
2017-09-26 06:08:07 +00:00
|
|
|
where
|
2017-09-29 14:25:31 +00:00
|
|
|
mockHeaders = Headers.header "Test" "test"
|
2017-09-29 14:49:46 +00:00
|
|
|
mockResponse = Response.emptyResponse' 123 mockHeaders
|
2017-07-10 10:17:13 +00:00
|
|
|
|
2017-10-26 21:19:30 +00:00
|
|
|
responseSpec :: TestHelpers.Test
|
2017-07-14 06:28:57 +00:00
|
|
|
responseSpec = Spec.describe "Response" do
|
|
|
|
sendSpec
|
2017-09-26 06:08:07 +00:00
|
|
|
responseFunctionSpec
|
|
|
|
response'Spec
|
2017-09-29 14:49:46 +00:00
|
|
|
emptyResponseSpec
|
|
|
|
emptyResponse'Spec
|