author | bulwahn |
Wed, 21 Jul 2010 18:11:51 +0200 | |
changeset 37911 | 8f99e3880864 |
parent 37910 | 555287ba8d8d |
child 37912 | 247042107f93 |
permissions | -rw-r--r-- |
30824 | 1 |
(* Title: Tools/quickcheck.ML |
28256 | 2 |
Author: Stefan Berghofer, Florian Haftmann, TU Muenchen |
3 |
||
4 |
Generic counterexample search engine. |
|
5 |
*) |
|
6 |
||
7 |
signature QUICKCHECK = |
|
8 |
sig |
|
37910
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
9 |
val setup: theory -> theory |
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
10 |
(* configuration *) |
32740 | 11 |
val auto: bool Unsynchronized.ref |
34948
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
bulwahn
parents:
34128
diff
changeset
|
12 |
val timing : bool Unsynchronized.ref |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
13 |
datatype report = Report of |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
14 |
{ iterations : int, raised_match_errors : int, |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
15 |
satisfied_assms : int list, positive_concl_tests : int } |
37910
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
16 |
datatype test_params = Test_Params of |
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
17 |
{ size: int, iterations: int, default_type: typ list, no_assms: bool, report: bool, quiet : bool}; |
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
18 |
val test_params_of: theory -> test_params |
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
19 |
val add_generator: |
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
20 |
string * (Proof.context -> bool -> term -> int -> term list option * (bool list * bool)) |
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
21 |
-> theory -> theory |
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
22 |
(* testing terms and proof states *) |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
23 |
val gen_test_term: Proof.context -> bool -> bool -> string option -> int -> int -> term -> |
35380
6ac5b81a763d
adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents:
35379
diff
changeset
|
24 |
(string * term) list option * ((string * int) list * ((int * report list) list) option) |
30980 | 25 |
val test_term: Proof.context -> bool -> string option -> int -> int -> term -> |
26 |
(string * term) list option |
|
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
27 |
val quickcheck: (string * string list) list -> int -> Proof.state -> (string * term) list option |
28256 | 28 |
end; |
29 |
||
30 |
structure Quickcheck : QUICKCHECK = |
|
31 |
struct |
|
32 |
||
30980 | 33 |
(* preferences *) |
34 |
||
32740 | 35 |
val auto = Unsynchronized.ref false; |
30980 | 36 |
|
34948
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
bulwahn
parents:
34128
diff
changeset
|
37 |
val timing = Unsynchronized.ref false; |
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
bulwahn
parents:
34128
diff
changeset
|
38 |
|
30980 | 39 |
val _ = |
40 |
ProofGeneralPgip.add_preference Preferences.category_tracing |
|
32966
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32859
diff
changeset
|
41 |
(setmp_CRITICAL auto true (fn () => |
30980 | 42 |
Preferences.bool_pref auto |
43 |
"auto-quickcheck" |
|
33561
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
44 |
"Whether to run Quickcheck automatically.") ()); |
30980 | 45 |
|
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
46 |
(* quickcheck report *) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
47 |
|
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
48 |
datatype single_report = Run of bool list * bool | MatchExc |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
49 |
|
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
50 |
datatype report = Report of |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
51 |
{ iterations : int, raised_match_errors : int, |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
52 |
satisfied_assms : int list, positive_concl_tests : int } |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
53 |
|
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
54 |
fun collect_single_report single_report |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
55 |
(Report {iterations = iterations, raised_match_errors = raised_match_errors, |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
56 |
satisfied_assms = satisfied_assms, positive_concl_tests = positive_concl_tests}) = |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
57 |
case single_report |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
58 |
of MatchExc => |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
59 |
Report {iterations = iterations + 1, raised_match_errors = raised_match_errors + 1, |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
60 |
satisfied_assms = satisfied_assms, positive_concl_tests = positive_concl_tests} |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
61 |
| Run (assms, concl) => |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
62 |
Report {iterations = iterations + 1, raised_match_errors = raised_match_errors, |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
63 |
satisfied_assms = |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
64 |
map2 (fn b => fn s => if b then s + 1 else s) assms |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
65 |
(if null satisfied_assms then replicate (length assms) 0 else satisfied_assms), |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
66 |
positive_concl_tests = if concl then positive_concl_tests + 1 else positive_concl_tests} |
30973
304ab57afa6e
observe distinction between Pure/Tools and Tools more closely
haftmann
parents:
30824
diff
changeset
|
67 |
|
28315 | 68 |
(* quickcheck configuration -- default parameters, test generators *) |
69 |
||
28309 | 70 |
datatype test_params = Test_Params of |
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
71 |
{ size: int, iterations: int, default_type: typ list, no_assms: bool, report: bool, quiet : bool}; |
28309 | 72 |
|
35379 | 73 |
fun dest_test_params (Test_Params { size, iterations, default_type, no_assms, report, quiet }) = |
74 |
((size, iterations), ((default_type, no_assms), (report, quiet))); |
|
75 |
fun make_test_params ((size, iterations), ((default_type, no_assms), (report, quiet))) = |
|
34128
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
76 |
Test_Params { size = size, iterations = iterations, default_type = default_type, |
35379 | 77 |
no_assms = no_assms, report = report, quiet = quiet }; |
78 |
fun map_test_params f (Test_Params { size, iterations, default_type, no_assms, report, quiet }) = |
|
79 |
make_test_params (f ((size, iterations), ((default_type, no_assms), (report, quiet)))); |
|
34128
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
80 |
fun merge_test_params (Test_Params { size = size1, iterations = iterations1, default_type = default_type1, |
35379 | 81 |
no_assms = no_assms1, report = report1, quiet = quiet1 }, |
34128
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
82 |
Test_Params { size = size2, iterations = iterations2, default_type = default_type2, |
35379 | 83 |
no_assms = no_assms2, report = report2, quiet = quiet2 }) = |
31599 | 84 |
make_test_params ((Int.max (size1, size2), Int.max (iterations1, iterations2)), |
37911 | 85 |
((merge (op =) (default_type1, default_type2), no_assms1 orelse no_assms2), |
35379 | 86 |
(report1 orelse report2, quiet1 orelse quiet2))); |
28309 | 87 |
|
33522 | 88 |
structure Data = Theory_Data |
89 |
( |
|
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
90 |
type T = (string * (Proof.context -> bool -> term -> int -> term list option * (bool list * bool))) list |
28309 | 91 |
* test_params; |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
92 |
val empty = ([], Test_Params |
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
93 |
{ size = 10, iterations = 100, default_type = [], no_assms = false, report = false, quiet = false}); |
28256 | 94 |
val extend = I; |
33522 | 95 |
fun merge ((generators1, params1), (generators2, params2)) : T = |
96 |
(AList.merge (op =) (K true) (generators1, generators2), |
|
28309 | 97 |
merge_test_params (params1, params2)); |
33522 | 98 |
); |
28256 | 99 |
|
37910
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
100 |
val test_params_of = snd o Data.get; |
555287ba8d8d
reordering quickcheck signature; exporting test_params and inspection function
bulwahn
parents:
37909
diff
changeset
|
101 |
|
28309 | 102 |
val add_generator = Data.map o apfst o AList.update (op =); |
103 |
||
28315 | 104 |
(* generating tests *) |
105 |
||
28309 | 106 |
fun mk_tester_select name ctxt = |
107 |
case AList.lookup (op =) ((fst o Data.get o ProofContext.theory_of) ctxt) name |
|
108 |
of NONE => error ("No such quickcheck generator: " ^ name) |
|
109 |
| SOME generator => generator ctxt; |
|
110 |
||
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
111 |
fun mk_testers ctxt report t = |
28309 | 112 |
(map snd o fst o Data.get o ProofContext.theory_of) ctxt |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
113 |
|> map_filter (fn generator => try (generator ctxt report) t); |
28309 | 114 |
|
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
115 |
fun mk_testers_strict ctxt report t = |
28309 | 116 |
let |
117 |
val generators = ((map snd o fst o Data.get o ProofContext.theory_of) ctxt) |
|
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
118 |
val testers = map (fn generator => Exn.capture (generator ctxt report) t) generators; |
28309 | 119 |
in if forall (is_none o Exn.get_result) testers |
120 |
then [(Exn.release o snd o split_last) testers] |
|
121 |
else map_filter Exn.get_result testers |
|
122 |
end; |
|
123 |
||
28315 | 124 |
|
125 |
(* testing propositions *) |
|
126 |
||
28309 | 127 |
fun prep_test_term t = |
128 |
let |
|
29266 | 129 |
val _ = (null (Term.add_tvars t []) andalso null (Term.add_tfrees t [])) orelse |
28309 | 130 |
error "Term to be tested contains type variables"; |
29266 | 131 |
val _ = null (Term.add_vars t []) orelse |
28309 | 132 |
error "Term to be tested contains schematic variables"; |
31138 | 133 |
val frees = Term.add_frees t []; |
28309 | 134 |
in (map fst frees, list_abs_free (frees, t)) end |
28256 | 135 |
|
35324
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
136 |
fun cpu_time description f = |
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
137 |
let |
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
138 |
val start = start_timing () |
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
139 |
val result = Exn.capture f () |
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
140 |
val time = Time.toMilliseconds (#cpu (end_timing start)) |
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
141 |
in (Exn.release result, (description, time)) end |
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
142 |
|
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
143 |
fun gen_test_term ctxt quiet report generator_name size i t = |
28309 | 144 |
let |
145 |
val (names, t') = prep_test_term t; |
|
35324
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
146 |
val (testers, comp_time) = cpu_time "quickcheck compilation" |
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
147 |
(fn () => (case generator_name |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
148 |
of NONE => if quiet then mk_testers ctxt report t' else mk_testers_strict ctxt report t' |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
149 |
| SOME name => [mk_tester_select name ctxt report t'])); |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
150 |
fun iterate f 0 report = (NONE, report) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
151 |
| iterate f j report = |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
152 |
let |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
153 |
val (test_result, single_report) = apsnd Run (f ()) handle Match => (if quiet then () |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
154 |
else warning "Exception Match raised during quickcheck"; (NONE, MatchExc)) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
155 |
val report = collect_single_report single_report report |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
156 |
in |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
157 |
case test_result of NONE => iterate f (j - 1) report | SOME q => (SOME q, report) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
158 |
end |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
159 |
val empty_report = Report { iterations = 0, raised_match_errors = 0, |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
160 |
satisfied_assms = [], positive_concl_tests = 0 } |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
161 |
fun with_testers k [] = (NONE, []) |
28309 | 162 |
| with_testers k (tester :: testers) = |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
163 |
case iterate (fn () => tester (k - 1)) i empty_report |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
164 |
of (NONE, report) => apsnd (cons report) (with_testers k testers) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
165 |
| (SOME q, report) => (SOME q, [report]); |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
166 |
fun with_size k reports = if k > size then (NONE, reports) |
28309 | 167 |
else (if quiet then () else priority ("Test data size: " ^ string_of_int k); |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
168 |
let |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
169 |
val (result, new_report) = with_testers k testers |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
170 |
val reports = ((k, new_report) :: reports) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
171 |
in case result of NONE => with_size (k + 1) reports | SOME q => (SOME q, reports) end); |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
172 |
val ((result, reports), exec_time) = cpu_time "quickcheck execution" |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
173 |
(fn () => apfst |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
174 |
(fn result => case result of NONE => NONE |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
175 |
| SOME ts => SOME (names ~~ ts)) (with_size 1 [])) |
34948
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
bulwahn
parents:
34128
diff
changeset
|
176 |
in |
35380
6ac5b81a763d
adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents:
35379
diff
changeset
|
177 |
(result, ([exec_time, comp_time], if report then SOME reports else NONE)) |
28309 | 178 |
end; |
179 |
||
35324
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
180 |
fun test_term ctxt quiet generator_name size i t = |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
181 |
fst (gen_test_term ctxt quiet false generator_name size i t) |
35324
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents:
35077
diff
changeset
|
182 |
|
28309 | 183 |
fun monomorphic_term thy insts default_T = |
184 |
let |
|
185 |
fun subst (T as TFree (v, S)) = |
|
186 |
let |
|
187 |
val T' = AList.lookup (op =) insts v |
|
188 |
|> the_default (the_default T default_T) |
|
28315 | 189 |
in if Sign.of_sort thy (T, S) then T' |
28309 | 190 |
else error ("Type " ^ Syntax.string_of_typ_global thy T ^ |
191 |
" to be substituted for variable " ^ |
|
192 |
Syntax.string_of_typ_global thy T ^ "\ndoes not have sort " ^ |
|
193 |
Syntax.string_of_sort_global thy S) |
|
194 |
end |
|
195 |
| subst T = T; |
|
196 |
in (map_types o map_atyps) subst end; |
|
197 |
||
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
198 |
fun test_goal quiet report generator_name size iterations default_T no_assms insts i assms state = |
28309 | 199 |
let |
200 |
val ctxt = Proof.context_of state; |
|
201 |
val thy = Proof.theory_of state; |
|
202 |
fun strip (Const ("all", _) $ Abs (_, _, t)) = strip t |
|
203 |
| strip t = t; |
|
33291 | 204 |
val {goal = st, ...} = Proof.raw_goal state; |
28309 | 205 |
val (gi, frees) = Logic.goal_params (prop_of st) i; |
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
206 |
val default_T' = |
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
207 |
case default_T of |
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
208 |
[] => NONE |
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
209 |
| [T] => SOME T |
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
210 |
| _ => error "Multiple default types not yet supported" |
34128
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
211 |
val gi' = Logic.list_implies (if no_assms then [] else assms, |
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
212 |
subst_bounds (frees, strip gi)) |
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
213 |
|> monomorphic_term thy insts default_T' |
35625 | 214 |
|> Object_Logic.atomize_term thy; |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
215 |
in gen_test_term ctxt quiet report generator_name size iterations gi' end; |
28315 | 216 |
|
35077
c1dac8ace020
make Quickcheck identify itself, so people don't submit bug reports to me thinking that it was Nitpick
blanchet
parents:
34948
diff
changeset
|
217 |
fun pretty_counterex ctxt NONE = Pretty.str "Quickcheck found no counterexample." |
28315 | 218 |
| pretty_counterex ctxt (SOME cex) = |
35077
c1dac8ace020
make Quickcheck identify itself, so people don't submit bug reports to me thinking that it was Nitpick
blanchet
parents:
34948
diff
changeset
|
219 |
Pretty.chunks (Pretty.str "Quickcheck found a counterexample:\n" :: |
28315 | 220 |
map (fn (s, t) => |
221 |
Pretty.block [Pretty.str (s ^ " ="), Pretty.brk 1, Syntax.pretty_term ctxt t]) cex); |
|
222 |
||
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
223 |
fun pretty_report (Report {iterations = iterations, raised_match_errors = raised_match_errors, |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
224 |
satisfied_assms = satisfied_assms, positive_concl_tests = positive_concl_tests}) = |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
225 |
let |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
226 |
fun pretty_stat s i = Pretty.block ([Pretty.str (s ^ ": " ^ string_of_int i)]) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
227 |
in |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
228 |
([pretty_stat "iterations" iterations, |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
229 |
pretty_stat "match exceptions" raised_match_errors] |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
230 |
@ map_index (fn (i, n) => pretty_stat ("satisfied " ^ string_of_int (i + 1) ^ ". assumption") n) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
231 |
satisfied_assms |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
232 |
@ [pretty_stat "positive conclusion tests" positive_concl_tests]) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
233 |
end |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
234 |
|
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
235 |
fun pretty_reports' [report] = [Pretty.chunks (pretty_report report)] |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
236 |
| pretty_reports' reports = |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
237 |
map_index (fn (i, report) => |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
238 |
Pretty.chunks (Pretty.str (string_of_int (i + 1) ^ ". generator:\n") :: pretty_report report)) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
239 |
reports |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
240 |
|
35380
6ac5b81a763d
adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents:
35379
diff
changeset
|
241 |
fun pretty_reports ctxt (SOME reports) = |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
242 |
Pretty.chunks (Pretty.str "Quickcheck report:" :: |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
243 |
maps (fn (size, reports) => |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
244 |
Pretty.str ("size " ^ string_of_int size ^ ":") :: pretty_reports' reports @ [Pretty.brk 1]) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
245 |
(rev reports)) |
35380
6ac5b81a763d
adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents:
35379
diff
changeset
|
246 |
| pretty_reports ctxt NONE = Pretty.str "" |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
247 |
|
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
248 |
fun pretty_counterex_and_reports ctxt (cex, (timing, reports)) = |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
249 |
Pretty.chunks [pretty_counterex ctxt cex, pretty_reports ctxt reports] |
28315 | 250 |
|
251 |
(* automatic testing *) |
|
28309 | 252 |
|
33561
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
253 |
fun auto_quickcheck state = |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
254 |
if not (!auto) then |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
255 |
(false, state) |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
256 |
else |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
257 |
let |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
258 |
val ctxt = Proof.context_of state; |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
259 |
val assms = map term_of (Assumption.all_assms_of ctxt); |
35379 | 260 |
val Test_Params { size, iterations, default_type, no_assms, report, quiet } = |
33561
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
261 |
(snd o Data.get o Proof.theory_of) state; |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
262 |
val res = |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
263 |
try (test_goal true false NONE size iterations default_type no_assms [] 1 assms) state; |
33561
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
264 |
in |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
265 |
case res of |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
266 |
NONE => (false, state) |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
267 |
| SOME (NONE, report) => (false, state) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
268 |
| SOME (cex, report) => (true, Proof.goal_message (K (Pretty.chunks [Pretty.str "", |
33561
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
269 |
Pretty.mark Markup.hilite (pretty_counterex ctxt cex)])) state) |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
270 |
end |
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
271 |
|
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents:
33560
diff
changeset
|
272 |
val setup = Auto_Counterexample.register_tool ("quickcheck", auto_quickcheck) |
28315 | 273 |
|
274 |
||
30980 | 275 |
(* Isar commands *) |
28315 | 276 |
|
28336 | 277 |
fun read_nat s = case (Library.read_int o Symbol.explode) s |
278 |
of (k, []) => if k >= 0 then k |
|
279 |
else error ("Not a natural number: " ^ s) |
|
280 |
| (_, _ :: _) => error ("Not a natural number: " ^ s); |
|
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
281 |
|
34128
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
282 |
fun read_bool "false" = false |
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
283 |
| read_bool "true" = true |
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
284 |
| read_bool s = error ("Not a Boolean value: " ^ s) |
28315 | 285 |
|
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
286 |
fun parse_test_param ctxt ("size", [arg]) = |
28336 | 287 |
(apfst o apfst o K) (read_nat arg) |
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
288 |
| parse_test_param ctxt ("iterations", [arg]) = |
28336 | 289 |
(apfst o apsnd o K) (read_nat arg) |
290 |
| parse_test_param ctxt ("default_type", arg) = |
|
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
291 |
(apsnd o apfst o apfst o K) (map (ProofContext.read_typ ctxt) arg) |
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
292 |
| parse_test_param ctxt ("no_assms", [arg]) = |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
293 |
(apsnd o apfst o apsnd o K) (read_bool arg) |
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
294 |
| parse_test_param ctxt ("report", [arg]) = |
35379 | 295 |
(apsnd o apsnd o apfst o K) (read_bool arg) |
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
296 |
| parse_test_param ctxt ("quiet", [arg]) = |
35379 | 297 |
(apsnd o apsnd o apsnd o K) (read_bool arg) |
28336 | 298 |
| parse_test_param ctxt (name, _) = |
34128
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
299 |
error ("Unknown test parameter: " ^ name); |
28315 | 300 |
|
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
301 |
fun parse_test_param_inst ctxt ("generator", [arg]) = |
28336 | 302 |
(apsnd o apfst o K o SOME) arg |
303 |
| parse_test_param_inst ctxt (name, arg) = |
|
304 |
case try (ProofContext.read_typ ctxt) name |
|
305 |
of SOME (TFree (v, _)) => (apsnd o apsnd o AList.update (op =)) |
|
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
306 |
(v, ProofContext.read_typ ctxt (the_single arg)) |
28336 | 307 |
| _ => (apfst o parse_test_param ctxt) (name, arg); |
28309 | 308 |
|
28336 | 309 |
fun quickcheck_params_cmd args thy = |
28315 | 310 |
let |
36610
bafd82950e24
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents:
35625
diff
changeset
|
311 |
val ctxt = ProofContext.init_global thy; |
28336 | 312 |
val f = fold (parse_test_param ctxt) args; |
28315 | 313 |
in |
314 |
thy |
|
28336 | 315 |
|> (Data.map o apsnd o map_test_params) f |
28315 | 316 |
end; |
317 |
||
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
318 |
fun gen_quickcheck args i state = |
28315 | 319 |
let |
32297 | 320 |
val thy = Proof.theory_of state; |
321 |
val ctxt = Proof.context_of state; |
|
34128
8650a073dd9b
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
blanchet
parents:
33583
diff
changeset
|
322 |
val assms = map term_of (Assumption.all_assms_of ctxt); |
28315 | 323 |
val default_params = (dest_test_params o snd o Data.get) thy; |
28336 | 324 |
val f = fold (parse_test_param_inst ctxt) args; |
35379 | 325 |
val (((size, iterations), ((default_type, no_assms), (report, quiet))), (generator_name, insts)) = |
28336 | 326 |
f (default_params, (NONE, [])); |
32297 | 327 |
in |
35379 | 328 |
test_goal quiet report generator_name size iterations default_type no_assms insts i assms state |
32297 | 329 |
end; |
330 |
||
36960
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36610
diff
changeset
|
331 |
fun quickcheck args i state = fst (gen_quickcheck args i state); |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
332 |
|
32297 | 333 |
fun quickcheck_cmd args i state = |
35378
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
334 |
gen_quickcheck args i (Toplevel.proof_of state) |
95d0e3adf38e
added basic reporting of test cases to quickcheck
bulwahn
parents:
35324
diff
changeset
|
335 |
|> Pretty.writeln o pretty_counterex_and_reports (Toplevel.context_of state); |
28309 | 336 |
|
37909
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
337 |
val parse_arg = Parse.name -- (Scan.optional (Parse.$$$ "=" |-- |
583543ad6ad1
changed default types to a list of types; extended quickcheck parameters to be a list of values to parse a list of default types
bulwahn
parents:
36960
diff
changeset
|
338 |
((Parse.name >> single) || (Parse.$$$ "[" |-- Parse.list1 Parse.name --| Parse.$$$ "]"))) ["true"]); |
28309 | 339 |
|
36960
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36610
diff
changeset
|
340 |
val parse_args = Parse.$$$ "[" |-- Parse.list1 parse_arg --| Parse.$$$ "]" |
28336 | 341 |
|| Scan.succeed []; |
342 |
||
36960
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36610
diff
changeset
|
343 |
val _ = |
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36610
diff
changeset
|
344 |
Outer_Syntax.command "quickcheck_params" "set parameters for random testing" Keyword.thy_decl |
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36610
diff
changeset
|
345 |
(parse_args >> (fn args => Toplevel.theory (quickcheck_params_cmd args))); |
28309 | 346 |
|
36960
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36610
diff
changeset
|
347 |
val _ = |
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36610
diff
changeset
|
348 |
Outer_Syntax.improper_command "quickcheck" "try to find counterexample for subgoal" Keyword.diag |
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36610
diff
changeset
|
349 |
(parse_args -- Scan.optional Parse.nat 1 |
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36610
diff
changeset
|
350 |
>> (fn (args, i) => Toplevel.no_timing o Toplevel.keep (quickcheck_cmd args i))); |
28309 | 351 |
|
28315 | 352 |
end; |
28309 | 353 |
|
354 |
||
28315 | 355 |
val auto_quickcheck = Quickcheck.auto; |