I want to write little integration tests for my Snap web handlers but I am stuck. Here is the scenario. I have a Snap web handler that (run-of-the-mill style) CRUDs up a type and it looks something like this:
create :: AppHandler ()
create = method POST $ do
lastName <- decodeUtf8 . fromJust <$> getParam "lastName"
firstName <- decodeUtf8 . fromJust <$> getParam "firstName"
createPerson $ Person firstName lastName
modifyResponse (setResponseCode 204)
The Snap.Test module has some things to help build up a request and I use it to make a request for my handler:
createOwnerReq :: RequestBuilder IO ()
createOwnerReq = postUrlEncoded "host/person/create" $
fromList [ ("firstName", ["Greg-Shaw"])
, ("lastName", ["Snoy'Sullivan"])
]
Here's the problem, I want to make a TestUnit TestCase for this handler so I need the run the handler on the createOwnerReq request. The module Snap.Test provides:
runHandler :: MonadIO a => RequestBuilder m () -> Snap a -> m Response
so
... do
resp <- runHandler createOwnerReq ???
But wait!!! My request handler is of type AppHandler () but runHandler requires a Handler of type Snap a.
How do I lift my AppHandler type into the Snap monad? Help please, this is kind of trippin' me out.
AppHandlera type you defined? I've looked around online, but have not seen it anywhere else. – Tikhon Jelvis Jan 11 '12 at 4:07type AppHandler = Handler App App...its a synonym that is shown in the snap tutorial on the Snap web site. TypeHandler b vis an instance ofMonadSnap. – ExternalReality Jan 11 '12 at 4:14return create: the type system might handle it for you... Anyway, can you post a full script so we can run it locally and debug it, please? – lbolla Jan 11 '12 at 11:02return createdid the trick. I am not sure I understand why however.returnis of typea -> m a. I'm at a loss. Where do I look to brush up on this transformer stuff. I've wen't over Monad Transformers Step by Step a few time now. Better have at it again. – ExternalReality Jan 11 '12 at 23:42