2021-03-27 19:00:59 +00:00
|
|
|
use crate::common::util::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_create_fifo_missing_operand() {
|
2021-05-25 23:45:53 +00:00
|
|
|
new_ucmd!().fails().stderr_is("mkfifo: missing operand");
|
2021-03-27 19:00:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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()
|
2021-04-22 20:37:44 +00:00
|
|
|
.stderr_contains("invalid mode");
|
2021-03-27 19:00:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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()
|
2021-05-25 23:45:53 +00:00
|
|
|
.stderr_is("mkfifo: cannot create fifo 'abcdef': File exists");
|
2021-03-27 19:00:59 +00:00
|
|
|
}
|