1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

mkfifo: general refactor, move to clap, add tests (#1945)

* mkfifo: general refactor, move to clap, add unimplemented flags

* chore: update Cargo.lock

* chore: delete unused variables, simplify multiple lines with crash

* test: add tests

* chore: revert the use of crash

* test: use even more invalid mod mode
This commit is contained in:
Yagiz Degirmenci 2021-03-27 22:00:59 +03:00 committed by GitHub
parent 0bdd61af5e
commit f66a188414
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 97 additions and 50 deletions

View file

@ -1 +1,48 @@
// ToDO: add tests
use crate::common::util::*;
#[test]
fn test_create_fifo_missing_operand() {
new_ucmd!()
.fails()
.stderr_is("mkfifo: error: missing operand");
}
#[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: error: cannot create fifo 'abcdef': File exists");
}