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
open Mdx
open Astring
open Mdx.Util.Result.Infix
let src = Logs.Src.create "cram.test"
module Log = (val Logs.src_log src : Logs.LOG)
let ( / ) = Filename.concat
let ansi_color_strip str =
let len = String.length str in
let buf = Buffer.create len in
let rec loop start i =
if i = len then (
if i - start > 0 then Buffer.add_substring buf str start (i - start);
Buffer.contents buf)
else
match String.unsafe_get str i with
| '\027' ->
if i - start > 0 then Buffer.add_substring buf str start (i - start);
skip (i + 1)
| _ -> loop start (i + 1)
and skip i =
if i = len then Buffer.contents buf
else
match String.unsafe_get str i with
| 'm' -> loop (i + 1) (i + 1)
| _ -> skip (i + 1)
in
loop 0 0
let output_from_line s =
`Output (String.drop ~rev:true ~sat:Char.Ascii.is_blank s)
let with_dir root f =
match root with
| None -> f ()
| Some d -> (
let old_d = Sys.getcwd () in
try
Sys.chdir d;
let r = f () in
Sys.chdir old_d;
r
with e ->
Sys.chdir old_d;
raise e)
let get_env unset_variables =
let env = Array.to_list (Unix.environment ()) in
let env = List.map (String.cuts ~sep:"=") env in
let f env var =
let g l = String.compare (List.nth l 0) var <> 0 in
List.filter g env
in
let env = List.fold_left f env unset_variables in
Array.of_list (List.map (String.concat ~sep:"=") env)
let run_test ?root unset_variables temp_file t =
let cmd = Cram.command_line t in
let env = get_env unset_variables in
Log.info (fun l -> l "exec: %S" cmd);
let fd = Unix.openfile temp_file [ O_WRONLY; O_TRUNC ] 0 in
let pid =
with_dir root (fun () ->
Unix.create_process_env "sh" [| "sh"; "-c"; cmd |] env Unix.stdin fd fd)
in
Unix.close fd;
Util.Process.wait ~pid
let root_dir ?root ?block () =
match (block : Block.t option) with
| Some { dir = None; _ } -> root
| Some { dir = Some d; loc = { loc_start = { pos_fname; _ }; _ }; _ } -> (
match root with
| Some r -> Some (r / d)
| None -> Some (Filename.dirname pos_fname / d))
| None -> root
let resolve_root file dir root =
match root with None -> dir / file | Some r -> r / dir / file
let pp_output ppf = function
| `Output line ->
let line = ansi_color_strip line in
Output.pp ~pad:0 ppf (`Output line)
| otherwise -> Output.pp ~pad:0 ppf otherwise
let pp_outputs ppf outputs =
Fmt.string ppf "\n";
Fmt.list ~sep:(Fmt.any "\n") pp_output ppf outputs
let pad_output ~pad_blank hpad outputs =
let string_pad = String.v ~len:hpad (fun _ -> ' ') in
List.map
(function
| `Ellipsis -> `Output (Fmt.str "%s..." string_pad)
| `Output s -> (
match (Util.String.all_blank s, pad_blank) with
| true, false -> `Output s
| true, true | false, _ -> `Output (Fmt.str "%s%s" string_pad s)))
outputs
let run_cram_tests ?syntax t ?root ppf temp_file
(Cram.{ hpad; tests; end_pad; start_pad } as cram_tests) =
Block.pp_header ?syntax ppf t;
Log.debug (fun l ->
l "Cram tests to print: %a" Cram.dump_cram_tests cram_tests);
Cram.pp_vertical_pad ppf start_pad;
let pp_test ppf (test : Cram.t) =
let root = root_dir ?root ~block:t () in
let unset_variables = Block.unset_variables t in
let n = run_test ?root unset_variables temp_file test in
let lines = Mdx.Util.File.read_lines temp_file in
let output_expected = test.output in
let output_received = List.map output_from_line lines in
let output_equal = Output.equal output_received output_expected in
let output =
match output_equal with
| true -> output_expected
| false -> Output.merge output_received output_expected
in
let output = pad_output ~pad_blank:true hpad output in
Cram.pp_command ~pad:hpad ppf test;
(match output with [] -> () | output -> pp_outputs ppf output);
Cram.pp_exit_code ~pad:hpad ppf n
in
let pp_tests = Fmt.list ~sep:(Fmt.any "\n") pp_test in
pp_tests ppf tests;
Option.iter (Fmt.pf ppf "\n%s") end_pad;
Block.pp_footer ?syntax ppf t
let eval_test ?block ?root c cmd =
Log.debug (fun l -> l "eval_test %a" Fmt.(Dump.list (Fmt.fmt "%S")) cmd);
let root = root_dir ?root ?block () in
with_dir root (fun () -> Mdx_top.eval c cmd)
let err_eval ~cmd lines =
Fmt.epr "Got an error while evaluating:\n---\n%a\n---\n%a\n%!"
Fmt.(list ~sep:(any "\n") string)
cmd
Fmt.(list ~sep:(any "\n") string)
lines;
exit 1
let eval_raw ?block ?root c cmd =
match eval_test ?block ?root c cmd with
| Ok _ -> ()
| Error e -> err_eval ~cmd e
let split_lines lines =
let aux acc s =
XXX(samoht) support windowns *)
let lines = String.cuts ~sep:"\n" s in
List.append lines acc
in
List.fold_left aux [] (List.rev lines)
let rec remove_padding ?(front = true) = function
| [] -> []
| [ x; end_pad ] when Util.String.all_blank end_pad -> [ x ]
| front_pad :: xs when Util.String.all_blank front_pad && front ->
remove_padding ~front:false xs
| x :: xs ->
let xs = remove_padding ~front xs in
x :: xs
let update_ocaml ~errors = function
| { Block.value = OCaml v; _ } as b ->
{ b with value = OCaml { v with errors } }
| _ -> assert false
let rec error_padding = function
| [] -> []
| [ `Output padding ] when Util.String.all_blank padding -> []
| x :: xs ->
let xs = error_padding xs in
x :: xs
let contains_warnings l =
String.is_prefix ~affix:"Warning" l || String.is_infix ~affix:"\nWarning" l
let eval_ocaml ~(block : Block.t) ?syntax ?root c ppf errors =
let cmd = block.contents |> remove_padding in
let error_lines =
match eval_test ?root ~block c cmd with
| Ok lines -> List.filter contains_warnings lines
| Error lines -> lines
in
let errors =
match error_lines with
| [] -> []
| lines ->
let lines = split_lines lines in
let output = List.map output_from_line lines in
let errors = error_padding errors in
let output = error_padding output in
if Output.equal output errors then errors
else
List.map
(function
| `Ellipsis -> `Ellipsis
| `Output x -> `Output (ansi_color_strip x))
(Output.merge output errors)
in
let updated_block = update_ocaml ~errors block in
Block.pp ?syntax ppf updated_block
let lines = function Ok x | Error x -> x
let run_toplevel_tests ?syntax ?root c ppf Toplevel.{ tests; end_pad } block =
Block.pp_header ?syntax ppf block;
let pp_test ppf (test : Toplevel.t) =
let lines = eval_test ?root ~block c test.command |> lines |> split_lines in
let output_received = List.map output_from_line lines in
let output_expected = test.output in
let output_equal = Output.equal output_received output_expected in
let output = if output_equal then output_expected else output_received in
let output = pad_output ~pad_blank:false test.hpad output in
Toplevel.pp_command ppf test;
match output with [] -> () | output -> pp_outputs ppf output
in
let pp_tests = Fmt.list ~sep:(Fmt.any "\n") pp_test in
pp_tests ppf tests;
Option.iter (Fmt.pf ppf "\n%s") end_pad;
Block.pp_footer ?syntax ppf block
type file = { first : Mdx.Part.file; current : Mdx.Part.file }
let files : (string, file) Hashtbl.t = Hashtbl.create 8
let has_changed ~force_output { first; current } =
let contents = Mdx.Part.contents current in
if contents = Mdx.Part.contents first && force_output = false then None
else Some contents
let read_parts file =
try Hashtbl.find files file
with Not_found -> (
match Mdx.Part.read file with
| exception Sys_error msg -> failwith msg
| parts ->
let f = { first = parts; current = parts } in
Hashtbl.add files file f;
f)
let read_part file part =
let parts = read_parts file in
match Mdx.Part.find parts.current ~part with
| None ->
Fmt.failwith "Cannot find part %S in %s"
(match part with None -> "" | Some p -> p)
file
| Some lines ->
let contents = String.concat ~sep:"\n" lines in
String.drop contents ~rev:true ~sat:Char.Ascii.is_white
|> String.drop ~sat:(function '\n' -> true | _ -> false)
let write_parts ~force_output file parts =
let output_file = file ^ ".corrected" in
match has_changed ~force_output parts with
| None -> if Sys.file_exists output_file then Sys.remove output_file
| Some c ->
let oc = open_out output_file in
output_string oc c;
flush oc;
close_out oc
let update_block_content ?syntax ppf t content =
Block.pp_header ?syntax ppf t;
Fmt.string ppf "\n";
Output.pp ppf (`Output content);
Fmt.string ppf "\n";
Block.pp_footer ?syntax ppf t
let update_file_or_block ?syntax ?root ppf md_file ml_file block part =
let root = root_dir ?root ~block () in
let dir = Filename.dirname md_file in
let ml_file = resolve_root ml_file dir root in
update_block_content ?syntax ppf block (read_part ml_file part)
exception Test_block_failure of Block.t * string
let with_non_det ~on_skip_execution ~on_keep_old_output ~on_evaluation
non_deterministic = function
| Some Label.Nd_command when not non_deterministic -> on_skip_execution ()
| Some Label.Nd_output when not non_deterministic -> on_keep_old_output ()
| _ -> on_evaluation ()
let preludes ~prelude ~prelude_str =
let parse_str (env, content) = (env, [ content ]) in
let parse (env, file) = (env, Mdx.Util.File.read_lines file) in
match (prelude, prelude_str) with
| [], [] -> []
| [], fs -> List.map parse_str fs
| fs, [] -> List.map parse fs
| _ -> Fmt.failwith "only one of --prelude or --prelude-str should be used"
let run_exn ~non_deterministic ~silent_eval ~record_backtrace ~syntax ~silent
~verbose_findlib ~prelude ~prelude_str ~file ~section ~root ~force_output
~output ~directives ~packages ~predicates =
Printexc.record_backtrace record_backtrace;
let syntax =
match syntax with Some syntax -> Some syntax | None -> Syntax.infer ~file
in
let c =
Mdx_top.init ~verbose:(not silent_eval) ~silent ~verbose_findlib ~directives
~packages ~predicates ()
in
let preludes = preludes ~prelude ~prelude_str in
let test_block ~ppf ~temp_file t =
let print_block () = Block.pp ?syntax ppf t in
if Block.is_active ?section t then
match Block.value t with
| Raw _ -> print_block ()
| Include { file_included; file_kind = Fk_ocaml { part_included } } ->
assert (syntax <> Some Cram);
update_file_or_block ?syntax ?root ppf file file_included t
part_included
| Include { file_included; file_kind = Fk_other _ } ->
let new_content = read_part file_included None in
update_block_content ?syntax ppf t new_content
| OCaml { non_det; env; errors; header = _ } ->
let det () =
assert (syntax <> Some Cram);
Mdx_top.in_env env (fun () ->
eval_ocaml ~block:t ?syntax ?root c ppf errors)
in
with_non_det non_deterministic non_det ~on_skip_execution:print_block
~on_keep_old_output:det ~on_evaluation:det
| Cram { language = _; non_det } ->
let tests = Cram.of_lines t.contents in
with_non_det non_deterministic non_det ~on_skip_execution:print_block
~on_keep_old_output:(fun () ->
print_block ();
let unset_variables = Block.unset_variables t in
List.iter
(fun t -> ignore (run_test ?root unset_variables temp_file t))
tests.Cram.tests)
~on_evaluation:(fun () ->
run_cram_tests ?syntax t ?root ppf temp_file tests)
| Toplevel { non_det; env } ->
let phrases = Toplevel.of_lines ~loc:t.loc t.contents in
with_non_det non_deterministic non_det ~on_skip_execution:print_block
~on_keep_old_output:(fun () ->
assert (syntax <> Some Cram);
print_block ();
List.iter
(fun (phrase : Toplevel.t) ->
match
Mdx_top.in_env env (fun () ->
eval_test ~block:t ?root c phrase.command)
with
| Ok _ -> ()
| Error e ->
let output = List.map (fun l -> `Output l) e in
if Output.equal phrase.output output then ()
else err_eval ~cmd:phrase.command e)
phrases.tests)
~on_evaluation:(fun () ->
assert (syntax <> Some Cram);
Mdx_top.in_env env (fun () ->
run_toplevel_tests ?syntax ?root c ppf phrases t))
else print_block ()
in
let gen_corrected file_contents items =
let temp_file = Filename.temp_file "ocaml-mdx" ".output" in
at_exit (fun () -> Sys.remove temp_file);
let buf = Buffer.create (String.length file_contents + 1024) in
let ppf = Format.formatter_of_buffer buf in
let envs = Document.envs items in
let eval lines () = eval_raw ?root c lines in
let eval_in_env lines env = Mdx_top.in_env env (eval lines) in
List.iter
(function
| `All, lines -> Ocaml_env.Set.iter (eval_in_env lines) envs
| `One env, lines -> eval_in_env lines env)
preludes;
List.iter
(function
| (Mdx.Document.Section _ | Text _) as t -> Mdx.pp_line ?syntax ppf t
| Block t -> (
List.iter (fun (k, v) -> Unix.putenv k v) (Block.set_variables t);
try test_block ~ppf ~temp_file t
with Failure msg -> raise (Test_block_failure (t, msg))))
items;
Format.pp_print_flush ppf ();
Buffer.contents buf
in
(match output with
| Some `Stdout -> Mdx.run_to_stdout ?syntax ~f:gen_corrected file
| Some (`File outfile) ->
Mdx.run_to_file ?syntax ~outfile ~f:gen_corrected file
| None -> Mdx.run ?syntax ~force_output ~f:gen_corrected file)
>>! fun () ->
Hashtbl.iter (write_parts ~force_output) files;
0
module Package = struct
let unix = "unix"
let findlib_top = "findlib.top"
let findlib_internal = "findlib.internal"
let compilerlibs_toplevel = "compiler-libs.toplevel"
end
module Predicate = struct
let byte = "byte"
let toploop = "toploop"
end