package qcheck-core

  1. Overview
  2. Docs

Source file QCheck_base_runner.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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
(*
QCheck: Random testing for OCaml
copyright (c) 2013-2017, Guillaume Bury, Simon Cruanes, Vincent Hugot, Jan Midtgaard
all rights reserved.
*)

module Color = struct
  let fpf = Printf.fprintf
  type color =
    [ `Red
    | `Yellow
    | `Green
    | `Blue
    | `Normal
    | `Cyan
    ]

  let int_of_color_ : color -> int = function
    | `Normal -> 0
    | `Red -> 1
    | `Green -> 2
    | `Yellow -> 3
    | `Blue -> 4
    | `Cyan -> 6

  (* same as [pp], but in color [c] *)
  let in_color c pp out x =
    let n = int_of_color_ c in
    fpf out "\x1b[3%dm" n;
    pp out x;
    fpf out "\x1b[0m"

  (* same as [pp], but in bold color [c] *)
  let in_bold_color c pp out x =
    let n = int_of_color_ c in
    fpf out "\x1b[3%d;1m" n;
    pp out x;
    fpf out "\x1b[0m"

  let reset_line = "\x1b[2K\r"

  let pp_str_c ?(bold=true) ~colors c out s =
    if colors then
      if bold then in_bold_color c output_string out s
      else in_color c output_string out s
    else output_string out s
end

let seed = ref ~-1
let st = ref None

let set_seed_ ~colors s =
  seed := s;
  if colors then Printf.printf "%srandom seed: %d\n%!" Color.reset_line s
  else Printf.printf "random seed: %d\n%!" s;
  let state = Random.State.make [| s |] in
  st := Some state;
  state

(* time of last printed message. Useful for rate limiting in verbose mode *)
let last_msg = ref 0.

let time_between_msg =
  let env_var = "QCHECK_MSG_INTERVAL" in
  let default_interval = 0.1 in
  let interval = match Sys.getenv_opt env_var with
    | None -> default_interval
    | Some f ->
      match float_of_string_opt f with
      | None -> invalid_arg (env_var ^ " must be a float")
      | Some i -> i in
  if interval < 0. then invalid_arg (env_var ^ " must be >= 0 but value is " ^ string_of_float interval);
  ref interval

let get_time_between_msg () = !time_between_msg

let set_time_between_msg f = time_between_msg := f

let set_seed s = ignore (set_seed_ ~colors:false s)

let setup_random_state_ ~colors () =
  let s = if !seed = ~-1 then (
      Random.self_init ();  (* make new, truly random seed *)
      Random.int (1 lsl 29);
    ) else !seed in
  set_seed_ ~colors s

(* initialize random generator from seed (if any) *)
let random_state_ ~colors () = match !st with
  | Some st -> st
  | None -> setup_random_state_ ~colors ()

let random_state() = random_state_ ~colors:false ()

let verbose, set_verbose =
  let r = ref false in
  (fun () -> !r), (fun b -> r := b)

let long_tests, set_long_tests =
  let r = ref false in
  (fun () -> !r), (fun b -> r := b)

let debug_shrink, set_debug_shrink =
  let r = ref None in
  (fun () -> !r), (fun s -> r := Some (open_out s))

let debug_shrink_list, set_debug_shrink_list =
  let r = ref [] in
  (fun () -> !r), (fun b -> r := b :: !r)

module Raw = struct
  type ('b,'c) printer = {
    info: 'a. ('a,'b,'c,unit) format4 -> 'a;
    fail: 'a. ('a,'b,'c,unit) format4 -> 'a;
    err: 'a. ('a,'b,'c,unit) format4 -> 'a;
  }

  type cli_args = {
    cli_verbose : bool;
    cli_long_tests : bool;
    cli_print_list : bool;
    cli_rand : Random.State.t;
    cli_slow_test : int; (* how many slow tests to display? *)
    cli_colors: bool;
    cli_debug_shrink : out_channel option;
    cli_debug_shrink_list : string list;
  }

  (* main callback for individual tests
     @param verbose if true, print statistics and details
     @param print_res if true, print the result on [out] *)
  let callback ~colors ~verbose ~print_res ~print name cell result =
    let module R = QCheck2.TestResult in
    let module T = QCheck2.Test in
    let reset_line = if colors then Color.reset_line else "\n" in
    if verbose then (
      print.info "%slaw %s: %d relevant cases (%d total)\n"
        reset_line name (R.get_count result) (R.get_count_gen result);
      begin match QCheck2.TestResult.collect result with
        | None -> ()
        | Some tbl ->
          print_string (QCheck2.Test.print_collect tbl)
      end;
    );
    if print_res then (
      (* even if [not verbose], print errors *)
      match R.get_state result with
        | R.Success ->
          if not (T.get_positive cell)
          then
            print.fail "%snegative test '%s' succeeded unexpectedly\n" reset_line name;
        | R.Failed {instances=l} ->
          if T.get_positive cell
          then print.fail "%s%s\n" reset_line (T.print_fail cell name l)
          else print.info "%s%s\n" reset_line (T.print_expected_failure cell l)
        | R.Failed_other {msg} ->
          print.fail "%s%s\n" reset_line (T.print_fail_other name ~msg);
        | R.Error {instance; exn; backtrace} ->
          print.err "%s%s\n" reset_line
            (T.print_error ~st:backtrace cell name (instance,exn));
    )

  let print_std = { info = Printf.printf; fail = Printf.printf; err = Printf.printf }

  let parse_cli ~full_options argv =
    let print_list = ref false in
    let set_verbose () = set_verbose true in
    let set_long_tests () = set_long_tests true in
    let set_backtraces () = Printexc.record_backtrace true in
    let set_list () = print_list := true in
    let colors = ref true in
    let slow = ref 0 in
    let options = Arg.align (
        [ "-v", Arg.Unit set_verbose, " "
        ; "--verbose", Arg.Unit set_verbose, " enable verbose tests"
        ; "--colors", Arg.Set colors, " colored output"
        ; "--no-colors", Arg.Clear colors, " disable colored output"
        ] @
          (if full_options then
             [ "-l", Arg.Unit set_list, " "
             ; "--list", Arg.Unit set_list, " print list of tests (2 lines each)"
             ; "--slow", Arg.Set_int slow, " print the <n> slowest tests"
             ] else []
          ) @
          [ "-s", Arg.Set_int seed, " "
          ; "--seed", Arg.Set_int seed, " set random seed (to repeat tests)"
          ; "--long", Arg.Unit set_long_tests, " run long tests"
          ; "-bt", Arg.Unit set_backtraces, " enable backtraces"
          ; "--debug-shrink", Arg.String set_debug_shrink, " enable shrinking debug to <file>"
          ; "--debug-shrink-list", Arg.String set_debug_shrink_list, " filter test to debug shrinking on"
          ]
      ) in
    Arg.parse_argv argv options (fun _ ->()) "run QCheck test suite";
    let cli_rand = setup_random_state_ ~colors:!colors () in
    { cli_verbose=verbose(); cli_long_tests=long_tests(); cli_rand;
      cli_print_list= !print_list; cli_slow_test= !slow;
      cli_colors= !colors; cli_debug_shrink = debug_shrink();
      cli_debug_shrink_list = debug_shrink_list(); }
end

open Raw

(* Counter for a test's instances *)
type counter = {
  start : float;
  expected : int;
  mutable gen : int;
  mutable passed : int;
  mutable failed : int;
  mutable errored : int;
}

type res =
  | Res : 'a QCheck2.Test.cell * 'a QCheck2.TestResult.t -> res

type handler = {
  handler : 'a. 'a QCheck2.Test.handler;
}

type handler_gen =
  colors:bool ->
  debug_shrink:(out_channel option) ->
  debug_shrink_list:(string list) ->
  size:int -> out:out_channel -> verbose:bool -> counter -> handler

let pp_counter ~size out c =
  let t = Unix.gettimeofday () -. c.start in
  Printf.fprintf out "%*d %*d %*d %*d / %*d %7.1fs"
    size c.gen size c.errored size c.failed
    size c.passed size c.expected t

let debug_shrinking_counter_example cell out x =
  match QCheck2.Test.get_print_opt cell  with
  | None -> Printf.fprintf out "<no printer provided>"
  | Some print -> Printf.fprintf out "%s" (print x)

let debug_shrinking_choices ~colors ~out ~name cell ~step x =
  Printf.fprintf out "\n~~~ %a %s\n\n"
    (Color.pp_str_c ~colors `Cyan) "Shrink" (String.make 69 '~');
  Printf.fprintf out
    "Test %s successfully shrunk counter example (step %d) to:\n\n%a\n%!"
    name step
    (debug_shrinking_counter_example cell) x

let default_handler
  ~colors ~debug_shrink ~debug_shrink_list
  ~size ~out ~verbose c =
  let handler name cell r =
    let st = function
      | QCheck2.Test.Generating    -> "generating"
      | QCheck2.Test.Collecting _  -> "collecting"
      | QCheck2.Test.Testing _     -> "   testing"
      | QCheck2.Test.Shrunk (i, _) ->
        Printf.sprintf "shrinking: %4d" i
      | QCheck2.Test.Shrinking (i, j, _) ->
        Printf.sprintf "shrinking: %4d.%04d" i j
    in
    (* debug shrinking choices *)
    begin match r with
      | QCheck2.Test.Shrunk (step, x) ->
        begin match debug_shrink with
          | None -> ()
          | Some out ->
            let go =
              match debug_shrink_list with
              | [] -> true
              | test_list -> List.mem name test_list
            in
            if not go then ()
            else
              debug_shrinking_choices
                ~colors ~out ~name cell ~step x
        end
      | _ ->
        ()
    end;
    (* use timestamps for rate-limiting *)
    let now=Unix.gettimeofday() in
    if verbose && now -. !last_msg > get_time_between_msg () then (
      last_msg := now;
      Printf.fprintf out "%s[ ] %a %s (%s)%!"
        (if colors then Color.reset_line else "\n")
        (pp_counter ~size) c name (st r)
    )
  in
  { handler; }

let step ~colors ~size ~out ~verbose c name _ _ r =
  let aux = function
    | QCheck2.Test.Success -> c.passed <- c.passed + 1
    | QCheck2.Test.Failure -> c.failed <- c.failed + 1
    | QCheck2.Test.FalseAssumption -> ()
    | QCheck2.Test.Error _ -> c.errored <- c.errored + 1
  in
  c.gen <- c.gen + 1;
  aux r;
  let now=Unix.gettimeofday() in
  if verbose && now -. !last_msg > get_time_between_msg () then (
    last_msg := now;
    Printf.fprintf out "%s[ ] %a %s%!"
      (if colors then Color.reset_line else "\n") (pp_counter ~size) c name
  )

let callback ~size ~out ~verbose ~colors c name cell r =
  let pass =
    if QCheck2.Test.get_positive cell
    then QCheck2.TestResult.is_success r
    else QCheck2.TestResult.is_failed r in
  let color = if pass then `Green else `Red in
  if verbose then (
    Printf.fprintf out "%s[%a] %a %s\n%!"
      (if colors then Color.reset_line else "\n")
      (Color.pp_str_c ~bold:true ~colors color) (if pass then "✓" else "✗")
      (pp_counter ~size) c name
  )

let print_inst cell x =
  match QCheck2.Test.get_print_opt cell with
  | Some f -> f x
  | None -> "<no printer>"

let expect long cell =
  let count = QCheck2.Test.get_count cell in
  if long then QCheck2.Test.get_long_factor cell * count else count

let expect_size long cell =
  let rec aux n = if n < 10 then 1 else 1 + (aux (n / 10)) in
  aux (expect long cell)

(* print user messages for a test *)
let print_messages ~colors out cell l =
  if l<>[] then (
    Printf.fprintf out
      "\n+++ %a %s\n\nMessages for test %s:\n\n%!"
      (Color.pp_str_c ~colors `Blue) "Messages"
      (String.make 68 '+') (QCheck2.Test.get_name cell);
    List.iter (Printf.fprintf out "%s\n%!") l
  )

let print_success ~colors out cell r =
  begin match QCheck2.TestResult.collect r with
    | None -> ()
    | Some tbl ->
      Printf.fprintf out
        "\n+++ %a %s\n\nCollect results for test %s:\n\n%s%!"
        (Color.pp_str_c ~colors `Blue) "Collect"
        (String.make 68 '+') (QCheck2.Test.get_name cell) (QCheck2.Test.print_collect tbl)
  end;
  List.iter (fun msg ->
       Printf.fprintf out
         "\n!!! %a %s\n\nWarning for test %s:\n\n%s%!"
        (Color.pp_str_c ~colors `Yellow) "Warning" (String.make 68 '!')
        (QCheck2.Test.get_name cell) msg)
    (QCheck2.TestResult.warnings r);

  if QCheck2.TestResult.stats r <> []  then
     Printf.fprintf out
       "\n+++ %a %s\n%!"
       (Color.pp_str_c ~colors `Blue) ("Stats for " ^ QCheck2.Test.get_name cell)
       (String.make 56 '+');
  List.iter
    (fun st -> Printf.fprintf out "\n%s%!" (QCheck2.Test.print_stat st))
    (QCheck2.TestResult.stats r);
  ()

let print_fail ~colors out cell c_ex =
  Printf.fprintf out "\n--- %a %s\n\n" (Color.pp_str_c ~colors `Red) "Failure" (String.make 68 '-');
  Printf.fprintf out "Test %s failed (%d shrink steps):\n\n%s\n%!"
    (QCheck2.Test.get_name cell) c_ex.QCheck2.TestResult.shrink_steps
    (print_inst cell c_ex.QCheck2.TestResult.instance);
  print_messages ~colors out cell c_ex.QCheck2.TestResult.msg_l

let print_fail_other ~colors out cell msg =
  Printf.fprintf out "\n--- %a %s\n\n" (Color.pp_str_c ~colors `Red) "Failure" (String.make 68 '-');
  Printf.fprintf out "Test %s failed:\n\n%s\n%!" (QCheck2.Test.get_name cell) msg

let print_expected_failure ~colors out cell c_ex =
  Printf.fprintf out "\n--- %a %s\n\n" (Color.pp_str_c ~colors `Blue) "Info" (String.make 71 '-');
  Printf.fprintf out "Negative test %s failed as expected (%d shrink steps):\n\n%s\n%!"
    (QCheck2.Test.get_name cell) c_ex.QCheck2.TestResult.shrink_steps
    (print_inst cell c_ex.QCheck2.TestResult.instance);
  print_messages ~colors out cell c_ex.QCheck2.TestResult.msg_l

let print_error ~colors out cell c_ex exn bt =
  Printf.fprintf out "\n=== %a %s\n\n" (Color.pp_str_c ~colors `Red) "Error" (String.make 70 '=');
  Printf.fprintf out "Test %s errored on (%d shrink steps):\n\n%s\n\nexception %s\n%s\n%!"
    (QCheck2.Test.get_name cell)
    c_ex.QCheck2.TestResult.shrink_steps
    (print_inst cell c_ex.QCheck2.TestResult.instance)
    (Printexc.to_string exn)
    bt;
  print_messages ~colors out cell c_ex.QCheck2.TestResult.msg_l

let run_tests
    ?(handler=default_handler)
    ?(colors=true) ?(verbose=verbose()) ?(long=long_tests())
    ?(debug_shrink=debug_shrink()) ?(debug_shrink_list=debug_shrink_list())
    ?(out=stdout) ?rand l =
  let rand = match rand with Some x -> x | None -> random_state_ ~colors () in
  let module T = QCheck2.Test in
  let module R = QCheck2.TestResult in
  let pp_color = Color.pp_str_c ~bold:true ~colors in
  let size = List.fold_left (fun acc (T.Test cell) ->
      max acc (expect_size long cell)) 4 l in
  if verbose then
    Printf.fprintf out
      "%*s %*s %*s %*s / %*s     time test name\n%!"
      (size + 4) "generated" size "error"
      size "fail" size "pass" size "total";
  let aux_map (T.Test cell) =
    let rand = Random.State.copy rand in
    let expected = expect long cell in
    let start = Unix.gettimeofday () in
    let c = {
      start; expected; gen = 0;
      passed = 0; failed = 0; errored = 0;
    } in
    if verbose then
      Printf.fprintf out "%s[ ] %a %s%!"
        (if colors then Color.reset_line else "")
        (pp_counter ~size) c (T.get_name cell);
    let r = QCheck2.Test.check_cell ~long ~rand
        ~handler:(handler ~colors ~debug_shrink ~debug_shrink_list
                    ~size ~out ~verbose c).handler
        ~step:(step ~colors ~size ~out ~verbose c)
        ~call:(callback ~size ~out ~verbose ~colors c)
        cell
    in
    Res (cell, r)
  in
  let res = List.map aux_map l in
  let aux_fold (total, fail, error, warns) (Res (cell, r)) =
    let warns = warns + List.length (R.get_warnings r) in
    let acc = match R.get_state r, QCheck2.Test.get_positive cell with
      | R.Success, true ->
        print_success ~colors out cell r;
        (total + 1, fail, error, warns)
      | R.Success, false ->
        let msg = Printf.sprintf "Negative test %s succeeded but was expected to fail" (QCheck2.Test.get_name cell) in
        print_fail_other ~colors out cell msg;
        (total + 1, fail + 1, error, warns)
      | R.Failed {instances=l}, true ->
        List.iter (print_fail ~colors out cell) l;
        (total + 1, fail + 1, error, warns)
      | R.Failed {instances=l}, false ->
        if verbose then List.iter (print_expected_failure ~colors out cell) l;
        (total + 1, fail, error, warns)
      | R.Failed_other {msg}, _ ->  (* Failed_other is also considered a failure *)
        print_fail_other ~colors out cell msg;
        (total + 1, fail + 1, error, warns)
      | R.Error {instance=c_ex; exn; backtrace=bt}, _ -> (* Error is always considered a failure *)
        print_error ~colors out cell c_ex exn bt;
        (total + 1, fail, error + 1, warns)
    in
    acc
  in
  let total, fail, error, warns = List.fold_left aux_fold (0, 0, 0,0) res in
  Printf.fprintf out "%s\n" (String.make 80 '=');
  if warns > 0 then Printf.fprintf out "%d warning(s)\n" warns;
  if fail = 0 && error = 0 then (
    Printf.fprintf out "%a (ran %d tests)\n%!"
      (pp_color `Green) "success" total;
    0
  ) else (
    Printf.fprintf out
      "%a (%d tests failed, %d tests errored, ran %d tests)\n%!"
      (pp_color `Red) "failure" fail error total;
    1
  )

let run_tests_main ?(argv=Sys.argv) l =
  try
    let cli_args = parse_cli ~full_options:false argv in
    exit
      (run_tests l
         ~colors:cli_args.cli_colors
         ~verbose:cli_args.cli_verbose
         ~long:cli_args.cli_long_tests ~out:stdout ~rand:cli_args.cli_rand)
  with
    | Arg.Bad msg -> print_endline msg; exit 1
    | Arg.Help msg -> print_endline msg; exit 0
OCaml

Innovation. Community. Security.