about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsurechen <chenshuo17@huawei.com>2021-09-30 19:06:42 +0800
committersurechen <chenshuo17@huawei.com>2021-09-30 19:06:42 +0800
commit4babfae9cba0409d2eed2c5caa623fae0445a50e (patch)
tree43f1f78a197f619a51438c1e0a22b3a55bfd1c6d
parent685b77316f3fbc35bfe1982803df7133cd2cb36d (diff)
downloadrust-4babfae9cba0409d2eed2c5caa623fae0445a50e.tar.gz
rust-4babfae9cba0409d2eed2c5caa623fae0445a50e.zip
fix issue #7731
Make if_then_else handle situation of cond.kind = ExprKind::DropTemps(ExprKind::Binary(BinOpKind::And || BinOpKind::Or, left, right), ..) =
-rw-r--r--clippy_lints/src/if_then_panic.rs38
-rw-r--r--tests/ui/if_then_panic.fixed6
-rw-r--r--tests/ui/if_then_panic.rs16
-rw-r--r--tests/ui/if_then_panic.stderr42
4 files changed, 96 insertions, 6 deletions
diff --git a/clippy_lints/src/if_then_panic.rs b/clippy_lints/src/if_then_panic.rs
index ee575c81a8b..31e416bd4d6 100644
--- a/clippy_lints/src/if_then_panic.rs
+++ b/clippy_lints/src/if_then_panic.rs
@@ -3,7 +3,7 @@ use clippy_utils::higher::PanicExpn;
 use clippy_utils::is_expn_of;
 use clippy_utils::source::snippet_with_applicability;
 use rustc_errors::Applicability;
-use rustc_hir::{Block, Expr, ExprKind, StmtKind, UnOp};
+use rustc_hir::{BinOpKind, Block, Expr, ExprKind, StmtKind, UnOp};
 use rustc_lint::{LateContext, LateLintPass};
 use rustc_session::{declare_lint_pass, declare_tool_lint};
 
@@ -74,10 +74,38 @@ impl LateLintPass<'_> for IfThenPanic {
                 };
                 let mut applicability = Applicability::MachineApplicable;
                 let sugg = snippet_with_applicability(cx, span, "..", &mut applicability);
-
-                let cond_sugg =
-                if let ExprKind::DropTemps(Expr{kind: ExprKind::Unary(UnOp::Not, not_expr), ..}) = cond.kind {
-                    snippet_with_applicability(cx, not_expr.span, "..", &mut applicability).to_string()
+                //let mut cond_sugg = format!("!{}", snippet_with_applicability(cx, cond.span, "..", &mut applicability));
+                let cond_sugg = if let ExprKind::DropTemps(e, ..) = cond.kind {
+                    if let Expr{kind: ExprKind::Unary(UnOp::Not, not_expr), ..} = e {
+                        snippet_with_applicability(cx, not_expr.span, "..", &mut applicability).to_string()
+                    } else if let Expr{kind: ExprKind::Binary(op, left, right), ..} = e {//BinOp{BinOpKind::And, ..}
+                        match op.node {
+                            BinOpKind::And | BinOpKind::Or => {
+                                let left_span =  {
+                                    if let Expr{kind: ExprKind::Unary(UnOp::Not, not_expr), ..} = left {
+                                        snippet_with_applicability(cx, not_expr.span, "..", &mut applicability).to_string()
+                                    } else {
+                                        format!("!{}", snippet_with_applicability(cx, left.span, "..", &mut applicability))
+                                    }
+                                };
+                                let right_span = {
+                                    if let Expr{kind: ExprKind::Unary(UnOp::Not, not_expr), ..} = right {
+                                        snippet_with_applicability(cx, not_expr.span, "..", &mut applicability).to_string()
+                                    } else {
+                                        format!("!{}", snippet_with_applicability(cx, right.span, "..", &mut applicability))
+                                    }
+                                };
+                                if op.node == BinOpKind::And {
+                                  format!("{} || {}", left_span, right_span)
+                                } else  {
+                                  format!("{} && {}", left_span, right_span)
+                                }
+                            }
+                            _ => format!("!({})", snippet_with_applicability(cx, cond.span, "..", &mut applicability))
+                        }
+                    } else {
+                        format!("!{}", snippet_with_applicability(cx, cond.span, "..", &mut applicability))
+                    }
                 } else {
                     format!("!{}", snippet_with_applicability(cx, cond.span, "..", &mut applicability))
                 };
diff --git a/tests/ui/if_then_panic.fixed b/tests/ui/if_then_panic.fixed
index fc57ae0dfa5..f72bc6f5979 100644
--- a/tests/ui/if_then_panic.fixed
+++ b/tests/ui/if_then_panic.fixed
@@ -31,4 +31,10 @@ fn main() {
     } 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");
 }
diff --git a/tests/ui/if_then_panic.rs b/tests/ui/if_then_panic.rs
index d1ac93d8d41..10433c8d54f 100644
--- a/tests/ui/if_then_panic.rs
+++ b/tests/ui/if_then_panic.rs
@@ -35,4 +35,20 @@ fn main() {
     } else {
         println!("qwq");
     }
+    let b = vec![1, 2, 3];
+    if b.is_empty() {
+        panic!("panic1");
+    }
+    if b.is_empty() && a.is_empty() {
+        panic!("panic2");
+    }
+    if a.is_empty() && !b.is_empty() {
+        panic!("panic3");
+    }
+    if b.is_empty() || a.is_empty() {
+        panic!("panic4");
+    }
+    if a.is_empty() || !b.is_empty() {
+        panic!("panic5");
+    }
 }
diff --git a/tests/ui/if_then_panic.stderr b/tests/ui/if_then_panic.stderr
index b92c9bdf674..502ba10b8f4 100644
--- a/tests/ui/if_then_panic.stderr
+++ b/tests/ui/if_then_panic.stderr
@@ -16,5 +16,45 @@ LL | |         panic!("qwqwq");
 LL | |     }
    | |_____^ help: try: `assert!(a.is_empty(), "qwqwq");`
 
-error: aborting due to 2 previous errors
+error: only a `panic!` in `if`-then statement
+  --> $DIR/if_then_panic.rs:39: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/if_then_panic.rs:42: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/if_then_panic.rs:45: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/if_then_panic.rs:48: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/if_then_panic.rs:51: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