mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
515fe65ba8
- New ineffective_open_options had to be fixed. - Now not raising an issue on missing `truncate` when `append(true)` makes the intent clear. - Try implementing more advanced tests for non-chained operations. Fail
34 lines
1.5 KiB
Rust
34 lines
1.5 KiB
Rust
use std::fs::OpenOptions;
|
|
#[allow(unused_must_use)]
|
|
#[warn(clippy::nonsensical_open_options)]
|
|
fn main() {
|
|
OpenOptions::new().read(true).truncate(true).open("foo.txt");
|
|
//~^ ERROR: file opened with `truncate` and `read`
|
|
//~| NOTE: `-D clippy::nonsensical-open-options` implied by `-D warnings`
|
|
OpenOptions::new().append(true).truncate(true).open("foo.txt");
|
|
//~^ ERROR: file opened with `append` and `truncate`
|
|
|
|
OpenOptions::new().read(true).read(false).open("foo.txt");
|
|
//~^ ERROR: the method `read` is called more than once
|
|
OpenOptions::new()
|
|
.create(true)
|
|
.truncate(true) // Ensure we don't trigger suspicious open options by having create without truncate
|
|
.create(false)
|
|
//~^ ERROR: the method `create` is called more than once
|
|
.open("foo.txt");
|
|
OpenOptions::new().write(true).write(false).open("foo.txt");
|
|
//~^ ERROR: the method `write` is called more than once
|
|
OpenOptions::new().append(true).append(false).open("foo.txt");
|
|
//~^ ERROR: the method `append` is called more than once
|
|
OpenOptions::new().truncate(true).truncate(false).open("foo.txt");
|
|
//~^ ERROR: the method `truncate` is called more than once
|
|
|
|
std::fs::File::options().read(true).read(false).open("foo.txt");
|
|
//~^ ERROR: the method `read` is called more than once
|
|
|
|
let mut options = std::fs::OpenOptions::new();
|
|
options.read(true);
|
|
options.read(false);
|
|
//#~^ ERROR: the method `read` is called more than once
|
|
options.open("foo.txt");
|
|
}
|