mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-18 19:21:09 +00:00
Done with ``` $ perl -0777 -i -pe 's/([ \t]+)\.fails\(\)[ \t]*\n[ \t]+\.no_stdout\(\)[ \t]*\n[ \t]+\.code_is\(([0-9]+)\);/\1.fails_with_code(\2)\n\1.no_stdout();/gs' *rs $ sed -i -e "s|.fails()(.*).code_is(|.fails_with_code(|g" *rs $ perl -0777 -i -pe 's/([ \t]+)\.fails\(\)[ \t]*\n[ \t]+\.code_is\(([0-9]+)\);/\1.fails_with_code(\2);/gs' *rs $ perl -0777 -i -pe 's/([ \t]+)\.fails\(\)(.*?)[ \t]+\.code_is\(([0-9]+)\);/\1.fails_with_code(\3)\2;/gs' *rs ... ```
101 lines
2.7 KiB
Rust
101 lines
2.7 KiB
Rust
// This file is part of the uutils coreutils package.
|
|
//
|
|
// For the full copyright and license information, please view the LICENSE
|
|
// file that was distributed with this source code.
|
|
use crate::common::util::TestScenario;
|
|
|
|
#[test]
|
|
fn test_invalid_arg() {
|
|
new_ucmd!().arg("--definitely-invalid").fails_with_code(1);
|
|
}
|
|
|
|
#[test]
|
|
fn test_create_fifo_missing_operand() {
|
|
new_ucmd!().fails().stderr_is("mkfifo: missing operand\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_create_one_fifo() {
|
|
new_ucmd!().arg("abc").succeeds();
|
|
}
|
|
|
|
#[test]
|
|
fn test_create_one_fifo_with_invalid_mode() {
|
|
new_ucmd!()
|
|
.arg("abcd")
|
|
.arg("-m")
|
|
.arg("invalid")
|
|
.fails()
|
|
.stderr_contains("invalid mode");
|
|
}
|
|
|
|
#[test]
|
|
fn test_create_multiple_fifos() {
|
|
new_ucmd!()
|
|
.arg("abcde")
|
|
.arg("def")
|
|
.arg("sed")
|
|
.arg("dum")
|
|
.succeeds();
|
|
}
|
|
|
|
#[test]
|
|
fn test_create_one_fifo_with_mode() {
|
|
new_ucmd!().arg("abcde").arg("-m600").succeeds();
|
|
}
|
|
|
|
#[test]
|
|
fn test_create_one_fifo_already_exists() {
|
|
new_ucmd!()
|
|
.arg("abcdef")
|
|
.arg("abcdef")
|
|
.fails()
|
|
.stderr_is("mkfifo: cannot create fifo 'abcdef': File exists\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_create_fifo_with_mode_and_umask() {
|
|
use uucore::fs::display_permissions;
|
|
let scene = TestScenario::new(util_name!());
|
|
let at = &scene.fixtures;
|
|
|
|
let test_fifo_creation = |mode: &str, umask: u16, expected: &str| {
|
|
scene
|
|
.ucmd()
|
|
.arg("-m")
|
|
.arg(mode)
|
|
.arg(format!("fifo_test_{mode}"))
|
|
.umask(libc::mode_t::from(umask))
|
|
.succeeds();
|
|
|
|
let metadata = std::fs::metadata(at.subdir.join(format!("fifo_test_{mode}"))).unwrap();
|
|
let permissions = display_permissions(&metadata, true);
|
|
assert_eq!(permissions, expected.to_string());
|
|
};
|
|
|
|
test_fifo_creation("734", 0o077, "prwx-wxr--"); // spell-checker:disable-line
|
|
test_fifo_creation("706", 0o777, "prwx---rw-"); // spell-checker:disable-line
|
|
}
|
|
|
|
#[test]
|
|
fn test_create_fifo_with_umask() {
|
|
use uucore::fs::display_permissions;
|
|
let scene = TestScenario::new(util_name!());
|
|
let at = &scene.fixtures;
|
|
|
|
let test_fifo_creation = |umask: u16, expected: &str| {
|
|
scene
|
|
.ucmd()
|
|
.arg("fifo_test")
|
|
.umask(libc::mode_t::from(umask))
|
|
.succeeds();
|
|
|
|
let metadata = std::fs::metadata(at.subdir.join("fifo_test")).unwrap();
|
|
let permissions = display_permissions(&metadata, true);
|
|
assert_eq!(permissions, expected.to_string());
|
|
at.remove("fifo_test");
|
|
};
|
|
|
|
test_fifo_creation(0o022, "prw-r--r--"); // spell-checker:disable-line
|
|
test_fifo_creation(0o777, "p---------"); // spell-checker:disable-line
|
|
}
|