1 (* "exe" is for status of execution (whether any exceptions were raised)
2 * "out" is for status of output comparison (whether what was outputted is
5 * code |> pass_a_exe |> pass_a_out |> ... |> pass_z_exe |> pass_z_out
18 * name | pass a | ... | pass z
19 * ---------+--------+-----+--------
20 * exe foo | OK | ... | OK
21 * out foo | OK | ... | ERROR
27 module List = ListLabels
28 module String = StringLabels
33 val map : 'a t -> ('a -> 'b) -> 'b t
40 | Some x -> Some (f x)
43 (* TODO: ~expect:Output of 'a | Exception of (exn -> bool) *)
47 ; out_lexing : (Tiger_parser.token list) option
48 ; out_parsing : Tiger_absyn.t option
49 ; is_error_expected_semant : (Tiger_error.t -> bool) option
58 let color_to_ansi_code = function
60 | Yellow -> "\027[0;33m"
61 | Green -> "\027[0;32m"
63 let color color string =
64 let color_on = color_to_ansi_code color in
65 let color_off = "\027[0m" in
66 sprintf "%s%s%s" color_on string color_off
68 let status indicator info =
71 | _ -> sprintf "%s: %s" indicator info
73 (* TODO: Perhaps a global option whether to print non-fail info? *)
74 let status_pass ?(info="") () =
75 status (color Green "Pass") info
77 let status_fail ?(info="") () =
78 status (color Red "Fail") info
80 let status_skip ?(info="") () =
81 (*let indicator = (color Yellow "Skip") in*)
82 let indicator = "Skip" in
88 ?(is_error_expected_semant=None)
96 ; is_error_expected_semant
99 let bar_sep = String.make 80 '-'
100 let bar_end = String.make 80 '='
103 let unit_spaces = 2 in
105 String.make (n * unit_spaces) ' '
107 let lexbuf_set_filename lb filename
110 let Lexing.({lex_start_p; lex_curr_p; _}) = lb in
111 lb.Lexing.lex_start_p <- {lex_start_p with Lexing.pos_fname = filename};
112 lb.Lexing.lex_curr_p <- {lex_curr_p with Lexing.pos_fname = filename}
114 let lexbuf_create ~filename ~code =
115 let lb = Lexing.from_string code in
116 lexbuf_set_filename lb filename;
119 let pass_lexing ~fake_filename ~code
120 : (Tiger_parser.token list, string) result
122 let lexbuf = lexbuf_create ~filename:fake_filename ~code in
124 let token = Tiger_lexer.token lexbuf in
125 (* Avoiding fragile pattern-matching *)
126 if token = Tiger_parser.EOF then [] else token :: tokens ()
129 | exception e -> Error (Printexc.to_string e)
130 | tokens -> Ok tokens
132 let pass_parsing ~fake_filename ~code
133 : (Tiger_absyn.t, string) result
135 let lb = lexbuf_create ~filename:fake_filename ~code in
136 match Tiger_parser.program Tiger_lexer.token lb with
137 | exception Parsing.Parse_error ->
138 let module L = Lexing in
139 let L.({lex_curr_p = {pos_lnum=l; pos_bol=b; pos_cnum=c; _}; _}) = lb in
140 let msg = sprintf "Syntax error around line: %d, column: %d" l (c - b) in
145 let pass_semant (absyn_opt : Tiger_absyn.t option)
146 : (unit, string) result
150 Error "AST not provided"
152 Ok (Tiger_semant.transProg absyn)
156 let p_ln = print_newline
157 let p_indent n = p "%s" (indent n)
160 let failure_count = ref 0 in
161 let run_pass ~f ~expect_output ~is_error_expected =
162 let is_error_expected =
163 match is_error_expected with
164 | None -> (fun _ -> false)
167 let output_status = "n/a" in
168 let output_value = None in
171 let execution_status =
173 | Tiger_error.T e when is_error_expected e ->
174 status_pass () (*~info:(Tiger_error.to_string e)*)
177 status_fail () ~info:(Tiger_error.to_string e)
180 status_fail () ~info:(Printexc.to_string e)
189 ( status_fail ~info ()
194 let execution_status = status_pass () in
197 Option.map expect_output (fun expected -> expected = produced)
200 status_skip () (*~info:"expected output not provided"*)
207 let output_value = Some produced in
208 (execution_status, output_status, output_value)
210 let test_case_count = ref 0 in
217 ; is_error_expected_semant
220 incr test_case_count;
221 let (stat_lex_exe, stat_lex_out_cmp, _) =
223 ~f:(fun () -> pass_lexing ~fake_filename:name ~code)
224 ~expect_output:out_lexing
225 ~is_error_expected:None
227 let (stat_pars_exe, stat_pars_out_cmp, absyn_opt) =
229 ~f:(fun () -> pass_parsing ~fake_filename:name ~code)
230 ~expect_output:out_parsing
231 ~is_error_expected:None
233 let (stat_semant_exe, stat_semant_out_cmp, _) =
235 ~f:(fun () -> pass_semant absyn_opt)
236 ~expect_output:(Some ())
237 ~is_error_expected:is_error_expected_semant
239 p "%s" bar_sep; p_ln ();
240 p "Test: %S" name; p_ln ();
241 p_indent 1; p "Lexing:"; p_ln ();
242 p_indent 2; p "exe: %s" stat_lex_exe ; p_ln ();
243 p_indent 2; p "out: %s" stat_lex_out_cmp; p_ln ();
244 p_indent 1; p "Parsing:"; p_ln ();
245 p_indent 2; p "exe: %s" stat_pars_exe ; p_ln ();
246 p_indent 2; p "out: %s" stat_pars_out_cmp; p_ln ();
247 p_indent 1; p "Semantic Analysis:"; p_ln ();
248 p_indent 2; p "exe: %s" stat_semant_exe ; p_ln ();
249 p_indent 2; p "out: %s" stat_semant_out_cmp; p_ln ();
251 p "%s" bar_end; p_ln ();
254 s "%d failures in %d test cases" !failure_count !test_case_count
256 match !failure_count with
257 | 0 -> status_pass () ~info
258 | _ -> status_fail () ~info
261 p "%s" bar_end; p_ln ();