rust-clippy/tests/ui/booleans.rs

145 lines
3.6 KiB
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![warn(clippy::nonminimal_bool, clippy::logic_bug)]
2017-09-18 10:47:33 +00:00
2018-07-28 15:34:52 +00:00
#[allow(unused, clippy::many_single_char_names)]
2016-03-23 13:50:47 +00:00
fn main() {
let a: bool = unimplemented!();
let b: bool = unimplemented!();
let c: bool = unimplemented!();
let d: bool = unimplemented!();
let e: bool = unimplemented!();
2017-02-08 13:58:07 +00:00
let _ = a && b || a;
let _ = !(a && b);
2017-02-08 13:58:07 +00:00
let _ = !true;
let _ = !false;
let _ = !!a;
let _ = false && a;
let _ = false || a;
// don't lint on cfgs
let _ = cfg!(you_shall_not_not_pass) && a;
let _ = a || !b || !c || !d || !e;
let _ = !(a && b || c);
2017-02-08 13:58:07 +00:00
let _ = !(!a && b);
2016-03-23 13:50:47 +00:00
}
2018-07-28 15:34:52 +00:00
#[allow(unused, clippy::many_single_char_names)]
fn equality_stuff() {
let a: i32 = unimplemented!();
let b: i32 = unimplemented!();
let c: i32 = unimplemented!();
let d: i32 = unimplemented!();
let e: i32 = unimplemented!();
let _ = a == b && a != b;
let _ = a == b && c == 5 && a == b;
let _ = a == b && c == 5 && b == a;
let _ = a < b && a >= b;
let _ = a > b && a <= b;
let _ = a > b && a == b;
let _ = a != b || !(a != b || c == d);
}
2018-07-28 15:34:52 +00:00
#[allow(unused, clippy::many_single_char_names)]
fn methods_with_negation() {
let a: Option<i32> = unimplemented!();
let b: Result<i32, i32> = unimplemented!();
let _ = a.is_some();
let _ = !a.is_some();
let _ = a.is_none();
let _ = !a.is_none();
let _ = b.is_err();
let _ = !b.is_err();
let _ = b.is_ok();
let _ = !b.is_ok();
let c = false;
let _ = !(a.is_some() && !c);
2017-11-17 21:52:11 +00:00
let _ = !(!c ^ c) || !a.is_some();
2017-11-19 09:07:50 +00:00
let _ = (!c ^ c) || !a.is_some();
let _ = !c ^ c || !a.is_some();
}
// Simplified versions of https://github.com/rust-lang/rust-clippy/issues/2638
2018-07-28 15:34:52 +00:00
// clippy::nonminimal_bool should only check the built-in Result and Some type, not
// any other types like the following.
2018-12-09 22:26:16 +00:00
enum CustomResultOk<E> {
Ok,
Err(E),
}
enum CustomResultErr<E> {
Ok,
Err(E),
}
enum CustomSomeSome<T> {
Some(T),
None,
}
enum CustomSomeNone<T> {
Some(T),
None,
}
impl<E> CustomResultOk<E> {
2018-12-09 22:26:16 +00:00
pub fn is_ok(&self) -> bool {
true
}
}
impl<E> CustomResultErr<E> {
2018-12-09 22:26:16 +00:00
pub fn is_err(&self) -> bool {
true
}
}
impl<T> CustomSomeSome<T> {
2018-12-09 22:26:16 +00:00
pub fn is_some(&self) -> bool {
true
}
}
impl<T> CustomSomeNone<T> {
2018-12-09 22:26:16 +00:00
pub fn is_none(&self) -> bool {
true
}
}
fn dont_warn_for_custom_methods_with_negation() {
let res = CustomResultOk::Err("Error");
// Should not warn and suggest 'is_err()' because the type does not
// implement is_err().
2018-12-09 22:26:16 +00:00
if !res.is_ok() {}
let res = CustomResultErr::Err("Error");
// Should not warn and suggest 'is_ok()' because the type does not
// implement is_ok().
2018-12-09 22:26:16 +00:00
if !res.is_err() {}
let res = CustomSomeSome::Some("thing");
// Should not warn and suggest 'is_none()' because the type does not
// implement is_none().
2018-12-09 22:26:16 +00:00
if !res.is_some() {}
let res = CustomSomeNone::Some("thing");
// Should not warn and suggest 'is_some()' because the type does not
// implement is_some().
2018-12-09 22:26:16 +00:00
if !res.is_none() {}
}
// Only Built-in Result and Some types should suggest the negated alternative
fn warn_for_built_in_methods_with_negation() {
let res: Result<usize, usize> = Ok(1);
2018-12-09 22:26:16 +00:00
if !res.is_ok() {}
if !res.is_err() {}
let res = Some(1);
2018-12-09 22:26:16 +00:00
if !res.is_some() {}
if !res.is_none() {}
}
2018-07-28 15:34:52 +00:00
#[allow(clippy::neg_cmp_op_on_partial_ord)]
fn dont_warn_for_negated_partial_ord_comparison() {
let a: f64 = unimplemented!();
let b: f64 = unimplemented!();
let _ = !(a < b);
let _ = !(a <= b);
let _ = !(a > b);
let _ = !(a >= b);
}