rust/tests/ui/open_options.rs

35 lines
1.5 KiB
Rust
Raw Normal View History

2015-10-07 06:15:14 -05:00
use std::fs::OpenOptions;
#[allow(unused_must_use)]
2018-07-28 10:34:52 -05:00
#[warn(clippy::nonsensical_open_options)]
2015-10-07 06:15:14 -05:00
fn main() {
2017-02-08 07:58:07 -06:00
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`
2017-02-08 07:58:07 -06:00
OpenOptions::new().append(true).truncate(true).open("foo.txt");
//~^ ERROR: file opened with `append` and `truncate`
2016-02-05 14:54:29 -06:00
2017-02-08 07:58:07 -06:00
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");
2017-02-08 07:58:07 -06:00
OpenOptions::new().write(true).write(false).open("foo.txt");
//~^ ERROR: the method `write` is called more than once
2017-02-08 07:58:07 -06:00
OpenOptions::new().append(true).append(false).open("foo.txt");
//~^ ERROR: the method `append` is called more than once
2017-02-08 07:58:07 -06:00
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");
2015-10-07 06:15:14 -05:00
}