Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 5.2 AST bump #331

Merged
merged 6 commits into from
Apr 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
a `QCheck2` integrated shrinking example
- Document `QCHECK_MSG_INTERVAL` introduced in 0.20
- Add `QCheck{,2}.Gen.map{4,5}` combinators
- [ppx_deriving_qcheck] Support `ppxlib.0.36.0` based on the OCaml 5.2 AST

## 0.24

Expand Down
4 changes: 2 additions & 2 deletions ppx_deriving_qcheck.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ depends: [
"dune" {>= "2.8.0"}
"ocaml" {>= "4.08.0"}
"qcheck-core" {>= "0.24"}
"ppxlib" {>= "0.22.0" & < "0.36.0"}
"ppx_deriving" {>= "5.2.1" & < "6.1.0"}
"ppxlib" {>= "0.36.0"}
"ppx_deriving" {>= "6.1.0"}
"odoc" {with-doc}
"alcotest" {with-test & >= "1.4.0" }
"qcheck-alcotest" {with-test & >= "0.24"}
Expand Down
10 changes: 8 additions & 2 deletions src/ppx_deriving_qcheck/ppx_deriving_qcheck.ml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,15 @@ let pattern_name pat : string =
the actual body using these args. *)
let rec args_and_body expr : (string list * expression) =
match expr.pexp_desc with
| Pexp_fun (Nolabel, _, pat, expr) ->
| Pexp_function (fargs, _constraint, Pfunction_body expr) ->
let (args, body) = args_and_body expr in
(pattern_name pat :: args, body)
let pats =
List.filter_map (function
| { pparam_desc = Pparam_val (Nolabel, _, p); _ } -> Some (pattern_name p)
| _ -> None
) fargs
in
(pats @ args, body)
| _ -> ([], expr)

(** {2. Recursive generators} *)
Expand Down
10 changes: 9 additions & 1 deletion test/ppx_deriving_qcheck/deriver/qcheck/test_textual.ml
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,15 @@ let test_recursive_poly_variant () =
let actual =
f @@ extract [%stri type 'a tree = [ `Leaf of 'a | `Node of 'a tree * 'a tree ]]
in
check_eq ~expected ~actual "deriving recursive polymorphic variants"
(* On OCaml 5.1 and earlier this test hits a cornercase of the ppxlib AST-mappings
to move the type annotation when pretty printed and ultimately fail this test
https://github.com/ocaml-ppx/ppxlib/blob/37d7ee13f4dcac44de5244a1c1e19652a5880075/astlib/migrate_501_502.ml#L173-L181
*)
let ocaml_release =
Scanf.sscanf Sys.ocaml_version "%i.%i" (fun major minor -> (major,minor)) in
if ocaml_release < (5,1)
then ()
else check_eq ~expected ~actual "deriving recursive polymorphic variants"

(* Regression test: https://github.com/c-cube/qcheck/issues/213 *)
let test_unused_variable () =
Expand Down
14 changes: 11 additions & 3 deletions test/ppx_deriving_qcheck/deriver/qcheck2/test_textual.ml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ let test_int64' () =
* ]
* in
* let actual = f @@ extract [%stri type t = Bytes.t ] in
*
*
* check_eq ~expected ~actual "deriving int64" *)

let test_tuple () =
Expand Down Expand Up @@ -454,7 +454,7 @@ let test_expr () =
| Lt of expr * expr]
in
check_eq ~expected ~actual "deriving expr"

let test_forest () =
let expected =
[
Expand Down Expand Up @@ -719,7 +719,15 @@ let test_recursive_poly_variant () =
let actual =
f @@ extract [%stri type 'a tree = [ `Leaf of 'a | `Node of 'a tree * 'a tree ]]
in
check_eq ~expected ~actual "deriving recursive polymorphic variants"
(* On OCaml 5.1 and earlier this test hits a cornercase of the ppxlib AST-mappings
to move the type annotation when pretty printed and ultimately fail this test
https://github.com/ocaml-ppx/ppxlib/blob/37d7ee13f4dcac44de5244a1c1e19652a5880075/astlib/migrate_501_502.ml#L173-L181
*)
let ocaml_release =
Scanf.sscanf Sys.ocaml_version "%i.%i" (fun major minor -> (major,minor)) in
if ocaml_release < (5,1)
then ()
else check_eq ~expected ~actual "deriving recursive polymorphic variants"

let () =
Alcotest.(
Expand Down