Skip to content

Commit

Permalink
chore: update some tests to allow const_is_empty
Browse files Browse the repository at this point in the history
  • Loading branch information
samueltardieu committed Feb 18, 2024
1 parent e32da91 commit 59ee46c
Show file tree
Hide file tree
Showing 11 changed files with 46 additions and 30 deletions.
2 changes: 1 addition & 1 deletion tests/ui/bool_assert_comparison.fixed
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused, clippy::assertions_on_constants)]
#![allow(unused, clippy::assertions_on_constants, clippy::const_is_empty)]
#![warn(clippy::bool_assert_comparison)]

use std::ops::Not;
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/bool_assert_comparison.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused, clippy::assertions_on_constants)]
#![allow(unused, clippy::assertions_on_constants, clippy::const_is_empty)]
#![warn(clippy::bool_assert_comparison)]

use std::ops::Not;
Expand Down
8 changes: 7 additions & 1 deletion tests/ui/len_zero.fixed
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#![warn(clippy::len_zero)]
#![allow(dead_code, unused, clippy::needless_if, clippy::len_without_is_empty)]
#![allow(
dead_code,
unused,
clippy::needless_if,
clippy::len_without_is_empty,
clippy::const_is_empty
)]

extern crate core;
use core::ops::Deref;
Expand Down
8 changes: 7 additions & 1 deletion tests/ui/len_zero.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#![warn(clippy::len_zero)]
#![allow(dead_code, unused, clippy::needless_if, clippy::len_without_is_empty)]
#![allow(
dead_code,
unused,
clippy::needless_if,
clippy::len_without_is_empty,
clippy::const_is_empty
)]

extern crate core;
use core::ops::Deref;
Expand Down
46 changes: 23 additions & 23 deletions tests/ui/len_zero.stderr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error: length comparison to zero
--> $DIR/len_zero.rs:82:8
--> $DIR/len_zero.rs:88:8
|
LL | if x.len() == 0 {
| ^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `x.is_empty()`
Expand All @@ -8,13 +8,13 @@ LL | if x.len() == 0 {
= help: to override `-D warnings` add `#[allow(clippy::len_zero)]`

error: length comparison to zero
--> $DIR/len_zero.rs:86:8
--> $DIR/len_zero.rs:92:8
|
LL | if "".len() == 0 {}
| ^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `"".is_empty()`

error: comparison to empty slice
--> $DIR/len_zero.rs:95:20
--> $DIR/len_zero.rs:101:20
|
LL | println!("{}", *s1 == "");
| ^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s1.is_empty()`
Expand All @@ -23,121 +23,121 @@ LL | println!("{}", *s1 == "");
= help: to override `-D warnings` add `#[allow(clippy::comparison_to_empty)]`

error: comparison to empty slice
--> $DIR/len_zero.rs:96:20
--> $DIR/len_zero.rs:102:20
|
LL | println!("{}", **s2 == "");
| ^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s2.is_empty()`

error: comparison to empty slice
--> $DIR/len_zero.rs:97:20
--> $DIR/len_zero.rs:103:20
|
LL | println!("{}", ***s3 == "");
| ^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s3.is_empty()`

error: comparison to empty slice
--> $DIR/len_zero.rs:98:20
--> $DIR/len_zero.rs:104:20
|
LL | println!("{}", ****s4 == "");
| ^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s4.is_empty()`

error: comparison to empty slice
--> $DIR/len_zero.rs:99:20
--> $DIR/len_zero.rs:105:20
|
LL | println!("{}", *****s5 == "");
| ^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s5.is_empty()`

error: comparison to empty slice
--> $DIR/len_zero.rs:100:20
--> $DIR/len_zero.rs:106:20
|
LL | println!("{}", ******(s6) == "");
| ^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(s6).is_empty()`

error: comparison to empty slice
--> $DIR/len_zero.rs:103:20
--> $DIR/len_zero.rs:109:20
|
LL | println!("{}", &**d2s == "");
| ^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(**d2s).is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:118:8
--> $DIR/len_zero.rs:124:8
|
LL | if has_is_empty.len() == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `has_is_empty.is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:121:8
--> $DIR/len_zero.rs:127:8
|
LL | if has_is_empty.len() != 0 {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:124:8
--> $DIR/len_zero.rs:130:8
|
LL | if has_is_empty.len() > 0 {
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to one
--> $DIR/len_zero.rs:127:8
--> $DIR/len_zero.rs:133:8
|
LL | if has_is_empty.len() < 1 {
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `has_is_empty.is_empty()`

error: length comparison to one
--> $DIR/len_zero.rs:130:8
--> $DIR/len_zero.rs:136:8
|
LL | if has_is_empty.len() >= 1 {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:141:8
--> $DIR/len_zero.rs:147:8
|
LL | if 0 == has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `has_is_empty.is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:144:8
--> $DIR/len_zero.rs:150:8
|
LL | if 0 != has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:147:8
--> $DIR/len_zero.rs:153:8
|
LL | if 0 < has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to one
--> $DIR/len_zero.rs:150:8
--> $DIR/len_zero.rs:156:8
|
LL | if 1 <= has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to one
--> $DIR/len_zero.rs:153:8
--> $DIR/len_zero.rs:159:8
|
LL | if 1 > has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `has_is_empty.is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:167:8
--> $DIR/len_zero.rs:173:8
|
LL | if with_is_empty.len() == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `with_is_empty.is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:179:6
--> $DIR/len_zero.rs:185:6
|
LL | (has_is_empty.len() > 0).then(|| println!("This can happen."));
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:180:6
--> $DIR/len_zero.rs:186:6
|
LL | (has_is_empty.len() == 0).then(|| println!("Or this!"));
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `has_is_empty.is_empty()`

error: length comparison to zero
--> $DIR/len_zero.rs:184:8
--> $DIR/len_zero.rs:190:8
|
LL | if b.len() != 0 {}
| ^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!b.is_empty()`
Expand Down
1 change: 1 addition & 0 deletions tests/ui/needless_bitwise_bool.fixed
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![warn(clippy::needless_bitwise_bool)]
#![allow(clippy::const_is_empty)]

fn returns_bool() -> bool {
true
Expand Down
1 change: 1 addition & 0 deletions tests/ui/needless_bitwise_bool.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![warn(clippy::needless_bitwise_bool)]
#![allow(clippy::const_is_empty)]

fn returns_bool() -> bool {
true
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/needless_bitwise_bool.stderr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error: use of bitwise operator instead of lazy operator between booleans
--> $DIR/needless_bitwise_bool.rs:22:8
--> $DIR/needless_bitwise_bool.rs:23:8
|
LL | if y & !x {
| ^^^^^^ help: try: `y && !x`
Expand Down
1 change: 1 addition & 0 deletions tests/ui/redundant_as_str.fixed
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![warn(clippy::redundant_as_str)]
#![allow(clippy::const_is_empty)]

fn main() {
let string = "Hello, world!".to_owned();
Expand Down
1 change: 1 addition & 0 deletions tests/ui/redundant_as_str.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![warn(clippy::redundant_as_str)]
#![allow(clippy::const_is_empty)]

fn main() {
let string = "Hello, world!".to_owned();
Expand Down
4 changes: 2 additions & 2 deletions tests/ui/redundant_as_str.stderr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error: this `as_str` is redundant and can be removed as the method immediately following exists on `String` too
--> $DIR/redundant_as_str.rs:7:29
--> $DIR/redundant_as_str.rs:8:29
|
LL | let _redundant = string.as_str().as_bytes();
| ^^^^^^^^^^^^^^^^^ help: try: `as_bytes`
Expand All @@ -8,7 +8,7 @@ LL | let _redundant = string.as_str().as_bytes();
= help: to override `-D warnings` add `#[allow(clippy::redundant_as_str)]`

error: this `as_str` is redundant and can be removed as the method immediately following exists on `String` too
--> $DIR/redundant_as_str.rs:8:29
--> $DIR/redundant_as_str.rs:9:29
|
LL | let _redundant = string.as_str().is_empty();
| ^^^^^^^^^^^^^^^^^ help: try: `is_empty`
Expand Down

0 comments on commit 59ee46c

Please sign in to comment.