Source file qcheck2_helpers.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
let qcheck_wrap ?verbose ?long ?rand =
List.map (QCheck_alcotest.to_alcotest ?verbose ?long ?rand)
let qcheck_wrap_lwt ?verbose ?long ?rand =
List.map (fun test ->
let name, speed, f =
QCheck_alcotest.to_alcotest ?verbose ?long ?rand test
in
(name, speed, fun arg -> Lwt.return (f arg)))
let qcheck_make_result ?count ?print ?pp_error ?check ~name
~(gen : 'a QCheck2.Gen.t) (f : 'a -> (bool, 'b) result) =
let check =
match check with
| Some check -> check
| None -> (
function
| Ok b -> b
| Error err -> (
match pp_error with
| Some pp_error ->
QCheck2.Test.fail_reportf "Test failed:@,%a" pp_error err
| None ->
QCheck2.Test.fail_reportf
"Test failed but no pretty printer was provided."))
in
QCheck2.Test.make ~name ?print ?count gen (fun x -> f x |> check)
let qcheck_make_lwt ?count ?print ~ ~name ~(gen : 'a QCheck2.Gen.t)
(f : 'a -> bool Lwt.t) =
QCheck2.Test.make ~name ?print ?count gen (fun x -> extract (f x))
let qcheck_make_result_lwt ?count ?print ?pp_error ?check ~ ~name
~(gen : 'a QCheck2.Gen.t) (f : 'a -> (bool, 'b) result Lwt.t) =
let check =
match check with
| Some check -> check
| None -> (
function
| Ok b -> b
| Error err -> (
match pp_error with
| Some pp_error ->
QCheck2.Test.fail_reportf "Test failed:@,%a" pp_error err
| None ->
QCheck2.Test.fail_reportf
"Test failed but no pretty printer was provided."))
in
QCheck2.Test.make ~name ?print ?count gen (fun x -> extract (f x) |> check)
let qcheck_eq ?pp ?cmp ?eq ?__LOC__ expected actual =
let pass =
match (eq, cmp) with
| Some eq, _ -> eq expected actual
| None, Some cmp -> cmp expected actual = 0
| None, None -> Stdlib.compare expected actual = 0
in
let loc = match __LOC__ with Some s -> s ^ "\n" | None -> "" in
if pass then true
else
match pp with
| None ->
QCheck2.Test.fail_reportf
"@[<h 0>%sValues are not equal, but no pretty printer was provided.@]"
loc
| Some pp ->
QCheck2.Test.fail_reportf
"@[<v 2>%sEquality check failed!@,expected:@,%a@,actual:@,%a@]"
loc
pp
expected
pp
actual
let qcheck_neq ?pp ?cmp ?eq left right =
let pass =
match (eq, cmp) with
| Some eq, _ -> eq left right
| None, Some cmp -> cmp left right = 0
| None, None -> Stdlib.compare left right = 0
in
if not pass then true
else
match pp with
| None ->
QCheck.Test.fail_reportf
"@[<h 0>Values are unexpectedly equal, but no pretty printer was \
provided.@]"
| Some pp ->
QCheck.Test.fail_reportf
"@[<v 2>Inequality check failed!@,left:@,%a@,right:@,%a@]"
pp
left
pp
right
let qcheck_eq_tests ~eq ~gen ~eq_name =
let reflexivity_test =
QCheck2.Test.make
~name:(Printf.sprintf "%s is reflexive: forall t, %s t t" eq_name eq_name)
gen
(fun t ->
if eq t t then true
else
QCheck2.Test.fail_reportf
"@[<v 2>[%s t t] should hold, but it doesn't!@,\
[t] is printed above if you provided a pretty printer in the \
generator@]"
eq_name)
in
let symmetry_test =
QCheck2.Test.make
~name:
(Printf.sprintf
"%s is symmetric: forall t1 t2, %s t1 t2 = %s t2 t1"
eq_name
eq_name
eq_name)
QCheck2.Gen.(pair gen gen)
(fun (t1, t2) ->
if Bool.equal (eq t1 t2) (eq t2 t1) then true
else
QCheck2.Test.fail_reportf
"@[<v 2>[%s t1 t2 = %s t2 t1] should hold, but it doesn't!@,\
[t1] and [t2] are printed above if you provided a pretty printer \
in the generator@]"
eq_name
eq_name)
in
[reflexivity_test; symmetry_test]
let qcheck_eq' ?pp ?cmp ?eq ~expected ~actual () =
qcheck_eq ?pp ?cmp ?eq expected actual
let qcheck_cond ?pp ~cond e () =
if cond e then true
else
match pp with
| None ->
QCheck.Test.fail_reportf
"@[<h 0>The condition check failed, but no pretty printer was \
provided.@]"
| Some pp ->
QCheck.Test.fail_reportf "@[<v 2>The condition check failed!@,%a@]" pp e
let intX_range_gen ~sub ~add ~gen ~shrink a b =
let gen a b st =
let range = sub b a in
let raw_val = gen st range in
let res = add a raw_val in
assert (a <= res && res <= b) ;
res
in
let shrink b () = shrink a b () in
QCheck2.Gen.make_primitive ~gen:(gen a b) ~shrink
let int64_range_gen a b =
intX_range_gen
~sub:Int64.sub
~add:Int64.add
~gen:Random.State.int64
~shrink:QCheck2.Shrink.int64_towards
a
b
let int32_range_gen a b =
intX_range_gen
~sub:Int32.sub
~add:Int32.add
~gen:Random.State.int32
~shrink:QCheck2.Shrink.int32_towards
a
b
let int64_strictly_positive_gen = int64_range_gen 1L
let int_strictly_positive_gen = QCheck2.Gen.int_range 1
let uint16 = QCheck2.Gen.(0 -- 65535)
let int16 = QCheck2.Gen.(-32768 -- 32767)
let uint8 = QCheck2.Gen.(0 -- 255)
let int8 = QCheck2.Gen.(-128 -- 127)
let string_fixed n = QCheck2.Gen.(string_size (pure n))
let bytes_gen = QCheck2.Gen.(map Bytes.of_string string)
let small_bytes_gen =
QCheck2.Gen.(map Bytes.of_string @@ small_string ~gen:char)
let bytes_fixed_gen size = QCheck2.Gen.map Bytes.of_string (string_fixed size)
let sublist : 'a list -> 'a list QCheck2.Gen.t =
let rec take_n n = function
| x :: xs when n > 0 -> x :: take_n (n - 1) xs
| _ -> []
in
fun elems ->
let open QCheck2.Gen in
match elems with
| [] -> return []
| _ ->
let* res_len = 0 -- List.length elems in
let+ shuffle = shuffle_l elems in
take_n res_len shuffle
let holey (l : 'a list) : 'a list QCheck2.Gen.t =
let open QCheck2.Gen in
let+ bools = list_repeat (List.length l) bool in
let rev_result =
List.fold_left
(fun acc (elem, pick) -> if pick then elem :: acc else acc)
[]
(List.combine l bools)
in
List.rev rev_result
let rec of_option_gen gen =
let open QCheck2.Gen in
gen >>= function None -> of_option_gen gen | Some a -> return a
let endpoint_gen =
let open QCheck2 in
let open Gen in
let protocol_gen = oneofl ["http"; "https"] in
let path_gen =
let+ path_chunks =
list_size (1 -- 8) (string_size ~gen:(char_range 'a' 'z') (1 -- 8))
in
String.concat "." path_chunks
in
let port_gen =
let+ port = 1 -- 32768 in
":" ^ Int.to_string port
in
let url_string_gen =
let+ protocol, path, opt_part =
triple protocol_gen path_gen (opt port_gen)
in
String.concat "" [protocol; "://"; path; Option.value ~default:"" opt_part]
in
let+ s = url_string_gen in
Uri.of_string s
module MakeMapGen (Map : sig
type 'a t
type key
val of_seq : (key * 'a) Seq.t -> 'a t
end) =
struct
open QCheck2
let gen_of_size (size_gen : int Gen.t) (key_gen : Map.key Gen.t)
(val_gen : 'v Gen.t) : 'v Map.t Gen.t =
let open Gen in
map
(fun entries -> List.to_seq entries |> Map.of_seq)
(list_size size_gen @@ pair key_gen val_gen)
let gen (key_gen : Map.key Gen.t) (val_gen : 'v Gen.t) : 'v Map.t Gen.t =
gen_of_size Gen.small_nat key_gen val_gen
end
let test_roundtrip ~count ~title ~gen ~eq encoding =
let pp fmt x =
Data_encoding.Json.construct encoding x
|> Data_encoding.Json.to_string |> Format.pp_print_string fmt
in
let test rdt input =
let output =
try Roundtrip.make encoding rdt input
with exn ->
QCheck2.Test.fail_reportf
"%s %s roundtrip error: error %s on %a"
title
(Roundtrip.target rdt)
(Printexc.to_string exn)
pp
input
in
let success = eq input output in
if not success then
QCheck2.Test.fail_reportf
"%s %s roundtrip error: %a became %a"
title
(Roundtrip.target rdt)
pp
input
pp
output
in
QCheck2.Test.make
~count
~name:(Format.asprintf "roundtrip %s" title)
gen
(fun input ->
test Roundtrip.binary input ;
test Roundtrip.json input ;
true)
let test_roundtrip_through_binary ~count ~title ~gen ~eq encoding1 encoding2 =
let pp fmt x =
Data_encoding.Json.construct encoding1 x
|> Data_encoding.Json.to_string |> Format.pp_print_string fmt
in
let test encoding1 encoding2 rdt input =
let output =
try Roundtrip.make_with_2_encoding encoding1 encoding2 rdt input
with exn ->
QCheck2.Test.fail_reportf
"%s %s roundtrip error: error %s on %a"
title
(Roundtrip.target rdt)
(Printexc.to_string exn)
pp
input
in
let success = eq input output in
if not success then
QCheck2.Test.fail_reportf
"%s %s roundtrip error: %a became %a"
title
(Roundtrip.target rdt)
pp
input
pp
output
in
QCheck2.Test.make
~count
~name:(Format.asprintf "roundtrip through binary %s" title)
gen
(fun input ->
test encoding1 encoding2 Roundtrip.binary input ;
test encoding2 encoding1 Roundtrip.binary input ;
true)