package ppx_test

  1. Overview
  2. Docs
A ppx replacement of pa_ounit

Install

Dune Dependency

Authors

Maintainers

Sources

ppx_test-1.8.0.tar.gz
md5=11571478e9dd5b3c04681e89a0106044
sha512=12e67fa5eff5bc7df6575d01ca7aa53d28a1ff044a007dd3791af13388311e8a6c2e1130cc2bd338415b229c6f101355a4205a9c905382248a1d7857773047ec

doc/src/ppx_test_plugin/ppx.ml.html

Source file ppx.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
open Ppxlib
open Ppxx.Helper
open Ppxx.Utils

let exp_of_position p =
  let open Lexing in
  let mklid s = at (lident "Lexing" $. s)
  in
  let open Exp in
  record [
    mklid "pos_fname", Exp.string p.pos_fname;
    mklid "pos_lnum",  Exp.int p.pos_lnum;
    mklid "pos_bol",   Exp.int p.pos_bol;
    mklid "pos_cnum",  Exp.int p.pos_cnum
  ] None

let exp_of_location l =
  let open Location in
  let mklid s = at ~loc:(ghost l) (Lident "Ppx_test" $. "Location" $. s) in
  let open Exp in
  record ~loc:l [
    mklid "loc_start", exp_of_position l.loc_start;
    mklid "loc_end",   exp_of_position l.loc_end;
    mklid "loc_ghost", bool l.loc_ghost
  ] None

let rec exp_of_longident =
  let open Exp in
  let mklid s = at (Lident "Ppx_test" $. "Longident" $. s) in
  function
    | Lident s ->
        construct (mklid "Lident") (Some (string s))
    | Ldot (t, s) ->
        construct (mklid "Ldot") (Some (tuple [exp_of_longident t; string s]))
    | Lapply (t1, t2) ->
        construct (mklid "Lapply") (Some (tuple [exp_of_longident t1; exp_of_longident t2]))

(* __FOR_PACKAGE__ special value *)

class extend_package = object
  inherit Ppxlib.Ast_traverse.map as super

  method! expression e = match e with
    | { pexp_desc = Pexp_ident { txt= Lident "__FOR_PACKAGE__"; loc } } ->
        begin match !Ocaml_common.Clflags.for_package with
        | None ->
            let open Exp in
            constraint_ ~loc
              (construct ~loc { txt = Lident "None"; loc } None)
              Typ.(constr { txt = Lident "option"; loc } [ constr { txt = Lident "string"; loc } [] ])
        | Some s ->
            Exp.construct ~loc {txt = Lident "Some"; loc } & Some (Exp.string s)
        end
    | _ -> super#expression e
  end

let with_ref ref update f =
  let back = !ref in
  update ();
  let res = f () in
  ref := back;
  res

let current_structure_or_signature : [ `Sig of signature | `Str of structure ] option ref = ref None

let _with_current_structure_or_signature x =
  with_ref
    current_structure_or_signature
    (fun () -> current_structure_or_signature := Some x)

(* It lacks the top module name, which should be obtained from Location *)

module Current_module_path = struct
  let x = ref None

  let top_module () =
    match !Ocaml_common.Location.input_name with
    | "//toplevel//" as s -> Lident s
    | fname ->
        let base = Filename.basename fname in
        let chopped = try Filename.chop_extension base with _ -> base in
        let mn = String.capitalize_ascii chopped in
        match !Ocaml_common.Clflags.for_package with
        | None -> Lident mn
        | Some p -> Ldot (Lident p, mn)

  let set y = x := Some y

  let get () = match !x with
    | None ->
        let y = top_module () in
        x := Some y;
        y
    | Some y -> y

  let with_ x f =
    let back = get () in
    set x;
    let res = f () in
    set back;
    res
end

(* This may creates an attribute with illegal expression ex.:
    [@ppx_test_module_path Test.F(A)]
   where Text.F(A) : Path.t is illegal for an exp.

   If we keep it in the PPX output, it is rejected by OCaml 4.03,
   so we must clean it.
*)
let attr_module_path ?loc mp =
  { attr_name = at "ppx_test_module_path";
    attr_payload = PStr [ Str.mk (Pstr_eval (Exp.ident (at mp), [])) ];
    attr_loc = def_loc loc
  }

let get_module_path_from_attr = function
  | { attr_name={ txt="ppx_test_module_path" };
      attr_payload= PStr [ {pstr_desc= Pstr_eval ({pexp_desc= Pexp_ident {txt}}, [])}];
      attr_loc= _ }-> Some txt
  | _ -> None

let get_module_path_from_attrs ats =
  match
    List.partition_map (fun a ->
      match get_module_path_from_attr a with
      | Some txt -> `Right txt
      | None -> `Left a) ats
  with
  | (rest, [x]) -> Some x, rest
  | (rest, [] ) -> None, rest
  | _ -> assert false

let rec annotate_module_expr mp mexp =
  let add mexp =
    with_loc mexp.pmod_loc & fun () ->
      { mexp with pmod_attributes = attr_module_path mp :: mexp.pmod_attributes } in
  match mexp.pmod_desc with
  | Pmod_structure _ -> add mexp
  | Pmod_constraint (mexp, mty) ->
      { mexp with pmod_desc = Pmod_constraint (annotate_module_expr mp mexp,
                                               annotate_module_type mp mty) }
  | Pmod_functor (Named (({txt=Some txt} as n), mtyo), mexp') ->
      let mp = Lapply(mp, Lident txt) in
      { mexp with pmod_desc = Pmod_functor (Named (n, mtyo), annotate_module_expr mp mexp') }
  | Pmod_functor (_, _mexp') -> assert false (* XXX *)
  | _ -> mexp

and annotate_module_type mp mty =
  let add mty = { mty with pmty_attributes = attr_module_path mp :: mty.pmty_attributes } in
  match mty.pmty_desc with
  | Pmty_signature _ -> add mty
  | _ -> mty

class extend_module_path_tracking = object
  (* just list up named structures and signatures *)
  inherit extend_package as super

  method! module_binding mb =
    match mb.pmb_name.txt with
    | None -> assert false (* XXX *)
    | Some txt ->
        let mp = Ldot (Current_module_path.get (), txt) in
        let mb = { mb with pmb_expr = annotate_module_expr mp mb.pmb_expr } in
        Current_module_path.with_ mp & fun () ->
          super#module_binding mb

  method! module_declaration md =
    match md.pmd_name.txt with
    | None -> assert false (* XXX *)
    | Some txt ->
        let mp = Ldot (Current_module_path.get (), txt) in
        let md = { md with pmd_type = annotate_module_type mp md.pmd_type } in
        Current_module_path.with_ mp & fun () ->
          super#module_declaration md

  method! module_expr mexp =
    match get_module_path_from_attrs mexp.pmod_attributes with
    | Some mp, rest ->
        Current_module_path.with_ mp & fun () ->
          super#module_expr {mexp with pmod_attributes = rest}
    | None, rest ->
        let mp = Ldot (Current_module_path.get (), "_") in
        Current_module_path.with_ mp & fun () ->
          super#module_expr {mexp with pmod_attributes = rest}

  method! module_type mty =
    match get_module_path_from_attrs mty.pmty_attributes with
    | Some mp, rest ->
        Current_module_path.with_ mp & fun () ->
          super#module_type { mty with pmty_attributes = rest }
    | None, rest ->
        let mp = Ldot (Current_module_path.get (), "_") in
        Current_module_path.with_ mp & fun () ->
          super#module_type { mty with pmty_attributes = rest }
  end

(*    [let %TEST name = e]    *)

type test_type = Unit | Bool | Fail

let drop_tests = ref false
let warn_dupes = ref false
let top_name = ref None

let rec lident_concat l1 = function
  | Lident s -> Ldot (l1, s)
  | Ldot (t, s) -> Ldot (lident_concat l1 t, s)
  | Lapply (t1, t2) -> Lapply (lident_concat l1 t1, t2)

let return_type lid =
  match lid with
  | Lident s | Ldot (_, s) ->
      if s.[String.length s - 1] = '_' then Unit
      else if String.(length s > 5 && sub s (length s - 5) 5 = "_fail") then Fail
      else Bool
  | _ -> Bool

let add_top_name lid =
  match !top_name with
  | None -> lid
  | Some top_lid -> lident_concat top_lid lid

module Tests = Stdlib.Set.Make(struct type t = Longident.t let compare = compare end)

let tests = ref Tests.empty

let add_test loc lid =
  (* Reject registeration of duped name *)
  let anon = function
    | Lident "_" -> true
    | Lident _ -> false
    | Ldot(_, "_") -> true
    | Ldot(_, _) -> false
    | Lapply _ -> assert false
  in
  if anon lid then ()
  else
    if Tests.mem lid !tests then begin
      if !warn_dupes then
        warnf "%a: ppx_test: Test name %s is already defined"
          Location.format loc
          (Format.sprintf "%a" Longident.format lid)
    end else tests := Tests.add lid !tests

let test_item mapper test = function
  | Pstr_eval (e, _attr) -> (* unnamed boolean test *)
      let name =
        let lid = Current_module_path.get () in
        let mpath = Ldot (lid, "_") in
        add_top_name & mpath
      in
      let test = "test" in
      (* Build [Ppx_test.test/test_ ~loc name (fun () -> e)] *)
      let open Exp in
      Str.value Nonrecursive [
        Vb.mk (Pat.unit ())
        & open_lid (lid "PTest.TestTool")
        & apply
          (ident & at & Lident "PTest" $. test)
          [ Nolabel, exp_of_location e.pexp_loc;
            Nolabel, exp_of_longident name;
            Nolabel, fun_ Nolabel None (Pat.unit ()) (mapper#expression e) ]
      ]

  | Pstr_value (Nonrecursive, vbs) ->
      let f vb =
        let loc = vb.pvb_loc in
        let name = match vb.pvb_pat with
          | { ppat_desc = Ppat_any } ->
              let lid = Current_module_path.get () in
              let mpath = Ldot (lid, "_") in
              add_top_name & mpath
          | { ppat_desc = Ppat_constant (Pconst_string (name, _, _)) } ->
              let mpath = Current_module_path.get () in
              add_top_name & lident_concat mpath (Lident name)
          | { ppat_desc = Ppat_var {txt=name} } ->
              let lid = Current_module_path.get () in
              let mpath = Ldot (lid, name) in
              add_top_name & mpath
          | { ppat_desc = Ppat_construct ({ txt= lid }, None) } ->
              let mpath = Current_module_path.get () in
              add_top_name & lident_concat mpath lid
          | _ -> assert false
        in
        (* Check duped test names *)
        add_test loc name;
        let return_type = match test with
          | "TEST_UNIT" -> Unit
          | "TEST" -> return_type name
          | "TEST_FAIL" -> Fail
          | _ -> assert false
        in
        let test = match return_type with
          | Unit -> "test_unit"
          | Bool -> "test"
          | Fail -> "test_fail"
        in
        (* Build [Ppx_test.test/test_ ~loc name (fun () -> e)] *)
        let open Exp in
        Vb.mk (Pat.unit ())
          (apply
             (ident & at & Lident "PTest" $. test)
             [ Nolabel, exp_of_location loc;
               Nolabel, exp_of_longident name;
               Nolabel, fun_ Nolabel None (Pat.unit ()) (mapper#expression vb.pvb_expr) ])
      in
      Str.value Nonrecursive (List.map f vbs)
  | _ -> assert false

class extend_let_test = object (self)
  inherit extend_module_path_tracking (* as super *)

  method structure_item' = function
    | { pstr_desc= Pstr_extension ( ( { txt = ("TEST" | "TEST_UNIT" | "TEST_FAIL") }, _ ), _) } when !drop_tests -> []

    (* let %TEST p = e   or   [%%TEST ...] *)
    | { pstr_desc=
          Pstr_extension (
            ( { txt = ("TEST" | "TEST_UNIT" | "TEST_FAIL") }, _ ),
            _) } as sitem when !drop_tests ->
        [ { sitem with pstr_desc= Pstr_eval (Exp.unit (), []) } ]

    (* let %TEST p = e
       or [%%TEST let p = e]
    *)
    | { pstr_desc=
          Pstr_extension (
            ( { txt = ("TEST" | "TEST_UNIT" | "TEST_FAIL" as test) },
              PStr [ { pstr_desc= (Pstr_value (Nonrecursive, _vbs) as desc)} ]),
            _) } ->
        [ test_item self test desc ]

    (* [%%TEST ...], more general case
    *)
    | { pstr_desc=
          Pstr_extension (
            ( { txt = ("TEST" as test) },
              PStr sitems),
            _) } ->
        List.map (fun sitem -> test_item self test sitem.pstr_desc) sitems

    | x -> [ self#structure_item x ]

  method! structure sitems =
    List.concat & List.map self#structure_item' sitems
  end

(*
    let cp = Current_module_path.get () in
    (* CR jfuruse: BUG: This is not good. Internal anonymous structure consume the doctest. Actually doctest comment is PStr therefore it consumes itself! *)
    let matched, non_matched = List.partition (fun (cp',_tests) -> cp = cp') !doctests in
    doctests := non_matched;
    let tests = List.(concat_map snd & rev matched) in
    let tests = List.map (fun (loc, s) ->
      (* CR jfuruse: need to incremtn loc_start *)
      let lexbuf = Doctest.Lexing.from_string_with_position s loc.Location.loc_start in
      Lexer.init ();
      let e = Parser.parse_expression Lexer.token lexbuf in
      let open Exp in
      let name = None in
      Str.value Nonrecursive [
        Vb.mk Pat.unit
          (apply
             (ident & at & Lident "PTest" $. "test")
             [ "", exp_of_location e.pexp_loc;
               "", option & Option.map exp_of_longident name;
               "", fun_ "" None Pat.unit (self.expr self e) ])
      ]
    ) tests
    in
    is @ tests
*)

let make_mapper () =
  current_structure_or_signature := None;
  Current_module_path.x := None; (* filled lazily when Location.input_name is set *)
  tests := Tests.empty; (* no trans module border test name checks *)
  new extend_let_test

let parse_as_lident s = match Longident.parse s with
  | Lident "" -> None
  | l -> Some l

let opts =
  [ "-drop-tests", Arg.Set drop_tests, "Drop tests"

  ; "-warn-dupes", Arg.Set warn_dupes, "Warn tests with the same names"
  ; "-top-name",
    Arg.String (fun s ->
      match parse_as_lident s with
      | None -> raise_errorf "-top-name must take a valid module path"
      | Some l -> top_name := Some l),
    "Set the top module name"
  ]

let () =
  List.iter (fun (k,spec,doc) -> Driver.add_arg k spec ~doc) opts;
  Driver.register_transformation
    ~impl: (make_mapper ())#structure
    ~intf: (make_mapper ())#signature
    "ppx_test"
OCaml

Innovation. Community. Security.