@@ -79,19 +79,20 @@ import Control.Monad.State (StateT)
79
79
import Control.Monad.Trans.Maybe (MaybeT )
80
80
import Control.Monad.Trans.Resource (ResourceT )
81
81
import Control.Monad.Validate (ValidateT )
82
- import Data.Aeson (FromJSON , eitherDecode )
82
+ import Data.Aeson (FromJSON )
83
83
import Data.BCP47 (BCP47 )
84
84
import Data.BCP47 qualified as BCP47
85
85
import Data.ByteString (ByteString )
86
86
import Data.ByteString qualified as BS
87
87
import Data.ByteString.Lazy qualified as BSL
88
88
import Data.CaseInsensitive (CI )
89
- import Data.Csv ( FromNamedRecord , decodeByName )
89
+ import Data.Csv qualified as CSV
90
90
import Data.Text qualified as T
91
91
import Data.Vector qualified as V
92
92
import Freckle.App.Test (expectationFailure )
93
93
import Network.HTTP.Types.Header (hAccept , hAcceptLanguage , hContentType )
94
94
import Network.Wai.Test (SResponse (.. ))
95
+ import Test.HUnit qualified as HUnit
95
96
import Web.Cookie (SetCookie )
96
97
import Yesod.Core (RedirectUrl , Yesod )
97
98
import Yesod.Test
@@ -111,6 +112,7 @@ import Yesod.Test
111
112
, withResponse
112
113
)
113
114
import Yesod.Test qualified
115
+ import Yesod.Test.Internal (getBodyTextPreview )
114
116
115
117
class (MonadIO m , Yesod site ) => MonadYesodExample site m | m -> site where
116
118
liftYesodExample :: YesodExample site a -> m a
@@ -161,18 +163,31 @@ testSetCookie = liftYesodExample . Yesod.Test.testSetCookie
161
163
-- | Get the body of the most recent response and decode it as JSON
162
164
getJsonBody
163
165
:: forall a m site . (MonadYesodExample site m , FromJSON a , HasCallStack ) => m a
164
- getJsonBody = either err pure . eitherDecode =<< getRawBody
165
- where
166
- err e = expectationFailure $ " Error decoding JSON response body: " <> e
166
+ getJsonBody = liftYesodExample Yesod.Test. requireJSONResponse
167
167
168
168
-- | Get the body of the most recent response and decode it as CSV
169
169
getCsvBody
170
170
:: forall a m site
171
- . (MonadYesodExample site m , FromNamedRecord a , HasCallStack )
171
+ . (MonadYesodExample site m , CSV. FromNamedRecord a , HasCallStack )
172
172
=> m [a ]
173
- getCsvBody = either err (pure . V. toList . snd ) . decodeByName =<< getRawBody
173
+ getCsvBody =
174
+ liftYesodExample $
175
+ withResponse $ \ (SResponse _status _headers body) ->
176
+ -- todo - check the response header first
177
+ case fmap (V. toList . snd ) (CSV. decodeByName body) of
178
+ Left err ->
179
+ failure $
180
+ T. concat
181
+ [ " Failed to parse CSV response; error: "
182
+ , T. pack err
183
+ , " CSV: "
184
+ , getBodyTextPreview body
185
+ ]
186
+ Right v -> pure v
174
187
where
175
- err e = expectationFailure $ " Error decoding CSV response body: " <> e
188
+ failure reason = do
189
+ liftIO $ HUnit. assertFailure $ T. unpack reason
190
+ error " "
176
191
177
192
-- | Get the body of the most recent response as a byte string
178
193
getRawBody
0 commit comments