1
Fork 0

Fix manual_assert for #![no_std] and Rust 2021

This commit is contained in:
Gary Guo 2021-10-21 00:08:18 +01:00
parent 7cd9bf5af3
commit 7e5f99ab58
12 changed files with 230 additions and 43 deletions

View file

@ -54,23 +54,24 @@ impl LateLintPass<'_> for ManualAssert {
if !cx.tcx.sess.source_map().is_multiline(cond.span); if !cx.tcx.sess.source_map().is_multiline(cond.span);
then { then {
let span = if let Some(panic_expn) = PanicExpn::parse(semi) { let call = if_chain! {
if let ExprKind::Block(block, _) = semi.kind;
if let Some(init) = block.expr;
then {
init
} else {
semi
}
};
let span = if let Some(panic_expn) = PanicExpn::parse(call) {
match *panic_expn.format_args.value_args { match *panic_expn.format_args.value_args {
[] => panic_expn.format_args.format_string_span, [] => panic_expn.format_args.format_string_span,
[.., last] => panic_expn.format_args.format_string_span.to(last.span), [.., last] => panic_expn.format_args.format_string_span.to(last.span),
} }
} else if let ExprKind::Call(_, [format_args]) = call.kind {
format_args.span
} else { } else {
if_chain! { return
if let ExprKind::Block(block, _) = semi.kind;
if let Some(init) = block.expr;
if let ExprKind::Call(_, [format_args]) = init.kind;
then {
format_args.span
} else {
return
}
}
}; };
let mut applicability = Applicability::MachineApplicable; let mut applicability = Applicability::MachineApplicable;
let sugg = snippet_with_applicability(cx, span, "..", &mut applicability); let sugg = snippet_with_applicability(cx, span, "..", &mut applicability);

View file

@ -967,8 +967,7 @@ fn check_wild_err_arm<'tcx>(cx: &LateContext<'tcx>, ex: &Expr<'tcx>, arms: &[Arm
} }
if_chain! { if_chain! {
if matching_wild; if matching_wild;
if let ExprKind::Block(block, _) = arm.body.kind; if is_panic_call(arm.body);
if is_panic_block(block);
then { then {
// `Err(_)` or `Err(_e)` arm with `panic!` found // `Err(_)` or `Err(_e)` arm with `panic!` found
span_lint_and_note(cx, span_lint_and_note(cx,
@ -1171,14 +1170,19 @@ fn check_wild_enum_match(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>])
} }
// If the block contains only a `panic!` macro (as expression or statement) // If the block contains only a `panic!` macro (as expression or statement)
fn is_panic_block(block: &Block<'_>) -> bool { fn is_panic_call(expr: &Expr<'_>) -> bool {
match (&block.expr, block.stmts.len(), block.stmts.first()) { // Unwrap any wrapping blocks
(&Some(exp), 0, _) => is_expn_of(exp.span, "panic").is_some() && is_expn_of(exp.span, "unreachable").is_none(), let span = if let ExprKind::Block(block, _) = expr.kind {
(&None, 1, Some(stmt)) => { match (&block.expr, block.stmts.len(), block.stmts.first()) {
is_expn_of(stmt.span, "panic").is_some() && is_expn_of(stmt.span, "unreachable").is_none() (&Some(exp), 0, _) => exp.span,
}, (&None, 1, Some(stmt)) => stmt.span,
_ => false, _ => return false,
} }
} else {
expr.span
};
is_expn_of(span, "panic").is_some() && is_expn_of(span, "unreachable").is_none()
} }
fn check_match_ref_pats<'a, 'b, I>(cx: &LateContext<'_>, ex: &Expr<'_>, pats: I, expr: &Expr<'_>) fn check_match_ref_pats<'a, 'b, I>(cx: &LateContext<'_>, ex: &Expr<'_>, pats: I, expr: &Expr<'_>)

View file

@ -718,9 +718,7 @@ impl PanicExpn<'tcx> {
/// Parses an expanded `panic!` invocation /// Parses an expanded `panic!` invocation
pub fn parse(expr: &'tcx Expr<'tcx>) -> Option<Self> { pub fn parse(expr: &'tcx Expr<'tcx>) -> Option<Self> {
if_chain! { if_chain! {
if let ExprKind::Block(block, _) = expr.kind; if let ExprKind::Call(_, [format_args]) = expr.kind;
if let Some(init) = block.expr;
if let ExprKind::Call(_, [format_args]) = init.kind;
let expn_data = expr.span.ctxt().outer_expn_data(); let expn_data = expr.span.ctxt().outer_expn_data();
if let Some(format_args) = FormatArgsExpn::parse(format_args); if let Some(format_args) = FormatArgsExpn::parse(format_args);
then { then {

View file

@ -0,0 +1,43 @@
// revisions: edition2018 edition2021
// [edition2018] edition:2018
// [edition2021] edition:2021
// run-rustfix
#![warn(clippy::manual_assert)]
fn main() {
let a = vec![1, 2, 3];
let c = Some(2);
if !a.is_empty()
&& a.len() == 3
&& c != None
&& !a.is_empty()
&& a.len() == 3
&& !a.is_empty()
&& a.len() == 3
&& !a.is_empty()
&& a.len() == 3
{
panic!("qaqaq{:?}", a);
}
assert!(a.is_empty(), "qaqaq{:?}", a);
assert!(a.is_empty(), "qwqwq");
if a.len() == 3 {
println!("qwq");
println!("qwq");
println!("qwq");
}
if let Some(b) = c {
panic!("orz {}", b);
}
if a.len() == 3 {
panic!("qaqaq");
} else {
println!("qwq");
}
let b = vec![1, 2, 3];
assert!(!b.is_empty(), "panic1");
assert!(!(b.is_empty() && a.is_empty()), "panic2");
assert!(!(a.is_empty() && !b.is_empty()), "panic3");
assert!(!(b.is_empty() || a.is_empty()), "panic4");
assert!(!(a.is_empty() || !b.is_empty()), "panic5");
}

View file

@ -1,5 +1,5 @@
error: only a `panic!` in `if`-then statement error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:21:5 --> $DIR/manual_assert.rs:22:5
| |
LL | / if !a.is_empty() { LL | / if !a.is_empty() {
LL | | panic!("qaqaq{:?}", a); LL | | panic!("qaqaq{:?}", a);
@ -9,7 +9,7 @@ LL | | }
= note: `-D clippy::manual-assert` implied by `-D warnings` = note: `-D clippy::manual-assert` implied by `-D warnings`
error: only a `panic!` in `if`-then statement error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:24:5 --> $DIR/manual_assert.rs:25:5
| |
LL | / if !a.is_empty() { LL | / if !a.is_empty() {
LL | | panic!("qwqwq"); LL | | panic!("qwqwq");
@ -17,7 +17,7 @@ LL | | }
| |_____^ help: try: `assert!(a.is_empty(), "qwqwq");` | |_____^ help: try: `assert!(a.is_empty(), "qwqwq");`
error: only a `panic!` in `if`-then statement error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:41:5 --> $DIR/manual_assert.rs:42:5
| |
LL | / if b.is_empty() { LL | / if b.is_empty() {
LL | | panic!("panic1"); LL | | panic!("panic1");
@ -25,7 +25,7 @@ LL | | }
| |_____^ help: try: `assert!(!b.is_empty(), "panic1");` | |_____^ help: try: `assert!(!b.is_empty(), "panic1");`
error: only a `panic!` in `if`-then statement error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:44:5 --> $DIR/manual_assert.rs:45:5
| |
LL | / if b.is_empty() && a.is_empty() { LL | / if b.is_empty() && a.is_empty() {
LL | | panic!("panic2"); LL | | panic!("panic2");
@ -33,7 +33,7 @@ LL | | }
| |_____^ help: try: `assert!(!(b.is_empty() && a.is_empty()), "panic2");` | |_____^ help: try: `assert!(!(b.is_empty() && a.is_empty()), "panic2");`
error: only a `panic!` in `if`-then statement error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:47:5 --> $DIR/manual_assert.rs:48:5
| |
LL | / if a.is_empty() && !b.is_empty() { LL | / if a.is_empty() && !b.is_empty() {
LL | | panic!("panic3"); LL | | panic!("panic3");
@ -41,7 +41,7 @@ LL | | }
| |_____^ help: try: `assert!(!(a.is_empty() && !b.is_empty()), "panic3");` | |_____^ help: try: `assert!(!(a.is_empty() && !b.is_empty()), "panic3");`
error: only a `panic!` in `if`-then statement error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:50:5 --> $DIR/manual_assert.rs:51:5
| |
LL | / if b.is_empty() || a.is_empty() { LL | / if b.is_empty() || a.is_empty() {
LL | | panic!("panic4"); LL | | panic!("panic4");
@ -49,7 +49,7 @@ LL | | }
| |_____^ help: try: `assert!(!(b.is_empty() || a.is_empty()), "panic4");` | |_____^ help: try: `assert!(!(b.is_empty() || a.is_empty()), "panic4");`
error: only a `panic!` in `if`-then statement error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:53:5 --> $DIR/manual_assert.rs:54:5
| |
LL | / if a.is_empty() || !b.is_empty() { LL | / if a.is_empty() || !b.is_empty() {
LL | | panic!("panic5"); LL | | panic!("panic5");

View file

@ -0,0 +1,43 @@
// revisions: edition2018 edition2021
// [edition2018] edition:2018
// [edition2021] edition:2021
// run-rustfix
#![warn(clippy::manual_assert)]
fn main() {
let a = vec![1, 2, 3];
let c = Some(2);
if !a.is_empty()
&& a.len() == 3
&& c != None
&& !a.is_empty()
&& a.len() == 3
&& !a.is_empty()
&& a.len() == 3
&& !a.is_empty()
&& a.len() == 3
{
panic!("qaqaq{:?}", a);
}
assert!(a.is_empty(), "qaqaq{:?}", a);
assert!(a.is_empty(), "qwqwq");
if a.len() == 3 {
println!("qwq");
println!("qwq");
println!("qwq");
}
if let Some(b) = c {
panic!("orz {}", b);
}
if a.len() == 3 {
panic!("qaqaq");
} else {
println!("qwq");
}
let b = vec![1, 2, 3];
assert!(!b.is_empty(), "panic1");
assert!(!(b.is_empty() && a.is_empty()), "panic2");
assert!(!(a.is_empty() && !b.is_empty()), "panic3");
assert!(!(b.is_empty() || a.is_empty()), "panic4");
assert!(!(a.is_empty() || !b.is_empty()), "panic5");
}

View file

@ -0,0 +1,60 @@
error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:22:5
|
LL | / if !a.is_empty() {
LL | | panic!("qaqaq{:?}", a);
LL | | }
| |_____^ help: try: `assert!(a.is_empty(), "qaqaq{:?}", a);`
|
= note: `-D clippy::manual-assert` implied by `-D warnings`
error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:25:5
|
LL | / if !a.is_empty() {
LL | | panic!("qwqwq");
LL | | }
| |_____^ help: try: `assert!(a.is_empty(), "qwqwq");`
error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:42:5
|
LL | / if b.is_empty() {
LL | | panic!("panic1");
LL | | }
| |_____^ help: try: `assert!(!b.is_empty(), "panic1");`
error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:45:5
|
LL | / if b.is_empty() && a.is_empty() {
LL | | panic!("panic2");
LL | | }
| |_____^ help: try: `assert!(!(b.is_empty() && a.is_empty()), "panic2");`
error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:48:5
|
LL | / if a.is_empty() && !b.is_empty() {
LL | | panic!("panic3");
LL | | }
| |_____^ help: try: `assert!(!(a.is_empty() && !b.is_empty()), "panic3");`
error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:51:5
|
LL | / if b.is_empty() || a.is_empty() {
LL | | panic!("panic4");
LL | | }
| |_____^ help: try: `assert!(!(b.is_empty() || a.is_empty()), "panic4");`
error: only a `panic!` in `if`-then statement
--> $DIR/manual_assert.rs:54:5
|
LL | / if a.is_empty() || !b.is_empty() {
LL | | panic!("panic5");
LL | | }
| |_____^ help: try: `assert!(!(a.is_empty() || !b.is_empty()), "panic5");`
error: aborting due to 7 previous errors

View file

@ -1,6 +1,7 @@
// edition:2018 // revisions: edition2018 edition2021
// [edition2018] edition:2018
// [edition2021] edition:2021
// run-rustfix // run-rustfix
//FIXME: This does not correctly match in edition 2021, see #7843
#![warn(clippy::manual_assert)] #![warn(clippy::manual_assert)]
fn main() { fn main() {

View file

@ -1,6 +1,7 @@
// edition:2018 // revisions: edition2018 edition2021
// [edition2018] edition:2018
// [edition2021] edition:2021
// run-rustfix // run-rustfix
//FIXME: This does not correctly match in edition 2021, see #7843
#![warn(clippy::manual_assert)] #![warn(clippy::manual_assert)]
fn main() { fn main() {

View file

@ -1,5 +1,5 @@
error: `Err(_)` matches all errors error: `Err(_)` matches all errors
--> $DIR/match_wild_err_arm.rs:13:9 --> $DIR/match_wild_err_arm.rs:14:9
| |
LL | Err(_) => panic!("err"), LL | Err(_) => panic!("err"),
| ^^^^^^ | ^^^^^^
@ -8,7 +8,7 @@ LL | Err(_) => panic!("err"),
= note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable = note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
error: `Err(_)` matches all errors error: `Err(_)` matches all errors
--> $DIR/match_wild_err_arm.rs:19:9 --> $DIR/match_wild_err_arm.rs:20:9
| |
LL | Err(_) => panic!(), LL | Err(_) => panic!(),
| ^^^^^^ | ^^^^^^
@ -16,7 +16,7 @@ LL | Err(_) => panic!(),
= note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable = note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
error: `Err(_)` matches all errors error: `Err(_)` matches all errors
--> $DIR/match_wild_err_arm.rs:25:9 --> $DIR/match_wild_err_arm.rs:26:9
| |
LL | Err(_) => { LL | Err(_) => {
| ^^^^^^ | ^^^^^^
@ -24,7 +24,7 @@ LL | Err(_) => {
= note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable = note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
error: `Err(_e)` matches all errors error: `Err(_e)` matches all errors
--> $DIR/match_wild_err_arm.rs:33:9 --> $DIR/match_wild_err_arm.rs:34:9
| |
LL | Err(_e) => panic!(), LL | Err(_e) => panic!(),
| ^^^^^^^ | ^^^^^^^

View file

@ -0,0 +1,35 @@
error: `Err(_)` matches all errors
--> $DIR/match_wild_err_arm.rs:14:9
|
LL | Err(_) => panic!("err"),
| ^^^^^^
|
= note: `-D clippy::match-wild-err-arm` implied by `-D warnings`
= note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
error: `Err(_)` matches all errors
--> $DIR/match_wild_err_arm.rs:20:9
|
LL | Err(_) => panic!(),
| ^^^^^^
|
= note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
error: `Err(_)` matches all errors
--> $DIR/match_wild_err_arm.rs:26:9
|
LL | Err(_) => {
| ^^^^^^
|
= note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
error: `Err(_e)` matches all errors
--> $DIR/match_wild_err_arm.rs:34:9
|
LL | Err(_e) => panic!(),
| ^^^^^^^
|
= note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
error: aborting due to 4 previous errors

View file

@ -1,12 +1,13 @@
//edition:2015 // revisions: edition2018 edition2021
//FIXME: The lint only triggers once on edition 2021, so I'm leaving this at 2015 for now. // [edition2018] edition:2018
// [edition2021] edition:2021
#![feature(exclusive_range_pattern)] #![feature(exclusive_range_pattern)]
#![allow(clippy::match_same_arms)] #![allow(clippy::match_same_arms)]
#![warn(clippy::match_wild_err_arm)] #![warn(clippy::match_wild_err_arm)]
fn match_wild_err_arm() { fn match_wild_err_arm() {
let x: Result<i32, &str> = Ok(3); let x: Result<i32, &str> = Ok(3);
match x { match x {
Ok(3) => println!("ok"), Ok(3) => println!("ok"),
Ok(_) => println!("ok"), Ok(_) => println!("ok"),