2021-05-05 20:59:40 +00:00
|
|
|
use crate::common::util::*;
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
#[test]
|
|
|
|
fn test_mknod_help() {
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("--help")
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr()
|
|
|
|
.stdout_contains("USAGE:");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_mknod_version() {
|
|
|
|
assert!(new_ucmd!()
|
|
|
|
.arg("--version")
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr()
|
|
|
|
.stdout_str()
|
|
|
|
.starts_with("mknod"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_mknod_fifo_default_writable() {
|
|
|
|
let ts = TestScenario::new(util_name!());
|
|
|
|
ts.ucmd().arg("test_file").arg("p").succeeds();
|
|
|
|
assert!(ts.fixtures.is_fifo("test_file"));
|
|
|
|
assert!(!ts.fixtures.metadata("test_file").permissions().readonly());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_mknod_fifo_mnemonic_usage() {
|
|
|
|
let ts = TestScenario::new(util_name!());
|
|
|
|
ts.ucmd().arg("test_file").arg("pipe").succeeds();
|
|
|
|
assert!(ts.fixtures.is_fifo("test_file"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_mknod_fifo_read_only() {
|
|
|
|
let ts = TestScenario::new(util_name!());
|
|
|
|
ts.ucmd()
|
|
|
|
.arg("-m")
|
|
|
|
.arg("a=r")
|
|
|
|
.arg("test_file")
|
|
|
|
.arg("p")
|
|
|
|
.succeeds();
|
|
|
|
assert!(ts.fixtures.is_fifo("test_file"));
|
|
|
|
assert!(ts.fixtures.metadata("test_file").permissions().readonly());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_mknod_fifo_invalid_extra_operand() {
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("test_file")
|
|
|
|
.arg("p")
|
|
|
|
.arg("1")
|
|
|
|
.arg("2")
|
|
|
|
.fails()
|
|
|
|
.stderr_contains(&"Fifos do not have major and minor device numbers");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_mknod_character_device_requires_major_and_minor() {
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("test_file")
|
|
|
|
.arg("c")
|
|
|
|
.fails()
|
|
|
|
.status_code(1)
|
|
|
|
.stderr_contains(&"Special files require major and minor device numbers.");
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("test_file")
|
|
|
|
.arg("c")
|
|
|
|
.arg("1")
|
|
|
|
.fails()
|
|
|
|
.status_code(1)
|
|
|
|
.stderr_contains(&"Special files require major and minor device numbers.");
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("test_file")
|
|
|
|
.arg("c")
|
|
|
|
.arg("1")
|
|
|
|
.arg("c")
|
|
|
|
.fails()
|
|
|
|
.status_code(1)
|
|
|
|
.stderr_contains(&"Invalid value for '<MINOR>'");
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("test_file")
|
|
|
|
.arg("c")
|
|
|
|
.arg("c")
|
|
|
|
.arg("1")
|
|
|
|
.fails()
|
|
|
|
.status_code(1)
|
|
|
|
.stderr_contains(&"Invalid value for '<MAJOR>'");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_mknod_invalid_arg() {
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("--foo")
|
|
|
|
.fails()
|
|
|
|
.status_code(1)
|
|
|
|
.no_stdout()
|
|
|
|
.stderr_contains(&"Found argument '--foo' which wasn't expected");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_mknod_invalid_mode() {
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("--mode")
|
|
|
|
.arg("rw")
|
|
|
|
.arg("test_file")
|
|
|
|
.arg("p")
|
|
|
|
.fails()
|
|
|
|
.no_stdout()
|
|
|
|
.status_code(1)
|
|
|
|
.stderr_contains(&"invalid mode");
|
|
|
|
}
|