]> git.lizzy.rs Git - rust.git/blob - tests/ui/methods.rs
Merge remote-tracking branch 'upstream/rust-1.39.0' into backport_merge
[rust.git] / tests / ui / methods.rs
1 // aux-build:option_helpers.rs
2 // compile-flags: --edition 2018
3
4 #![warn(clippy::all, clippy::pedantic)]
5 #![allow(
6     clippy::blacklisted_name,
7     clippy::default_trait_access,
8     clippy::missing_docs_in_private_items,
9     clippy::non_ascii_literal,
10     clippy::new_without_default,
11     clippy::needless_pass_by_value,
12     clippy::print_stdout,
13     clippy::must_use_candidate,
14     clippy::use_self,
15     clippy::useless_format,
16     clippy::wrong_self_convention,
17     clippy::unused_self,
18     unused
19 )]
20
21 #[macro_use]
22 extern crate option_helpers;
23
24 use std::collections::BTreeMap;
25 use std::collections::HashMap;
26 use std::collections::HashSet;
27 use std::collections::VecDeque;
28 use std::iter::FromIterator;
29 use std::ops::Mul;
30 use std::rc::{self, Rc};
31 use std::sync::{self, Arc};
32
33 use option_helpers::IteratorFalsePositives;
34
35 pub struct T;
36
37 impl T {
38     pub fn add(self, other: T) -> T {
39         self
40     }
41
42     // no error, not public interface
43     pub(crate) fn drop(&mut self) {}
44
45     // no error, private function
46     fn neg(self) -> Self {
47         self
48     }
49
50     // no error, private function
51     fn eq(&self, other: T) -> bool {
52         true
53     }
54
55     // No error; self is a ref.
56     fn sub(&self, other: T) -> &T {
57         self
58     }
59
60     // No error; different number of arguments.
61     fn div(self) -> T {
62         self
63     }
64
65     // No error; wrong return type.
66     fn rem(self, other: T) {}
67
68     // Fine
69     fn into_u32(self) -> u32 {
70         0
71     }
72
73     fn into_u16(&self) -> u16 {
74         0
75     }
76
77     fn to_something(self) -> u32 {
78         0
79     }
80
81     fn new(self) -> Self {
82         unimplemented!();
83     }
84 }
85
86 struct Lt<'a> {
87     foo: &'a u32,
88 }
89
90 impl<'a> Lt<'a> {
91     // The lifetime is different, but that’s irrelevant; see issue #734.
92     #[allow(clippy::needless_lifetimes)]
93     pub fn new<'b>(s: &'b str) -> Lt<'b> {
94         unimplemented!()
95     }
96 }
97
98 struct Lt2<'a> {
99     foo: &'a u32,
100 }
101
102 impl<'a> Lt2<'a> {
103     // The lifetime is different, but that’s irrelevant; see issue #734.
104     pub fn new(s: &str) -> Lt2 {
105         unimplemented!()
106     }
107 }
108
109 struct Lt3<'a> {
110     foo: &'a u32,
111 }
112
113 impl<'a> Lt3<'a> {
114     // The lifetime is different, but that’s irrelevant; see issue #734.
115     pub fn new() -> Lt3<'static> {
116         unimplemented!()
117     }
118 }
119
120 #[derive(Clone, Copy)]
121 struct U;
122
123 impl U {
124     fn new() -> Self {
125         U
126     }
127     // Ok because `U` is `Copy`.
128     fn to_something(self) -> u32 {
129         0
130     }
131 }
132
133 struct V<T> {
134     _dummy: T,
135 }
136
137 impl<T> V<T> {
138     fn new() -> Option<V<T>> {
139         None
140     }
141 }
142
143 struct AsyncNew;
144
145 impl AsyncNew {
146     async fn new() -> Option<Self> {
147         None
148     }
149 }
150
151 struct BadNew;
152
153 impl BadNew {
154     fn new() -> i32 {
155         0
156     }
157 }
158
159 impl Mul<T> for T {
160     type Output = T;
161     // No error, obviously.
162     fn mul(self, other: T) -> T {
163         self
164     }
165 }
166
167 /// Checks implementation of the following lints:
168 /// * `OPTION_MAP_UNWRAP_OR`
169 /// * `OPTION_MAP_UNWRAP_OR_ELSE`
170 #[rustfmt::skip]
171 fn option_methods() {
172     let opt = Some(1);
173
174     // Check `OPTION_MAP_UNWRAP_OR`.
175     // Single line case.
176     let _ = opt.map(|x| x + 1)
177                 // Should lint even though this call is on a separate line.
178                .unwrap_or(0);
179     // Multi-line cases.
180     let _ = opt.map(|x| {
181                         x + 1
182                     }
183               ).unwrap_or(0);
184     let _ = opt.map(|x| x + 1)
185                .unwrap_or({
186                     0
187                 });
188     // Single line `map(f).unwrap_or(None)` case.
189     let _ = opt.map(|x| Some(x + 1)).unwrap_or(None);
190     // Multi-line `map(f).unwrap_or(None)` cases.
191     let _ = opt.map(|x| {
192         Some(x + 1)
193     }
194     ).unwrap_or(None);
195     let _ = opt
196         .map(|x| Some(x + 1))
197         .unwrap_or(None);
198     // macro case
199     let _ = opt_map!(opt, |x| x + 1).unwrap_or(0); // should not lint
200
201     // Should not lint if not copyable
202     let id: String = "identifier".to_string();
203     let _ = Some("prefix").map(|p| format!("{}.{}", p, id)).unwrap_or(id);
204     // ...but DO lint if the `unwrap_or` argument is not used in the `map`
205     let id: String = "identifier".to_string();
206     let _ = Some("prefix").map(|p| format!("{}.", p)).unwrap_or(id);
207
208     // Check OPTION_MAP_UNWRAP_OR_ELSE
209     // single line case
210     let _ = opt.map(|x| x + 1)
211                 // Should lint even though this call is on a separate line.
212                .unwrap_or_else(|| 0);
213     // Multi-line cases.
214     let _ = opt.map(|x| {
215                         x + 1
216                     }
217               ).unwrap_or_else(|| 0);
218     let _ = opt.map(|x| x + 1)
219                .unwrap_or_else(||
220                     0
221                 );
222     // Macro case.
223     // Should not lint.
224     let _ = opt_map!(opt, |x| x + 1).unwrap_or_else(|| 0);
225
226     // Issue #4144
227     {
228         let mut frequencies = HashMap::new();
229         let word = "foo";
230
231         frequencies
232             .get_mut(word)
233             .map(|count| {
234                 *count += 1;
235             })
236             .unwrap_or_else(|| {
237                 frequencies.insert(word.to_owned(), 1);
238             });
239     }
240 }
241
242 /// Checks implementation of `FILTER_NEXT` lint.
243 #[rustfmt::skip]
244 fn filter_next() {
245     let v = vec![3, 2, 1, 0, -1, -2, -3];
246
247     // Single-line case.
248     let _ = v.iter().filter(|&x| *x < 0).next();
249
250     // Multi-line case.
251     let _ = v.iter().filter(|&x| {
252                                 *x < 0
253                             }
254                    ).next();
255
256     // Check that hat we don't lint if the caller is not an `Iterator`.
257     let foo = IteratorFalsePositives { foo: 0 };
258     let _ = foo.filter().next();
259 }
260
261 /// Checks implementation of `SEARCH_IS_SOME` lint.
262 #[rustfmt::skip]
263 fn search_is_some() {
264     let v = vec![3, 2, 1, 0, -1, -2, -3];
265     let y = &&42;
266
267     // Check `find().is_some()`, single-line case.
268     let _ = v.iter().find(|&x| *x < 0).is_some();
269     let _ = (0..1).find(|x| **y == *x).is_some(); // one dereference less
270     let _ = (0..1).find(|x| *x == 0).is_some();
271     let _ = v.iter().find(|x| **x == 0).is_some();
272
273     // Check `find().is_some()`, multi-line case.
274     let _ = v.iter().find(|&x| {
275                               *x < 0
276                           }
277                    ).is_some();
278
279     // Check `position().is_some()`, single-line case.
280     let _ = v.iter().position(|&x| x < 0).is_some();
281
282     // Check `position().is_some()`, multi-line case.
283     let _ = v.iter().position(|&x| {
284                                   x < 0
285                               }
286                    ).is_some();
287
288     // Check `rposition().is_some()`, single-line case.
289     let _ = v.iter().rposition(|&x| x < 0).is_some();
290
291     // Check `rposition().is_some()`, multi-line case.
292     let _ = v.iter().rposition(|&x| {
293                                    x < 0
294                                }
295                    ).is_some();
296
297     // Check that we don't lint if the caller is not an `Iterator`.
298     let foo = IteratorFalsePositives { foo: 0 };
299     let _ = foo.find().is_some();
300     let _ = foo.position().is_some();
301     let _ = foo.rposition().is_some();
302 }
303
304 fn main() {
305     option_methods();
306     filter_next();
307     search_is_some();
308 }