forked from verus-lang/verus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput_json.rs
More file actions
186 lines (158 loc) · 6.28 KB
/
output_json.rs
File metadata and controls
186 lines (158 loc) · 6.28 KB
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
#![feature(rustc_private)]
#[macro_use]
mod common;
use std::{collections::HashSet, iter::FromIterator};
use common::*;
test_verify_one_file_with_options! {
#[test]
test_json_proof_note_on_requires ["--output-json"] => verus_code! {
fn example(x: u64, y: u64) -> (z: u64)
requires
#![verifier::proof_note("Property 732")]
x == y,
#![verifier::proof_note("Label 451")]
x != y,
{
x + y
}
fn caller() {
let _ = example(1, 2); // precondition "Property 732" fails
let _ = example(3, 3); // precondition "Label 451" fails
}
} => Err(err) => {
let property_732 = "Property 732".to_string();
let label_451 = "Label 451".to_string();
assert_help_error_msg(err.clone(), &format!("note: {property_732}"));
assert_help_error_msg(err.clone(), &format!("note: {label_451}"));
let all_labels = HashSet::from_iter([property_732, label_451]);
// Details about `example`
with_json_func_details(&err, "crate::example", |details| {
assert!(details.obligation_proof_notes.is_empty());
assert!(details.failed_proof_notes.is_empty());
});
// Details about `caller`
with_json_func_details(&err, "crate::caller", |details| {
assert_eq!(details.obligation_proof_notes, all_labels);
assert_eq!(details.failed_proof_notes, all_labels);
});
}
}
test_verify_one_file_with_options! {
#[test]
test_json_proof_note_on_ensures ["--output-json"] => verus_code! {
fn example(x: u64, y: u64) -> (z: u64)
ensures
// both postconditions fail
#![verifier::proof_note("Property 732")]
z == x + y,
#![verifier::proof_note("Label 451")]
z == x - y,
{
x
}
fn caller() {
let _ = example(1, 2);
}
} => Err(err) => {
let property_732 = "Property 732".to_string();
let label_451 = "Label 451".to_string();
assert_help_error_msg(err.clone(), &format!("note: {property_732}"));
assert_help_error_msg(err.clone(), &format!("note: {label_451}"));
let all_labels = HashSet::from_iter([property_732, label_451]);
// Details about `example`
with_json_func_details(&err, "crate::example", |details| {
assert_eq!(details.obligation_proof_notes, all_labels);
assert_eq!(details.failed_proof_notes, all_labels);
});
// Details about `caller`
with_json_func_details(&err, "crate::caller", |details| {
assert!(details.obligation_proof_notes.is_empty());
assert!(details.failed_proof_notes.is_empty());
});
}
}
test_verify_one_file_with_options! {
#[test]
test_json_proof_note_on_assert ["--output-json"] => verus_code! {
fn caller() {
#[verifier::proof_note("Statement known to be false")]
assert(1 > 2); // assertion fails
}
} => Err(err) => {
let label = "Statement known to be false".to_string();
assert_help_error_msg(err.clone(), &format!("note: {label}"));
let all_labels = HashSet::from_iter([label]);
// Details about `caller`
with_json_func_details(&err, "crate::caller", |details| {
assert_eq!(details.obligation_proof_notes, all_labels);
assert_eq!(details.failed_proof_notes, all_labels);
});
}
}
test_verify_one_file_with_options! {
#[test]
test_json_proof_note_on_assume_with_no_cheating ["--output-json", "--no-cheating"] =>
verus_code! {
fn caller() {
#[verifier::proof_note("Statement known to be false")]
assume(1 > 2); // assumption fails
}
} => Err(err) => {
let label = "Statement known to be false".to_string();
assert_help_error_msg(err.clone(), &format!("note: {label}"));
let all_labels = HashSet::from_iter([label]);
// Details about `caller`
with_json_func_details(&err, "crate::caller", |details| {
assert!(details.obligation_proof_notes.is_empty());
assert_eq!(details.failed_proof_notes, all_labels);
});
}
}
test_verify_one_file_with_options! {
#[test]
test_json_proof_note_on_assume_and_req_with_no_cheating ["--output-json", "--no-cheating"] =>
verus_code! {
fn func_with_precond(x: u64) -> u64
requires
#![verifier::proof_note("Precondition known to fail")]
x < 10,
{
2 * x
}
fn caller() {
let _ = func_with_precond(42);
#[verifier::proof_note("Assumption forbidden by no-cheating")]
assume(1 > 2);
}
} => Err(err) => {
let assume_label = "Assumption forbidden by no-cheating".to_string();
let requires_label = "Precondition known to fail".to_string();
assert_help_error_msg(err.clone(), &format!("note: {assume_label}"));
assert_help_error_msg(err.clone(), &format!("note: {requires_label}"));
let expected_obligations = HashSet::from_iter([requires_label.clone()]);
let expected_failed_notes = HashSet::from_iter([assume_label, requires_label]);
// Details about `caller`
with_json_func_details(&err, "crate::caller", |details| {
assert_eq!(details.obligation_proof_notes, expected_obligations);
assert_eq!(details.failed_proof_notes, expected_failed_notes);
});
}
}
fn with_json_func_details(err: &TestErr, func: &str, body: impl FnOnce(&FuncDetails)) {
let json = err.json_output.as_ref().expect("expected JSON summary output");
dbg!(json);
let func_details = json
.get("func-details")
.and_then(|v| v.as_object())
.expect("`func-details` missing or not an object");
let details_json =
func_details.get(func).expect(&format!("func-details has no entry for `{func}`"));
let details =
serde_json::from_value(details_json.clone()).expect("failed to deserialize FuncDetails");
body(&details);
}
#[derive(serde::Deserialize)]
pub struct FuncDetails {
pub obligation_proof_notes: HashSet<String>,
pub failed_proof_notes: HashSet<String>,
}