]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/pprust-expr-roundtrip.rs
Auto merge of #75775 - matklad:rustc-lexer-rustdoc-highlight, r=GuillaumeGomez
[rust.git] / src / test / ui-fulldeps / pprust-expr-roundtrip.rs
1 // run-pass
2 // ignore-cross-compile
3
4 // The general idea of this test is to enumerate all "interesting" expressions and check that
5 // `parse(print(e)) == e` for all `e`. Here's what's interesting, for the purposes of this test:
6 //
7 // 1. The test focuses on expression nesting, because interactions between different expression
8 //    types are harder to test manually than single expression types in isolation.
9 //
10 // 2. The test only considers expressions of at most two nontrivial nodes. So it will check `x +
11 //    x` and `x + (x - x)` but not `(x * x) + (x - x)`. The assumption here is that the correct
12 //    handling of an expression might depend on the expression's parent, but doesn't depend on its
13 //    siblings or any more distant ancestors.
14 //
15 // 3. The test only checks certain expression kinds. The assumption is that similar expression
16 //    types, such as `if` and `while` or `+` and `-`, will be handled identically in the printer
17 //    and parser. So if all combinations of exprs involving `if` work correctly, then combinations
18 //    using `while`, `if let`, and so on will likely work as well.
19
20 #![feature(rustc_private)]
21
22 extern crate rustc_ast_pretty;
23 extern crate rustc_data_structures;
24 extern crate rustc_ast;
25 extern crate rustc_parse;
26 extern crate rustc_session;
27 extern crate rustc_span;
28
29 use rustc_ast_pretty::pprust;
30 use rustc_data_structures::thin_vec::ThinVec;
31 use rustc_parse::new_parser_from_source_str;
32 use rustc_session::parse::ParseSess;
33 use rustc_span::source_map::{Spanned, DUMMY_SP, FileName};
34 use rustc_span::source_map::FilePathMapping;
35 use rustc_span::symbol::Ident;
36 use rustc_ast::*;
37 use rustc_ast::mut_visit::{self, MutVisitor, visit_clobber};
38 use rustc_ast::ptr::P;
39
40 fn parse_expr(ps: &ParseSess, src: &str) -> Option<P<Expr>> {
41     let src_as_string = src.to_string();
42
43     let mut p = new_parser_from_source_str(
44         ps,
45         FileName::Custom(src_as_string.clone()),
46         src_as_string,
47     );
48     p.parse_expr().map_err(|mut e| e.cancel()).ok()
49 }
50
51
52 // Helper functions for building exprs
53 fn expr(kind: ExprKind) -> P<Expr> {
54     P(Expr {
55         id: DUMMY_NODE_ID,
56         kind,
57         span: DUMMY_SP,
58         attrs: ThinVec::new(),
59         tokens: None
60     })
61 }
62
63 fn make_x() -> P<Expr> {
64     let seg = PathSegment::from_ident(Ident::from_str("x"));
65     let path = Path { segments: vec![seg], span: DUMMY_SP };
66     expr(ExprKind::Path(None, path))
67 }
68
69 /// Iterate over exprs of depth up to `depth`. The goal is to explore all "interesting"
70 /// combinations of expression nesting. For example, we explore combinations using `if`, but not
71 /// `while` or `match`, since those should print and parse in much the same way as `if`.
72 fn iter_exprs(depth: usize, f: &mut dyn FnMut(P<Expr>)) {
73     if depth == 0 {
74         f(make_x());
75         return;
76     }
77
78     let mut g = |e| f(expr(e));
79
80     for kind in 0..=19 {
81         match kind {
82             0 => iter_exprs(depth - 1, &mut |e| g(ExprKind::Box(e))),
83             1 => iter_exprs(depth - 1, &mut |e| g(ExprKind::Call(e, vec![]))),
84             2 => {
85                 let seg = PathSegment::from_ident(Ident::from_str("x"));
86                 iter_exprs(depth - 1, &mut |e| g(ExprKind::MethodCall(
87                             seg.clone(), vec![e, make_x()], DUMMY_SP)));
88                 iter_exprs(depth - 1, &mut |e| g(ExprKind::MethodCall(
89                             seg.clone(), vec![make_x(), e], DUMMY_SP)));
90             },
91             3..=8 => {
92                 let op = Spanned {
93                     span: DUMMY_SP,
94                     node: match kind {
95                         3 => BinOpKind::Add,
96                         4 => BinOpKind::Mul,
97                         5 => BinOpKind::Shl,
98                         6 => BinOpKind::And,
99                         7 => BinOpKind::Or,
100                         8 => BinOpKind::Lt,
101                         _ => unreachable!(),
102                     }
103                 };
104                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Binary(op, e, make_x())));
105                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Binary(op, make_x(), e)));
106             },
107             9 => {
108                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Unary(UnOp::Deref, e)));
109             },
110             10 => {
111                 let block = P(Block {
112                     stmts: Vec::new(),
113                     id: DUMMY_NODE_ID,
114                     rules: BlockCheckMode::Default,
115                     span: DUMMY_SP,
116                 });
117                 iter_exprs(depth - 1, &mut |e| g(ExprKind::If(e, block.clone(), None)));
118             },
119             11 => {
120                 let decl = P(FnDecl {
121                     inputs: vec![],
122                     output: FnRetTy::Default(DUMMY_SP),
123                 });
124                 iter_exprs(depth - 1, &mut |e| g(
125                         ExprKind::Closure(CaptureBy::Value,
126                                           Async::No,
127                                           Movability::Movable,
128                                           decl.clone(),
129                                           e,
130                                           DUMMY_SP)));
131             },
132             12 => {
133                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Assign(e, make_x(), DUMMY_SP)));
134                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Assign(make_x(), e, DUMMY_SP)));
135             },
136             13 => {
137                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Field(e, Ident::from_str("f"))));
138             },
139             14 => {
140                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Range(
141                             Some(e), Some(make_x()), RangeLimits::HalfOpen)));
142                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Range(
143                             Some(make_x()), Some(e), RangeLimits::HalfOpen)));
144             },
145             15 => {
146                 iter_exprs(
147                     depth - 1,
148                     &mut |e| g(ExprKind::AddrOf(BorrowKind::Ref, Mutability::Not, e)),
149                 );
150             },
151             16 => {
152                 g(ExprKind::Ret(None));
153                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Ret(Some(e))));
154             },
155             17 => {
156                 let path = Path::from_ident(Ident::from_str("S"));
157                 g(ExprKind::Struct(path, vec![], Some(make_x())));
158             },
159             18 => {
160                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Try(e)));
161             },
162             19 => {
163                 let pat = P(Pat {
164                     id: DUMMY_NODE_ID,
165                     kind: PatKind::Wild,
166                     span: DUMMY_SP,
167                     tokens: None,
168                 });
169                 iter_exprs(depth - 1, &mut |e| g(ExprKind::Let(pat.clone(), e)))
170             },
171             _ => panic!("bad counter value in iter_exprs"),
172         }
173     }
174 }
175
176
177 // Folders for manipulating the placement of `Paren` nodes. See below for why this is needed.
178
179 /// `MutVisitor` that removes all `ExprKind::Paren` nodes.
180 struct RemoveParens;
181
182 impl MutVisitor for RemoveParens {
183     fn visit_expr(&mut self, e: &mut P<Expr>) {
184         match e.kind.clone() {
185             ExprKind::Paren(inner) => *e = inner,
186             _ => {}
187         };
188         mut_visit::noop_visit_expr(e, self);
189     }
190 }
191
192
193 /// `MutVisitor` that inserts `ExprKind::Paren` nodes around every `Expr`.
194 struct AddParens;
195
196 impl MutVisitor for AddParens {
197     fn visit_expr(&mut self, e: &mut P<Expr>) {
198         mut_visit::noop_visit_expr(e, self);
199         visit_clobber(e, |e| {
200             P(Expr {
201                 id: DUMMY_NODE_ID,
202                 kind: ExprKind::Paren(e),
203                 span: DUMMY_SP,
204                 attrs: ThinVec::new(),
205                 tokens: None
206             })
207         });
208     }
209 }
210
211 fn main() {
212     rustc_span::with_default_session_globals(|| run());
213 }
214
215 fn run() {
216     let ps = ParseSess::new(FilePathMapping::empty());
217
218     iter_exprs(2, &mut |mut e| {
219         // If the pretty printer is correct, then `parse(print(e))` should be identical to `e`,
220         // modulo placement of `Paren` nodes.
221         let printed = pprust::expr_to_string(&e);
222         println!("printed: {}", printed);
223
224         // Ignore expressions with chained comparisons that fail to parse
225         if let Some(mut parsed) = parse_expr(&ps, &printed) {
226             // We want to know if `parsed` is structurally identical to `e`, ignoring trivial
227             // differences like placement of `Paren`s or the exact ranges of node spans.
228             // Unfortunately, there is no easy way to make this comparison. Instead, we add `Paren`s
229             // everywhere we can, then pretty-print. This should give an unambiguous representation
230             // of each `Expr`, and it bypasses nearly all of the parenthesization logic, so we
231             // aren't relying on the correctness of the very thing we're testing.
232             RemoveParens.visit_expr(&mut e);
233             AddParens.visit_expr(&mut e);
234             let text1 = pprust::expr_to_string(&e);
235             RemoveParens.visit_expr(&mut parsed);
236             AddParens.visit_expr(&mut parsed);
237             let text2 = pprust::expr_to_string(&parsed);
238             assert!(text1 == text2,
239                     "exprs are not equal:\n  e =      {:?}\n  parsed = {:?}",
240                     text1, text2);
241         }
242     });
243 }