@@ -111,14 +111,14 @@ This is the body of the next part\r
111
111
let assert Ok ( MultipartBody ( body , False , rest ) ) = case return {
112
112
MoreRequiredForBody ( chunk , continue ) -> {
113
113
let assert Ok ( MultipartBody ( body , done , remaining ) ) = continue ( after )
114
- Ok ( MultipartBody ( chunk <> body , done , remaining ) )
114
+ Ok ( MultipartBody ( bit_string . append ( chunk , body ) , done , remaining ) )
115
115
}
116
116
MultipartBody ( body , done , remaining ) ->
117
117
Ok ( MultipartBody ( body , done , bit_string . append ( remaining , after ) ) )
118
118
}
119
119
120
120
body
121
- |> should . equal ( "This is the body of the message." )
121
+ |> should . equal ( << "This is the body of the message." : utf8 >> )
122
122
rest
123
123
|> should . equal ( <<
124
124
"--frontier\r
@@ -172,7 +172,9 @@ Ym9keSBvZiB0aGUgbWVzc2FnZS48L3A+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==\r
172
172
let assert Ok ( MultipartBody ( body , False , input ) ) =
173
173
http . parse_multipart_body ( input , "frontier" )
174
174
body
175
- |> should . equal ( "This is a message with multiple parts in MIME format." )
175
+ |> should . equal ( <<
176
+ "This is a message with multiple parts in MIME format." : utf8 ,
177
+ >> )
176
178
177
179
let assert Ok ( MultipartHeaders ( headers , input ) ) =
178
180
http . parse_multipart_headers ( input , "frontier" )
@@ -182,7 +184,7 @@ Ym9keSBvZiB0aGUgbWVzc2FnZS48L3A+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==\r
182
184
let assert Ok ( MultipartBody ( body , False , input ) ) =
183
185
http . parse_multipart_body ( input , "frontier" )
184
186
body
185
- |> should . equal ( "This is the body of the message." )
187
+ |> should . equal ( << "This is the body of the message." : utf8 >> )
186
188
187
189
let assert Ok ( MultipartHeaders ( headers , input ) ) =
188
190
http . parse_multipart_headers ( input , "frontier" )
@@ -195,10 +197,10 @@ Ym9keSBvZiB0aGUgbWVzc2FnZS48L3A+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==\r
195
197
let assert Ok ( MultipartBody ( body , True , rest ) ) =
196
198
http . parse_multipart_body ( input , "frontier" )
197
199
body
198
- |> should . equal (
200
+ |> should . equal ( <<
199
201
"PGh0bWw+CiAgPGhlYWQ+CiAgPC9oZWFkPgogIDxib2R5PgogICAgPHA+VGhpcyBpcyB0aGUg\r
200
- Ym9keSBvZiB0aGUgbWVzc2FnZS48L3A+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==" ,
201
- )
202
+ Ym9keSBvZiB0aGUgbWVzc2FnZS48L3A+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==" : utf8 ,
203
+ >> )
202
204
rest
203
205
|> should . equal ( << >> )
204
206
}
@@ -236,7 +238,7 @@ Content-Transfer-Encoding: binary\r
236
238
let assert Ok ( MultipartBody ( body , False , input ) ) =
237
239
http . parse_multipart_body ( input , "AaB03x" )
238
240
body
239
- |> should . equal ( "Larry" )
241
+ |> should . equal ( << "Larry" : utf8 >> )
240
242
241
243
let assert Ok ( MultipartHeaders ( headers , input ) ) =
242
244
http . parse_multipart_headers ( input , "AaB03x" )
@@ -250,7 +252,7 @@ Content-Transfer-Encoding: binary\r
250
252
let assert Ok ( MultipartBody ( body , False , input ) ) =
251
253
http . parse_multipart_body ( input , "BbC04y" )
252
254
body
253
- |> should . equal ( "" )
255
+ |> should . equal ( << "" : utf8 >> )
254
256
255
257
let assert Ok ( MultipartHeaders ( headers , input ) ) =
256
258
http . parse_multipart_headers ( input , "BbC04y" )
@@ -263,7 +265,7 @@ Content-Transfer-Encoding: binary\r
263
265
let assert Ok ( MultipartBody ( body , False , input ) ) =
264
266
http . parse_multipart_body ( input , "BbC04y" )
265
267
body
266
- |> should . equal ( "... contents of file1.txt ..." )
268
+ |> should . equal ( << "... contents of file1.txt ..." : utf8 >> )
267
269
268
270
let assert Ok ( MultipartHeaders ( headers , input ) ) =
269
271
http . parse_multipart_headers ( input , "BbC04y" )
@@ -277,12 +279,12 @@ Content-Transfer-Encoding: binary\r
277
279
let assert Ok ( MultipartBody ( body , True , input ) ) =
278
280
http . parse_multipart_body ( input , "BbC04y" )
279
281
body
280
- |> should . equal ( "...contents of file2.gif..." )
282
+ |> should . equal ( << "...contents of file2.gif..." : utf8 >> )
281
283
282
284
let assert Ok ( MultipartBody ( body , True , input ) ) =
283
285
http . parse_multipart_body ( input , "AaB03x" )
284
286
body
285
- |> should . equal ( "" )
287
+ |> should . equal ( << >> )
286
288
input
287
289
|> should . equal ( << >> )
288
290
}
@@ -301,7 +303,7 @@ This is the epilogue. Here it includes leading CRLF":utf8,
301
303
let assert Ok ( MultipartBody ( body , False , input ) ) =
302
304
http . parse_multipart_body ( input , "boundary" )
303
305
body
304
- |> should . equal ( "This is the preamble." )
306
+ |> should . equal ( << "This is the preamble." : utf8 >> )
305
307
306
308
let assert Ok ( MultipartHeaders ( headers , input ) ) =
307
309
http . parse_multipart_headers ( input , "boundary" )
@@ -311,7 +313,7 @@ This is the epilogue. Here it includes leading CRLF":utf8,
311
313
let assert Ok ( MultipartBody ( body , True , input ) ) =
312
314
http . parse_multipart_body ( input , "boundary" )
313
315
body
314
- |> should . equal ( "This is the body of the message." )
316
+ |> should . equal ( << "This is the body of the message." : utf8 >> )
315
317
316
318
input
317
319
|> should . equal ( <<
@@ -333,7 +335,7 @@ This is the body of the message.\r
333
335
let assert Ok ( MultipartBody ( body , False , input ) ) =
334
336
http . parse_multipart_body ( input , "boundary" )
335
337
body
336
- |> should . equal ( "This is the preamble." )
338
+ |> should . equal ( << "This is the preamble." : utf8 >> )
337
339
338
340
let assert Ok ( MultipartHeaders ( headers , input ) ) =
339
341
http . parse_multipart_headers ( input , "boundary" )
@@ -343,7 +345,7 @@ This is the body of the message.\r
343
345
let assert Ok ( MultipartBody ( body , True , input ) ) =
344
346
http . parse_multipart_body ( input , "boundary" )
345
347
body
346
- |> should . equal ( "This is the body of the message." )
348
+ |> should . equal ( << "This is the body of the message." : utf8 >> )
347
349
348
350
input
349
351
|> should . equal ( << "\r \n " : utf8 >> )
@@ -373,12 +375,12 @@ This is the epilogue. It is also to be ignored.":utf8,
373
375
let assert Ok ( MultipartBody ( body , False , input ) ) =
374
376
http . parse_multipart_body ( input , "simple boundary" )
375
377
body
376
- |> should . equal (
378
+ |> should . equal ( <<
377
379
"This is the preamble. It is to be ignored, though it\r
378
380
is a handy place for composition agents to include an\r
379
381
explanatory note to non-MIME conformant readers.\r
380
- " ,
381
- )
382
+ " : utf8 ,
383
+ >> )
382
384
383
385
let assert Ok ( MultipartHeaders ( headers , input ) ) =
384
386
http . parse_multipart_headers ( input , "simple boundary" )
@@ -388,10 +390,10 @@ explanatory note to non-MIME conformant readers.\r
388
390
let assert Ok ( MultipartBody ( body , False , input ) ) =
389
391
http . parse_multipart_body ( input , "simple boundary" )
390
392
body
391
- |> should . equal (
393
+ |> should . equal ( <<
392
394
"This is implicitly typed plain US-ASCII text.\r
393
- It does NOT end with a linebreak." ,
394
- )
395
+ It does NOT end with a linebreak." : utf8 ,
396
+ >> )
395
397
396
398
let assert Ok ( MultipartHeaders ( headers , input ) ) =
397
399
http . parse_multipart_headers ( input , "simple boundary" )
@@ -401,11 +403,11 @@ It does NOT end with a linebreak.",
401
403
let assert Ok ( MultipartBody ( body , True , input ) ) =
402
404
http . parse_multipart_body ( input , "simple boundary" )
403
405
body
404
- |> should . equal (
406
+ |> should . equal ( <<
405
407
"This is explicitly typed plain US-ASCII text.\r
406
408
It DOES end with a linebreak.\r
407
- " ,
408
- )
409
+ " : utf8 ,
410
+ >> )
409
411
410
412
input
411
413
|> should . equal ( <<
0 commit comments