-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrustfmt-matching.rs
442 lines (386 loc) · 8.79 KB
/
rustfmt-matching.rs
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
use verusfmt::{rustfmt, VERUS_PREFIX, VERUS_SUFFIX};
/// Tests to check that when formatting standard Rust syntax,
/// we match rustfmt
fn compare(file: &str) {
let verus_file = format!("{}{}{}", VERUS_PREFIX, file, VERUS_SUFFIX);
let verus_fmt = verusfmt::run(
&verus_file,
verusfmt::RunOptions {
file_name: None,
run_rustfmt: false,
rustfmt_config: Default::default(),
},
)
.unwrap();
let start = VERUS_PREFIX.len();
let end = verus_fmt.len() - VERUS_SUFFIX.len();
let verus_inner = &verus_fmt[start..end];
let rust_fmt = rustfmt(file).unwrap();
println!("{}", rust_fmt);
let diff = similar::udiff::unified_diff(
similar::Algorithm::Patience,
&rust_fmt,
verus_inner,
3,
Some(("rust", "verus")),
);
assert_eq!(rust_fmt, verus_inner, "\n{diff}");
}
#[test]
fn rust_literals() {
let file = r#"
fn test() {
let a = 123.0f64;
let a = 0.1f64;
let a = 0.1f32;
let a = 12E+99_f64;
let x: f64 = 2.;
let x = (1,);
}
"#;
compare(file);
}
#[test]
fn rust_attributes() {
let file = r#"
#![allow(unused_variables)]
#[verifier(external_type_specification)]
#[verifier(external_body)]
const x: int = 5;
"#;
compare(file);
}
#[test]
fn rust_constants() {
let file = r#"
#[verifier=abcd] #[verifier=efgh] pub(in self::super::crate) default const MY_CONST1 : some_very_very_very_very_very_very_very_very_very_very_very_very_long_type = "abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwxyz1234567890";
#[verifier=abcd] #[verifier=efgh] pub(in self::super::crate) default const MY_CONST2 : some_type = "abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwxyz1234567890";
#[verifier=abcd] pub(in self::super::crate) default const MY_CONST3: some_type = 5;
const y: int = 5;
// Comment
const x: int = 5;
"#;
compare(file);
}
#[test]
fn rust_enums() {
let file = r#"
enum SimpleEnumSingleBriefGenerics<A,B,C,D,E> { Constructor1 }
enum SimpleEnumSingleLongGenerics<ABCDEFGHIJKLMNOPQRSTUVWXYZ,ABCDEFGHIJKLMNOPQRSTUVWXYZ,ABCDEFGHIJKLMNOPQRSTUVWXYZ,ABCDEFGHIJKLMNOPQRSTUVWXYZ> { Constructor1 }
enum SimpleEnumConstructors<A,B,C,D,E> { ConsIdentifier, ConsTupleStruct1(u32,bool,u8), ConsStruct1{x:u8}, ConsStruct2{a:u32, b:bool} }
enum Enum {
ConsIdentifier,
ConsTupleStruct1(u32, bool, u8),
ConsStruct2 {
a_very_very_very_very_very_very_long_name:
a_very_very_very_very_very_very_very_very_very_very_very_very_long_type,
b: bool,
},
}
"#;
compare(file);
}
#[test]
fn rust_structs() {
let file = r#"
struct Foo { a: A, b: B }
struct Collection {}
struct Struct2 {
a_very_very__very_very_very_very_very_very_long_name:
a_very_very_very_very_very_very_very_very_very_very_very_very_long_type,
b: bool,
c: u32,
}
struct TrackedAndGhost<T, G>(
T,
G,
);
pub struct Bar(String, u8);
struct Unit();
"#;
compare(file);
}
#[test]
fn rust_functions() {
let file = r#"
#[verifier=abcd]
pub fn test_function<A, B, C>(a: u32, b: bool, c: LongTypeName) -> u32;
pub fn test_function<A, B, C>(long_var_name_1: LongLongLongTypeName, long_var_name_2: LongLongLongTypeName, long_var_name_3: LongLongLongTypeName) -> u32;
pub fn test_function1<A, B, C>(a: u32, b: bool, c: LongTypeName) -> u32 { let x = a; let mut z = b; c }
pub fn test_function2<A, B, C>(a: u32) -> u32 { a }
pub fn test_function3<A, B, C>(a: u32, b: bool, c: LongTypeName) -> u32 {
let x = a;
let serialized = serialize_msg(&msg);
let temp_owl__x23 = { let x: Vec<u8> = mk_vec_u8!(); x };
todo!();
c
}
"#;
compare(file);
}
#[test]
fn rust_let_stmt() {
let file = r#"
#[verifier=abcd]
pub fn test_function3<A, B, C>(a: u32, b: bool, c: LongTypeName) -> u32 {
let long_long_long_long_long_long_long_long_name: LongLongLongLongLongLongLongLongType = long_long_function_name(a);
let x = a;
let mut z = b;
let long_long_long_long_long_long_long_long_name: LongLongLongLongLongLongLongLongLongLongType = long_long_function_name(a);
let x = (
a_long_long_long_long_long_long_long_long_long_long_long_long_expr,
another_very_long_expr,
c,
);
let _addr = listener.unwrap();
let coins = owl_sample::<int,bool>();
let f = Foo { field1, field2: 0 };
let f = Foo {
very_long_very_long_very_long_expression1,
very_long_field_name: very_long_very_long_very_long_expression2,
};
c
}
"#;
compare(file);
}
#[test]
fn rust_blocks() {
let file = r#"
pub fn test_function<A, B, C>(a: u32, b: bool, c: LongTypeName) -> u32 {
let _ = { a_call() };
let _ = unsafe { a_call() };
let _ = {
a_call();
b
};
unsafe {
a_call();
};
let x = 5;
a
}
pub fn test() -> bool {
let z = {
let k = 5;
k
};
}
pub fn test() -> bool {
{
let y = 7;
b
}
}
pub fn test() -> bool {
unsafe {
let x = 5;
x
}
}
"#;
compare(file);
}
#[test]
fn rust_closures() {
let file = r#"
pub fn test_function<A, B, C>(a: u32, b: bool, c: LongTypeName) -> u32 {
let f = || true;
let g = |x, y| x;
}
"#;
compare(file);
}
#[test]
fn rust_match_expr() {
let file = r#"
fn len<T>(l: List<T>) -> nat {
match l {
List::Nil => 0,
List::Cons(_, tl) => 1 + len(*tl),
}
}
fn uses_is(t: ThisOrThat) {
match t {
ThisOrThat::This(..) => assert(t),
ThisOrThat::That{..} => assert(t),
}
}
"#;
compare(file);
}
#[test]
fn rust_use_decls() {
let file = r#"
pub use extraction_lib::*;
pub use std::collections::HashMap;
pub use std::env;
pub use std::fs;
pub use std::io::{self, BufRead, Write};
pub use std::net::{SocketAddr, TcpListener, TcpStream, ToSocketAddrs};
fn syntactic_eq(&self, other: &Self) -> bool {
use BndX::*;
use TypX::*;
match self {
A => b,
}
}
"#;
compare(file);
}
// TODO: We can't handle this test and the block_exprs consistently at the same time
#[test]
#[ignore]
fn rust_bin_expr() {
let file = r#"
pub fn test_function(x: int, y: int) -> u32 {
let z = x + y;
let very_very_very_very_very_very_long =
very_very_very_very_very_very_x + very_very_very_very_y;
5
}
"#;
compare(file);
}
#[test]
fn rust_if() {
let file = r#"
fn test_function() {
if arg.len() < 12 {
return 5;
}
if !b {
return 5;
}
extend_vec_u8();
if y {
1
} else if x {
2
} else {
3
}
if let Result::Ok(x) = y {
x
}
}
fn test_rec2(x: int, y: int) -> int
{
if y > 0 {
1 + test_rec2(x, y - 1)
} else if x > 0 {
2 + test_rec2(x - 1, 100)
} else {
3
}
}
pub fn test_function<A, B, C>(a: u32, b: bool, c: LongTypeName) -> u32 {
if y > 0 { 1 + test_rec2(x, y - 1) } else if x > 0 { 2 + test_rec2(x - 1, 100) } else { 3 }
}
"#;
compare(file);
}
#[test]
fn rust_exprs() {
let file = r#"
fn test_function() {
let shifted = (w >> (b - 2) as u64) as u8;
let mut points_to = points_to_raw.into_typed::<Page>(pt as u64);
}
"#;
compare(file);
}
// TODO: Need to differentiate if-expressions in different contexts
#[test]
#[ignore]
fn rust_if_contexts() {
let file = r#"
pub fn test_function<A, B, C>(a: u32, b: bool, c: LongTypeName) -> u32 {
let x = if b { 5 } else { 10 };
if b {
5
} else {
10
}
}
"#;
compare(file);
}
// Rust removes the semicolon after the while loop;
// for simplicity we keep it
#[test]
#[ignore]
fn rust_while() {
let file = r#"
pub fn test_function() -> u32 {
if b {
a;
} else {
c;
};
while b {
let x = a;
a;
};
5
}
"#;
compare(file);
}
#[test]
fn rust_type_alias() {
let file = r#"
impl View for owl_t {
type V = owlSpec_t;
}
type LongLongLongLongLongLongLongLongLongLongType = LongerLongLongLongLongLongLongLongLongLongLongType;
type NoSpaceTypeA=NoSpaceTypeB;
"#;
compare(file);
}
#[test]
fn rust_rename() {
let file = r#"
use crate::parse_serialize::View as _;
use LongLongLongLongLongLongLongLongLongLongType as LongerLongLongLongLongLongLongLongLongLongLongType;
"#;
compare(file);
}
#[test]
fn rust_wildcard_type_annotation() {
let file = r#"
fn foo() {
let x: _ = bar();
}
fn blah() {
let (temp_owl__x607, Tracked(itree)): ( _
, Tracked<ITreeToken<(Seq<u8>, state_Initiator), Endpoint>> ) = { baz(); };
}
"#;
compare(file);
}
#[test]
fn rust_loops() {
let file = r#"
fn test() {
for CKeyKV in v {
res.insert(k, v);
}
}
fn test() {
for CKeyKV { k, v } in v {
res.insert(k, v);
}
}
"#;
compare(file);
}
#[test]
fn rust_verus_bang_in_string() {
let file = r#"
fn test() {
println!("verus!{{{}}}", "Hello");
}
"#;
compare(file);
}