-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ui test for
write_and_append
lint
- Loading branch information
1 parent
19f5b85
commit 5accd51
Showing
3 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#![warn(clippy::ineffective_open_options)] | ||
|
||
use std::fs::OpenOptions; | ||
|
||
fn main() { | ||
let file = OpenOptions::new() | ||
.create(true) | ||
//~ ERROR: unnecessary use of `.write(true)` | ||
.append(true) | ||
.open("dump.json") | ||
.unwrap(); | ||
|
||
let file = OpenOptions::new() | ||
.create(true) | ||
.append(true) | ||
//~ ERROR: unnecessary use of `.write(true)` | ||
.open("dump.json") | ||
.unwrap(); | ||
|
||
// All the next calls are ok. | ||
let file = OpenOptions::new() | ||
.create(true) | ||
.write(false) | ||
.append(true) | ||
.open("dump.json") | ||
.unwrap(); | ||
let file = OpenOptions::new() | ||
.create(true) | ||
.write(true) | ||
.append(false) | ||
.open("dump.json") | ||
.unwrap(); | ||
let file = OpenOptions::new() | ||
.create(true) | ||
.write(false) | ||
.append(false) | ||
.open("dump.json") | ||
.unwrap(); | ||
let file = OpenOptions::new().create(true).append(true).open("dump.json").unwrap(); | ||
let file = OpenOptions::new().create(true).write(true).open("dump.json").unwrap(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#![warn(clippy::ineffective_open_options)] | ||
|
||
use std::fs::OpenOptions; | ||
|
||
fn main() { | ||
let file = OpenOptions::new() | ||
.create(true) | ||
.write(true) //~ ERROR: unnecessary use of `.write(true)` | ||
.append(true) | ||
.open("dump.json") | ||
.unwrap(); | ||
|
||
let file = OpenOptions::new() | ||
.create(true) | ||
.append(true) | ||
.write(true) //~ ERROR: unnecessary use of `.write(true)` | ||
.open("dump.json") | ||
.unwrap(); | ||
|
||
// All the next calls are ok. | ||
let file = OpenOptions::new() | ||
.create(true) | ||
.write(false) | ||
.append(true) | ||
.open("dump.json") | ||
.unwrap(); | ||
let file = OpenOptions::new() | ||
.create(true) | ||
.write(true) | ||
.append(false) | ||
.open("dump.json") | ||
.unwrap(); | ||
let file = OpenOptions::new() | ||
.create(true) | ||
.write(false) | ||
.append(false) | ||
.open("dump.json") | ||
.unwrap(); | ||
let file = OpenOptions::new().create(true).append(true).open("dump.json").unwrap(); | ||
let file = OpenOptions::new().create(true).write(true).open("dump.json").unwrap(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
error: unnecessary use of `.write(true)` because there is `.append(true)` | ||
--> $DIR/ineffective_open_options.rs:8:9 | ||
| | ||
LL | .write(true) | ||
| ^^^^^^^^^^^^ help: remove `.write(true)` | ||
| | ||
= note: `-D clippy::ineffective-open-options` implied by `-D warnings` | ||
= help: to override `-D warnings` add `#[allow(clippy::ineffective_open_options)]` | ||
|
||
error: unnecessary use of `.write(true)` because there is `.append(true)` | ||
--> $DIR/ineffective_open_options.rs:16:9 | ||
| | ||
LL | .write(true) | ||
| ^^^^^^^^^^^^ help: remove `.write(true)` | ||
|
||
error: aborting due to 2 previous errors | ||
|