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
|
let passing =
QCheck.Test.make ~count:100 ~long_factor:100
~name:"list_rev_is_involutive"
QCheck.(list int_small)
(fun l -> List.rev (List.rev l) = l);;
let failing =
QCheck.Test.make ~count:10
~name:"should_fail_sort_id"
QCheck.(list_small nat_small)
(fun l -> l = List.sort compare l);;
exception Error
let error =
QCheck.Test.make ~count:10
~name:"should_error_raise_exn"
QCheck.int
(fun _ -> raise Error)
let collect =
QCheck.Test.make ~count:100 ~long_factor:100
~name:"collect_results"
QCheck.(make ~collect:string_of_int (Gen.int_bound 4))
(fun _ -> true)
let stats =
QCheck.Test.make ~count:100 ~long_factor:100
~name:"with_stats"
QCheck.(make (Gen.int_bound 120)
~stats:[
"mod4", (fun i->i mod 4);
"num", (fun i->i);
]
)
(fun _ -> true)
let neg_test_failing_as_expected =
QCheck.Test.make_neg ~name:"neg test pass (failing as expected)" QCheck.int_small (fun i -> i mod 2 = 0)
let neg_test_unexpected_success =
QCheck.Test.make_neg ~name:"neg test unexpected success" QCheck.int_small (fun i -> i + i = i * 2)
let neg_test_error =
QCheck.Test.make_neg ~name:"neg fail with error" QCheck.nat_small (fun _i -> raise Error)
let fun1 =
QCheck.Test.make ~count:100 ~long_factor:100
~name:"FAIL_pred_map_commute"
QCheck.(triple
(list_small nat_small)
(fun1 Observable.int int)
(fun1 Observable.int bool))
(fun (l,QCheck.Fun (_,f), QCheck.Fun (_,p)) ->
List.filter p (List.map f l) = List.map f (List.filter p l))
let fun2 =
QCheck.Test.make ~count:100
~name:"FAIL_fun2_pred_strings"
QCheck.(fun1 Observable.string bool)
(fun (QCheck.Fun (_,p)) ->
not (p "some random string") || p "some other string")
let bad_assume_warn =
QCheck.Test.make ~count:2_000
~name:"WARN_unlikely_precond"
QCheck.int
(fun x ->
QCheck.assume (x mod 100 = 1);
true)
let bad_assume_fail =
QCheck.Test.make ~count:2_000 ~if_assumptions_fail:(`Fatal, 0.1)
~name:"FAIL_unlikely_precond"
QCheck.int
(fun x ->
QCheck.assume (x mod 100 = 1);
true)
let int_gen = QCheck.nat_small (* int *)
(* Another example (false) property *)
let prop_foldleft_foldright =
let open QCheck in
Test.make ~name:"fold_left fold_right" ~count:1000 ~long_factor:20
(triple
int_gen
(list int_gen)
(fun2 Observable.int Observable.int int_gen))
(fun (z,xs,f) ->
let l1 = List.fold_right (Fn.apply f) xs z in
let l2 = List.fold_left (Fn.apply f) z xs in
if l1=l2 then true
else QCheck.Test.fail_reportf "l=%s, fold_left=%s, fold_right=%s@."
(QCheck.Print.(list int) xs)
(QCheck.Print.int l1)
(QCheck.Print.int l2)
)
(* Another example (false) property *)
let prop_foldleft_foldright_uncurry =
let open QCheck in
Test.make ~name:"fold_left fold_right uncurried" ~count:1000 ~long_factor:20
(triple
(fun1 Observable.(pair int int) int_gen)
int_gen
(list int_gen))
(fun (f,z,xs) ->
List.fold_right (fun x y -> Fn.apply f (x,y)) xs z =
List.fold_left (fun x y -> Fn.apply f (x,y)) z xs)
let long_shrink =
let open QCheck in
let listgen = list_size (Gen.int_range 1000 10000) int in
Test.make ~name:"long_shrink" (pair listgen listgen)
(fun (xs,ys) -> List.rev (xs@ys) = (List.rev xs)@(List.rev ys))
let find_ex =
let open QCheck in
Test.make ~name:"find_example" (2--50)
(fun n ->
let st = Random.State.make [| 0 |] in
let f m = n < m && m < 2 * n in
try
let m = find_example_gen ~rand:st ~count:100_000 ~f Gen.(0 -- 1000) in
f m
with No_example_found _ -> false)
let find_ex_uncaught_issue_99 : _ list =
let open QCheck in
let t1 =
let rs = make (find_example ~count:10 ~f:(fun _ -> false) Gen.int) in
Test.make ~name:"FAIL_#99_1" rs (fun _ -> true) in
let t2 =
Test.make ~name:"should_succeed_#99_2" ~count:10 int
(fun i -> i <= max_int) in
[t1;t2]
(* test shrinking on integers *)
let shrink_int =
QCheck.Test.make ~count:1000 ~name:"mod3_should_fail"
QCheck.int (fun i -> i mod 3 <> 0);;
let stats_negs =
QCheck.(Test.make ~count:5_000 ~name:"stats_neg"
(add_stat ("dist",fun x -> x) int_small))
(fun _ -> true)
type tree = Leaf of int | Node of tree * tree
let leaf x = Leaf x
let node x y = Node (x,y)
let gen_tree = QCheck.Gen.(sized @@ fix
(fun self n -> match n with
| 0 -> map leaf nat
| n ->
oneof_weighted
[1, map leaf nat;
2, map2 node (self (n/2)) (self (n/2))]
))
let rec rev_tree = function
| Node (x, y) -> Node (rev_tree y, rev_tree x)
| Leaf x -> Leaf x
let passing_tree_rev =
QCheck.Test.make ~count:1000
~name:"tree_rev_is_involutive"
QCheck.(make gen_tree)
(fun tree -> rev_tree (rev_tree tree) = tree)
let stats_tests =
let open QCheck in
[
Test.make ~name:"stat_display_test_1" ~count:1000 (add_stat ("dist",fun x -> x) int_small) (fun _ -> true);
Test.make ~name:"stat_display_test_2" ~count:1000 (add_stat ("dist",fun x -> x) nat_small) (fun _ -> true);
Test.make ~name:"stat_display_test_3" ~count:1000 (add_stat ("dist",fun x -> x) (int_range (-43643) 435434)) (fun _ -> true);
Test.make ~name:"stat_display_test_4" ~count:1000 (add_stat ("dist",fun x -> x) (int_range (-40000) 40000)) (fun _ -> true);
Test.make ~name:"stat_display_test_5" ~count:1000 (add_stat ("dist",fun x -> x) (int_range (-4) 4)) (fun _ -> true);
Test.make ~name:"stat_display_test_6" ~count:1000 (add_stat ("dist",fun x -> x) (int_range (-4) 17)) (fun _ -> true);
Test.make ~name:"stat_display_test_7" ~count:100000 (add_stat ("dist",fun x -> x) int) (fun _ -> true);
]
let () =
QCheck_runner.run_tests_main ([
passing;
failing;
error;
collect;
stats;
neg_test_failing_as_expected;
neg_test_unexpected_success;
neg_test_error;
fun1;
fun2;
prop_foldleft_foldright;
prop_foldleft_foldright_uncurry;
long_shrink;
find_ex;
shrink_int;
stats_negs;
bad_assume_warn;
bad_assume_fail;
passing_tree_rev;
] @ find_ex_uncaught_issue_99 @ stats_tests)
|