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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
open Printf
open Testo_util
module T = Types
type expected_outcome = T.expected_outcome =
| Should_succeed
| Should_fail of string
type completion_status = T.completion_status =
| Test_function_returned
| Test_function_raised_an_exception
| Test_timeout
type fail_reason = T.fail_reason =
| Raised_exception
| Missing_output_file
| Incorrect_output
| Timeout
type outcome = T.outcome = Succeeded | Failed of fail_reason
type checked_output_kind = T.checked_output_kind
type checked_output_file = T.checked_output_file
type checked_output_file_with_contents = T.checked_output_file_with_contents
type captured_output = T.captured_output =
| Ignored of string
| Captured_stdout of string * string
| Captured_stderr of string * string
| Captured_stdout_stderr of string * string
| Captured_merged of string
type expected_output = T.expected_output =
| Ignored
| Expected_stdout of string
| Expected_stderr of string
| Expected_stdout_stderr of string * string
| Expected_merged of string
type result = T.result = {
completion_status : completion_status;
captured_output : captured_output;
captured_output_files : checked_output_file_with_contents list;
missing_output_files : Fpath.t list;
}
type missing_files = T.missing_files = Missing_files of Fpath.t list
type expectation = T.expectation = {
expected_outcome : expected_outcome;
expected_output : (expected_output, missing_files) Result.t;
expected_output_files :
(checked_output_file_with_contents, Fpath.t) Result.t list;
}
type status = T.status = {
expectation : expectation;
result : (result, missing_files) Result.t;
}
type passing_status = T.passing_status =
| PASS
| FAIL of fail_reason
| XFAIL of fail_reason
| XPASS
| MISS of missing_files
type status_summary = T.status_summary = {
passing_status : passing_status;
outcome : outcome;
has_expected_output : bool;
}
type test_with_status = T.test * status * status_summary
type subcommand_result = Cmd.subcommand_result =
| Run_result of test_with_status list
| Status_result of test_with_status list
| Approve_result
module Lazy_with_output = Lazy_with_output
module Promise = Promise
module Tag = Tag
type inline_logs = T.inline_logs = On | Off | Auto
type t = T.test = {
id : string;
internal_full_name : string;
category : string list;
name : string;
func : unit -> unit Promise.t;
checked_output : checked_output_kind;
checked_output_files : checked_output_file list;
expected_outcome : expected_outcome;
flaky : string option;
inline_logs : inline_logs;
max_duration : float option;
normalize : (string -> string) list;
skipped : string option;
solo : string option;
tags : Tag.t list;
tolerate_chdir : bool;
tracking_url : string option;
}
type alcotest_test_case = string * [ `Quick | `Slow ] * (unit -> unit Promise.t)
type alcotest_test = string * alcotest_test_case list
let stdout ?expected_stdout_path () : T.checked_output_kind =
Stdout { snapshot_path = expected_stdout_path }
let stderr ?expected_stderr_path () : T.checked_output_kind =
Stderr { snapshot_path = expected_stderr_path }
let stdxxx ?expected_stdxxx_path () : T.checked_output_kind =
Stdxxx { snapshot_path = expected_stdxxx_path }
let split_stdout_stderr ?expected_stdout_path ?expected_stderr_path () :
T.checked_output_kind =
Split_stdout_stderr
( { snapshot_path = expected_stdout_path },
{ snapshot_path = expected_stderr_path } )
let validate_name =
let rex =
Re.Pcre.regexp {|\A[a-zA-Z0-9_-](?:[.a-zA-Z0-9_-]*[a-zA-Z0-9_-])?\z|}
in
fun str -> Re.Pcre.pmatch ~rex str
let checked_output_file ?snapshot_path name : checked_output_file =
if not (validate_name name) then
invalid_arg
("Invalid 'name' argument for Testo.checked_output_file: " ^ name);
{ name; options = { snapshot_path } }
let stash_output_file src_path name =
match Run.get_current_test () with
| None -> failwith "Testo.stash_output_file is being called outside of a test"
| Some test -> (
match
List.find_opt
(fun (x : T.checked_output_file) -> x.name = name)
test.checked_output_files
with
| None ->
invalid_arg
(sprintf
"Testo.stash_output_file: invalid output file name for test \
'%s': '%s'"
test.name name)
| Some x -> Store.stash_output_file test src_path x)
let update_id (test : t) =
let internal_full_name = T.recompute_internal_full_name test in
let md5_hex = internal_full_name |> Digest.string |> Digest.to_hex in
assert (String.length md5_hex = 32);
let id = String.sub md5_hex 0 12 in
{ test with id; internal_full_name }
let create ?(category = []) ?(checked_output = T.Ignore_output)
?(checked_output_files = []) ?(expected_outcome = Should_succeed) ?flaky
?(inline_logs = Auto) ?max_duration ?(normalize = []) ?skipped ?solo
?(tags = []) ?(tolerate_chdir = false) ?tracking_url name func =
{
id = "";
internal_full_name = "";
category;
name;
func;
checked_output;
checked_output_files;
expected_outcome;
flaky;
inline_logs;
max_duration;
normalize;
skipped;
solo;
tags;
tolerate_chdir;
tracking_url;
}
|> update_id
let opt option default = Option.value option ~default
let update ?category ?checked_output ?checked_output_files ?expected_outcome
?flaky ?func ?inline_logs ?max_duration ?normalize ?name ?skipped ?solo
?tags ?tolerate_chdir ?tracking_url old =
{
id = "";
internal_full_name = "";
category = opt category old.category;
name = opt name old.name;
func = opt func old.func;
checked_output = opt checked_output old.checked_output;
checked_output_files = opt checked_output_files old.checked_output_files;
expected_outcome = opt expected_outcome old.expected_outcome;
flaky = opt flaky old.flaky;
inline_logs = opt inline_logs old.inline_logs;
max_duration = opt max_duration old.max_duration;
normalize = opt normalize old.normalize;
skipped = opt skipped old.skipped;
solo = opt solo old.solo;
tags = opt tags old.tags;
tolerate_chdir = opt tolerate_chdir old.tolerate_chdir;
tracking_url = opt tracking_url old.tracking_url;
}
|> update_id
exception Test_failure = Testo_util.Error.Test_failure
type 'a testable = { show : 'a -> string; equal : 'a -> 'a -> bool }
let testable show equal = { show; equal }
let indent_list prefix xs : string =
Helpers.list_map (String.split_on_char '\n') xs
|> Helpers.list_flatten
|> Helpers.list_map (fun line -> prefix ^ line)
|> String.concat "\n"
let indent prefix str = indent_list prefix [ str ]
let check testable ?msg expected actual =
if not (testable.equal expected actual) then
let expected = testable.show expected in
let actual = testable.show actual in
let inline_or_block str =
if String.contains str '\n' then "\n" ^ indent " " str else " " ^ str
in
raise
(Test_failure
(sprintf
"%snot equal:\n\
\ expected (left):%s\n\
\ actual (right):%s\n\
differences:\n\
%s"
(match msg with
| None -> ""
| Some str -> str ^ "\n")
(inline_or_block expected) (inline_or_block actual)
(Diff.strings ~color:true ~path1:(Fpath.v "expected")
~path2:(Fpath.v "actual") (expected ^ "\n") (actual ^ "\n")
|> Option.value ~default:"<no difference>")))
let bool = testable Bool.to_string Bool.equal
let int = testable Int.to_string Int.equal
let int32 = testable Int32.to_string Int32.equal
let int64 = testable Int64.to_string Int64.equal
let float = testable Float.to_string Float.equal
let show_multiline_quoted_string str =
String.split_on_char '\n' str
|> Helpers.list_map String.escaped
|> String.concat "\\n\\\n " |> sprintf {|"%s"|}
let string = testable show_multiline_quoted_string String.equal
let text = testable (fun str -> str) String.equal
let bytes =
testable
(fun bytes -> show_multiline_quoted_string (Bytes.to_string bytes))
Bytes.equal
let format_list ~open_bracket ~close_bracket strings =
let len = List.fold_left (fun n str -> n + String.length str + 4) 0 strings in
if len > 76 || List.exists (fun str -> String.contains str '\n') strings then
sprintf "%s\n%s\n%s" open_bracket (indent_list " " strings) close_bracket
else
sprintf "%s%s%s" open_bracket (String.concat " " strings) close_bracket
let append_sep separator strings =
Helpers.list_map (fun str -> str ^ separator) strings
let insert_sep separator strings : string list =
let rec insert acc xs =
match xs with
| [] -> []
| [ single ] -> [ single ]
| [ prev; last ] -> last :: (prev ^ separator) :: acc |> List.rev
| x :: xs -> insert ((x ^ separator) :: acc) xs
in
insert [] strings
let list_show t xs =
format_list ~open_bracket:"[" ~close_bracket:"]"
(Helpers.list_map t.show xs |> append_sep ";")
let list_equal equal a b =
List.length a = List.length b && List.for_all2 equal a b
let list t = testable (list_show t) (list_equal t.equal)
let array_show t ar =
format_list ~open_bracket:"[" ~close_bracket:"]"
(Array.to_list ar |> Helpers.list_map t.show |> append_sep ";")
let array_for_all2 equal a b =
List.for_all2 equal (Array.to_list a) (Array.to_list b)
let array_equal t a b =
Array.length a = Array.length b && array_for_all2 t.equal a b
let array t = testable (array_show t) (array_equal t)
let seq_show t seq =
format_list ~open_bracket:"[?" ~close_bracket:"?]"
(List.of_seq seq |> Helpers.list_map t.show |> append_sep ";")
let seq_equal equal a b = list_equal equal (List.of_seq a) (List.of_seq b)
let seq t = testable (seq_show t) (seq_equal t.equal)
let option t =
testable
(function
| None -> "None"
| Some x -> sprintf "Some (%s)" (t.show x))
(Option.equal t.equal)
let result ok error =
testable
(function
| Ok a -> sprintf "Ok (%s)" (ok.show a)
| Error b -> sprintf "Error (%s)" (error.show b))
(Result.equal ~ok:ok.equal ~error:error.equal)
let tuple2 ta tb =
testable
(fun (a, b) ->
format_list ~open_bracket:"(" ~close_bracket:")"
(insert_sep "," [ ta.show a; tb.show b ]))
(fun (a1, b1) (a2, b2) -> ta.equal a1 a2 && tb.equal b1 b2)
let tuple3 ta tb tc =
testable
(fun (a, b, c) ->
format_list ~open_bracket:"(" ~close_bracket:")"
(insert_sep "," [ ta.show a; tb.show b; tc.show c ]))
(fun (a1, b1, c1) (a2, b2, c2) ->
ta.equal a1 a2 && tb.equal b1 b2 && tc.equal c1 c2)
let tuple4 ta tb tc td =
testable
(fun (a, b, c, d) ->
format_list ~open_bracket:"(" ~close_bracket:")"
(insert_sep "," [ ta.show a; tb.show b; tc.show c; td.show d ]))
(fun (a1, b1, c1, d1) (a2, b2, c2, d2) ->
ta.equal a1 a2 && tb.equal b1 b2 && tc.equal c1 c2 && td.equal d1 d2)
let tuple5 ta tb tc td te =
testable
(fun (a, b, c, d, e) ->
format_list ~open_bracket:"(" ~close_bracket:")"
(insert_sep ","
[ ta.show a; tb.show b; tc.show c; td.show d; te.show e ]))
(fun (a1, b1, c1, d1, e1) (a2, b2, c2, d2, e2) ->
ta.equal a1 a2 && tb.equal b1 b2 && tc.equal c1 c2 && td.equal d1 d2
&& te.equal e1 e2)
let fail = Testo_util.Error.fail_test
let write_text_file = Helpers.write_text_file
let read_text_file = Helpers.read_text_file
let map_text_file = Helpers.map_text_file
let copy_text_file = Helpers.copy_text_file
let with_open_temp_file = Temp_file.with_open_temp_file
let with_open_temp_text_file =
Temp_file.with_open_temp_file ~windows_binary:false
let with_temp_file = Temp_file.with_temp_file
let with_temp_text_file = Temp_file.with_temp_file ~windows_binary:false
let with_capture = Store.with_capture
let write_file = write_text_file
let read_file = read_text_file
let map_file = map_text_file
let copy_file = copy_text_file
let with_chdir = Helpers.with_chdir
module Filename_old = struct
let prng = lazy (Random.State.make_self_init ())
let temp_file_name temp_dir prefix suffix =
let rnd = Random.State.bits (Lazy.force prng) land 0xFFFFFF in
Filename.concat temp_dir (Printf.sprintf "%s%06x%s" prefix rnd suffix)
end
module Filename_new = struct
let temp_dir ?(temp_dir = Filename.get_temp_dir_name ()) ?(perms = 0o700)
prefix suffix =
let rec try_name counter =
let name = Filename_old.temp_file_name temp_dir prefix suffix in
try
Unix.mkdir name perms;
name
with
| Unix.Unix_error _ as e ->
if counter >= 20 then
raise e
else try_name (counter + 1)
in
try_name 0
end
let with_temp_dir ?(chdir = false) ?parent ?perms ?(prefix = "testo-")
?(suffix = "") func =
let dir =
Filename_new.temp_dir
?temp_dir:(Option.map Fpath.to_string parent)
?perms prefix suffix
|> Fpath.v
in
Fun.protect
~finally:(fun () -> Helpers.remove_file_or_dir dir)
(fun () -> if chdir then with_chdir dir (fun () -> func dir) else func dir)
let get_current_test () = Run.get_current_test ()
let getenv_string k =
match Sys.getenv_opt k with
| None -> ""
| Some v -> v
let with_environment_variables env func =
let envs =
Helpers.list_map
(fun (k, tmp) ->
let orig = getenv_string k in
Unix.putenv k tmp;
(k, orig, tmp))
env
in
Promise.protect
~finally:(fun () ->
List.iter
(fun (k, orig, tmp) ->
let cur = getenv_string k in
Unix.putenv k orig;
if cur <> tmp then
Error.fail_test
(sprintf
"The environment variable %S was modified by the test \
function but not restored. Its value is %S but %S was \
expected."
k cur tmp))
envs;
Promise.return ())
func
let mask_line ?(mask = "<MASKED>") ?(after = "") ?(before = "") () =
let pat =
Printf.sprintf {|%s[^\n]*%s|} (Re.Pcre.quote after) (Re.Pcre.quote before)
in
let rex = Re.Pcre.regexp pat in
let subst _matched = after ^ mask ^ before in
fun subj -> Re.Pcre.substitute ~rex ~subst subj
let mask_pcre_pattern ?replace pat =
let re = Re.Pcre.regexp pat in
let replace =
match replace with
| None -> fun _ -> "<MASKED>"
| Some replace -> replace
in
fun subj ->
Re.split_full re subj
|> Helpers.list_map (function
| `Text str -> str
| `Delim groups ->
let match_start, match_stop =
try Re.Group.offset groups 0 with
| Not_found -> Error.assert_false ~__LOC__ ()
in
let group_start, group_stop =
try Re.Group.offset groups 1 with
| Not_found -> (match_start, match_stop)
in
assert (group_start >= match_start);
assert (group_stop <= match_stop);
let frag1 = String.sub subj match_start (group_start - match_start) in
let to_be_replaced =
String.sub subj group_start (group_stop - group_start)
in
let frag2 = String.sub subj group_stop (match_stop - group_stop) in
frag1 ^ replace to_be_replaced ^ frag2)
|> String.concat ""
let represent_lines_as_pairs (xs : Re.Pcre.split_result list) :
(string * string) list =
let rec map acc (xs : Re.Pcre.split_result list) =
match xs with
| Text line :: Delim newline :: xs -> map ((line, newline) :: acc) xs
| Delim newline :: xs -> map (("", newline) :: acc) xs
| Text line :: xs -> map ((line, "") :: acc) xs
| (Group _ | NoGroup) :: _ -> map acc xs
| [] -> List.rev acc
in
map [] xs
let parse_lines : string -> (string * string) list =
let line_sep = Re.Pcre.regexp "\r?\n" in
fun str -> str |> Re.Pcre.full_split ~rex:line_sep |> represent_lines_as_pairs
let concatenate_lines (lines : (string * string) list) : string =
let buf = Buffer.create 500 in
List.iter
(fun (line, newline) ->
Buffer.add_string buf line;
Buffer.add_string buf newline)
lines;
Buffer.contents buf
let filter_map_lines func str =
let lines = parse_lines str in
List.filter_map
(fun (line, newline) ->
match func line with
| None -> None
| Some line -> Some (line, newline))
lines
|> concatenate_lines
let contains_pcre_pattern ~pat =
let rex = Re.Pcre.regexp pat in
fun str -> Re.Pcre.pmatch ~rex str
let contains_substring ~sub = contains_pcre_pattern ~pat:(Re.Pcre.quote sub)
let remove_matching_lines cond str =
filter_map_lines (fun line -> if cond line then None else Some line) str
let keep_matching_lines cond str =
remove_matching_lines (fun x -> not (cond x)) str
let path_segment_re = Re.Pcre.regexp {|[^\\/]+|}
let default_replace_path ~temp_dir str =
let prefix_len = String.length temp_dir in
let len = String.length str in
assert (prefix_len <= len);
let suffix = String.sub str prefix_len (len - prefix_len) in
let new_suffix =
Re.Pcre.substitute ~rex:path_segment_re
~subst:(fun _seg -> "<MASKED>")
suffix
in
"<TMP>" ^ new_suffix
let path_character_range = {|/\\:A-Za-z0-9_.-|}
let path_character = "[" ^ path_character_range ^ "]"
let nonpath_character = "[^" ^ path_character_range ^ "]"
let posixify_path p =
if Sys.win32 then
String.map
(function
| '\\' -> '/'
| c -> c)
p
else p
let mask_temp_paths ?(depth = Some 1) ?replace
?(temp_dir = Create_temp_file.get_temp_dir_path ()) () =
let temp_dir_str =
Fpath.(rem_empty_seg temp_dir |> to_string) |> posixify_path
in
let temp_dir_pat = Re.Pcre.quote temp_dir_str in
let suffix_pat =
match depth with
| None -> sprintf {|%s*|} path_character
| Some n ->
if n < 0 then
Error.invalid_arg ~__LOC__
"Testo.mask_temp_paths: depth must be (Some <nonzero>) or None"
else
let sep = {|[/\\]+|} in
let segment = {|[A-Za-z0-9_.-]+|} in
let repeat pat = Printf.sprintf "(?:%s){0,%d}" pat n in
repeat (sep ^ segment)
in
let pat =
let not_preceded_by_a_path_character =
sprintf {|(?:^|%s)|} nonpath_character
in
sprintf "%s(%s%s)" not_preceded_by_a_path_character temp_dir_pat suffix_pat
in
let replace =
match replace with
| None -> default_replace_path ~temp_dir:temp_dir_str
| Some f -> f
in
fun p -> posixify_path p |> mask_pcre_pattern ~replace pat
let mask_not_pcre_pattern ?(mask = "<MASKED>") pat =
let re = Re.Pcre.regexp pat in
fun subj ->
Re.split_full re subj
|> Helpers.list_map (function
| `Text _ -> mask
| `Delim groups -> (
match Re.Group.get_opt groups 0 with
| Some substring -> substring
| None -> ""))
|> String.concat ""
let mask_not_substrings ?mask substrings =
mask_not_pcre_pattern ?mask
(
substrings
|> List.stable_sort (fun a b ->
Int.compare (String.length b) (String.length a))
|> Helpers.list_map Re.Pcre.quote
|> String.concat "|")
let mask_not_substring ?mask substring = mask_not_substrings ?mask [ substring ]
let has_tag tag test = List.mem tag test.tags
let categorize name (tests : _ list) : _ list =
Helpers.list_map (fun x -> update x ~category:(name :: x.category)) tests
let categorize_suites name (tests : t list list) : t list =
tests |> Helpers.list_flatten |> categorize name
let sort (tests : t list) : t list =
tests
|> List.stable_sort (fun a b ->
let c = compare a.category b.category in
if c <> 0 then c else String.compare a.name b.name)
let to_alcotest = Run.to_alcotest
let registered_tests : t list ref = ref []
let register x = registered_tests := x :: !registered_tests
let test ?category ?checked_output ?expected_outcome ?normalize ?skipped ?solo
?tags ?tolerate_chdir name func =
create ?category ?checked_output ?expected_outcome ?normalize ?skipped ?solo
?tags ?tolerate_chdir name func
|> register
let get_registered_tests () = List.rev !registered_tests
let interpret_argv ?argv ?default_workers ?expectation_workspace_root
?handle_subcommand_result ?status_workspace_root ~project_name get_tests =
Cmd.interpret_argv ?argv ?default_workers ?expectation_workspace_root
?handle_subcommand_result ?status_workspace_root ~project_name get_tests