2018-07-06 00:36:37 +02:00
|
|
|
# Inspecting, debugging, simulating clients and more
|
2018-07-05 23:21:17 +02:00
|
|
|
|
2018-07-06 00:36:37 +02:00
|
|
|
or simply put: _a practical introduction to `Servant.Client.Free`_.
|
|
|
|
|
2019-09-05 08:47:14 +02:00
|
|
|
Someone asked on IRC how one could access the intermediate Requests (resp. Responses)
|
2018-07-06 00:36:37 +02:00
|
|
|
produced (resp. received) by client functions derived using servant-client.
|
|
|
|
My response to such inquiries is: to extend `servant-client` in an ad-hoc way (e.g for testing or debugging
|
|
|
|
purposes), use `Servant.Client.Free`. This recipe shows how.
|
2018-07-05 23:21:17 +02:00
|
|
|
|
|
|
|
First the module header, but this time We'll comment the imports.
|
|
|
|
|
|
|
|
```haskell
|
|
|
|
{-# LANGUAGE DataKinds #-}
|
|
|
|
{-# LANGUAGE TypeOperators #-}
|
|
|
|
module Main (main) where
|
|
|
|
```
|
|
|
|
|
|
|
|
We will primarily use `Servant.Client.Free`, it doesn't re-export anything
|
|
|
|
from `free` package, so we need to import it as well.
|
|
|
|
|
|
|
|
```haskell
|
|
|
|
import Control.Monad.Free
|
|
|
|
import Servant.Client.Free
|
|
|
|
```
|
|
|
|
|
|
|
|
Also we'll use `servant-client` internals, which uses `http-client`,
|
|
|
|
so let's import them *qualified*
|
|
|
|
|
|
|
|
```haskell
|
|
|
|
import qualified Servant.Client.Internal.HttpClient as I
|
|
|
|
import qualified Network.HTTP.Client as HTTP
|
|
|
|
```
|
|
|
|
|
|
|
|
The rest of the imports are for a server we implement here for completeness.
|
|
|
|
|
|
|
|
```haskell
|
|
|
|
import Servant
|
|
|
|
import Network.Wai.Handler.Warp (run)
|
|
|
|
import System.Environment (getArgs)
|
|
|
|
```
|
|
|
|
|
|
|
|
## API & Main
|
|
|
|
|
|
|
|
We'll work with a very simple API:
|
|
|
|
|
|
|
|
```haskell
|
|
|
|
type API = "square" :> Capture "n" Int :> Get '[JSON] Int
|
|
|
|
|
|
|
|
api :: Proxy API
|
|
|
|
api = Proxy
|
|
|
|
```
|
|
|
|
|
2018-07-06 01:50:58 +02:00
|
|
|
Next we implement a `main`. If passed `"server"` it will run `server`, if passed
|
|
|
|
`"client"` it will run a `test` function (to be defined next). This should be
|
2018-07-06 00:36:37 +02:00
|
|
|
pretty straightforward:
|
2018-07-05 23:21:17 +02:00
|
|
|
|
|
|
|
```haskell
|
|
|
|
main :: IO ()
|
|
|
|
main = do
|
|
|
|
args <- getArgs
|
|
|
|
case args of
|
|
|
|
("server":_) -> do
|
|
|
|
putStrLn "Starting cookbook-using-free-client at http://localhost:8000"
|
|
|
|
run 8000 $ serve api $ \n -> return (n * n)
|
|
|
|
("client":_) ->
|
|
|
|
test
|
|
|
|
_ -> do
|
|
|
|
putStrLn "Try:"
|
|
|
|
putStrLn "cabal new-run cookbook-using-free-client server"
|
|
|
|
putStrLn "cabal new-run cookbook-using-free-client client"
|
|
|
|
```
|
|
|
|
|
|
|
|
## Test
|
|
|
|
|
2018-07-06 00:36:37 +02:00
|
|
|
In the client part, we will use a `Servant.Client.Free` client.
|
|
|
|
Because we have a single endpoint API, we'll get a single client function,
|
|
|
|
running in the `Free ClientF` (free) monad:
|
2018-07-05 23:21:17 +02:00
|
|
|
|
|
|
|
```haskell
|
2018-07-06 00:36:37 +02:00
|
|
|
getSquare :: Int -> Free ClientF Int
|
|
|
|
getSquare = client api
|
2018-07-05 23:21:17 +02:00
|
|
|
```
|
|
|
|
|
2018-07-06 00:36:37 +02:00
|
|
|
Such clients are "client functions without a backend", so to speak,
|
|
|
|
or where the backend has been abstracted out. To be more precise, `ClientF` is a functor that
|
|
|
|
precisely represents the operations servant-client-core needs from an http client backend.
|
|
|
|
So if we are to emulate one or augment what such a backend does, it will be by interpreting
|
|
|
|
all those operations, the way we want to. This also means we get access to the requests and
|
|
|
|
responses and can do anything we want with them, right when they are produced or consumed,
|
|
|
|
respectively.
|
|
|
|
|
|
|
|
Next, we can write our small test. We'll pass a value to `getSquare` and inspect
|
|
|
|
the `Free` structure. The first three possibilities are self-explanatory:
|
2018-07-05 23:21:17 +02:00
|
|
|
|
|
|
|
```haskell
|
|
|
|
test :: IO ()
|
2018-07-06 00:36:37 +02:00
|
|
|
test = case getSquare 42 of
|
2018-07-05 23:21:17 +02:00
|
|
|
Pure n ->
|
|
|
|
putStrLn $ "ERROR: got pure result: " ++ show n
|
|
|
|
Free (Throw err) ->
|
|
|
|
putStrLn $ "ERROR: got error right away: " ++ show err
|
|
|
|
```
|
|
|
|
|
|
|
|
We are interested in `RunRequest`, that's what client should block on:
|
|
|
|
|
|
|
|
```haskell
|
|
|
|
Free (RunRequest req k) -> do
|
|
|
|
```
|
|
|
|
|
|
|
|
Then we need to prepare the context, get HTTP (connection) `Manager`
|
|
|
|
and `BaseUrl`:
|
|
|
|
|
|
|
|
```haskell
|
|
|
|
burl <- parseBaseUrl "http://localhost:8000"
|
|
|
|
mgr <- HTTP.newManager HTTP.defaultManagerSettings
|
|
|
|
```
|
|
|
|
|
2018-07-06 00:38:22 +02:00
|
|
|
Now we can use `servant-client`'s internals to convert servant's `Request`
|
2018-07-05 23:21:17 +02:00
|
|
|
to http-client's `Request`, and we can inspect it:
|
|
|
|
|
|
|
|
```haskell
|
2019-09-05 08:47:14 +02:00
|
|
|
let req' = I.defaultMakeClientRequest burl req
|
2018-07-05 23:21:17 +02:00
|
|
|
putStrLn $ "Making request: " ++ show req'
|
|
|
|
```
|
|
|
|
|
2018-07-06 00:38:22 +02:00
|
|
|
`servant-client`'s request does a little more, but this is good enough for
|
|
|
|
our demo. We get back an http-client `Response` which we can also inspect.
|
2018-07-05 23:21:17 +02:00
|
|
|
|
|
|
|
```haskell
|
|
|
|
res' <- HTTP.httpLbs req' mgr
|
|
|
|
putStrLn $ "Got response: " ++ show res'
|
|
|
|
```
|
|
|
|
|
|
|
|
And we continue by turning http-client's `Response` into servant's `Response`,
|
|
|
|
and calling the continuation. We should get a `Pure` value.
|
|
|
|
|
|
|
|
```haskell
|
2019-02-06 11:12:56 +01:00
|
|
|
let res = I.clientResponseToResponse id res'
|
2019-09-05 08:47:14 +02:00
|
|
|
|
2018-07-05 23:21:17 +02:00
|
|
|
case k res of
|
|
|
|
Pure n ->
|
|
|
|
putStrLn $ "Expected 1764, got " ++ show n
|
2019-09-05 08:47:14 +02:00
|
|
|
_ ->
|
2020-06-06 06:43:51 +02:00
|
|
|
putStrLn "ERROR: didn't get a response"
|
2018-07-05 23:21:17 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
So that's it. Using `Free` we can evaluate servant clients step-by-step, and
|
2018-07-06 00:36:37 +02:00
|
|
|
validate that the client functions or the HTTP client backend does what we expect
|
|
|
|
(e.g by printing requests/responses on the fly). In fact, using `Servant.Client.Free`
|
|
|
|
is a little simpler than defining a custom `RunClient` instance, especially
|
|
|
|
for those cases where it is handy to have the full sequence of client calls
|
|
|
|
and responses available for us to inspect, since `RunClient` only gives us
|
|
|
|
access to one `Request` or `Response` at a time.
|
|
|
|
|
|
|
|
On the other hand, a "batch collection" of requests and/or responses can be achieved
|
2019-09-05 08:47:14 +02:00
|
|
|
with both free clients and a custom `RunClient` instance rather easily, for example
|
2018-07-06 00:36:37 +02:00
|
|
|
by using a `Writer [(Request, Response)]` monad.
|
|
|
|
|
|
|
|
Here is an example of running our small `test` against a running server:
|
2018-07-05 23:21:17 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
Making request: Request {
|
|
|
|
host = "localhost"
|
|
|
|
port = 8000
|
|
|
|
secure = False
|
|
|
|
requestHeaders = [("Accept","application/json;charset=utf-8,application/json")]
|
|
|
|
path = "/square/42"
|
|
|
|
queryString = ""
|
|
|
|
method = "GET"
|
|
|
|
proxy = Nothing
|
|
|
|
rawBody = False
|
|
|
|
redirectCount = 10
|
|
|
|
responseTimeout = ResponseTimeoutDefault
|
|
|
|
requestVersion = HTTP/1.1
|
|
|
|
}
|
|
|
|
|
|
|
|
Got response: Response
|
|
|
|
{ responseStatus = Status {statusCode = 200, statusMessage = "OK"}
|
|
|
|
, responseVersion = HTTP/1.1
|
|
|
|
, responseHeaders =
|
|
|
|
[ ("Transfer-Encoding","chunked")
|
|
|
|
, ("Date","Thu, 05 Jul 2018 21:12:41 GMT")
|
|
|
|
, ("Server","Warp/3.2.22")
|
|
|
|
, ("Content-Type","application/json;charset=utf-8")
|
|
|
|
]
|
|
|
|
, responseBody = "1764"
|
|
|
|
, responseCookieJar = CJ {expose = []}
|
|
|
|
, responseClose' = ResponseClose
|
|
|
|
}
|
|
|
|
|
|
|
|
Expected 1764, got 1764
|
|
|
|
```
|