2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unlink_file() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2015-11-16 05:25:01 +00:00
|
|
|
let file = "test_unlink_file";
|
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
|
2016-08-13 21:59:21 +00:00
|
|
|
ucmd.arg(file).succeeds().no_stderr();
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
assert!(!at.file_exists(file));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unlink_multiple_files() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2015-11-16 05:25:01 +00:00
|
|
|
let file_a = "test_unlink_multiple_file_a";
|
|
|
|
let file_b = "test_unlink_multiple_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
|
2020-04-13 18:36:03 +00:00
|
|
|
ucmd.arg(file_a).arg(file_b).fails().stderr_is(
|
2021-05-25 23:45:53 +00:00
|
|
|
"unlink: extra operand: 'test_unlink_multiple_file_b'\nTry 'unlink --help' \
|
2021-03-18 09:24:30 +00:00
|
|
|
for more information.\n",
|
2020-04-13 18:36:03 +00:00
|
|
|
);
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unlink_directory() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2015-11-16 05:25:01 +00:00
|
|
|
let dir = "test_unlink_empty_directory";
|
|
|
|
|
|
|
|
at.mkdir(dir);
|
|
|
|
|
2020-04-13 18:36:03 +00:00
|
|
|
ucmd.arg(dir).fails().stderr_is(
|
2021-05-25 23:45:53 +00:00
|
|
|
"unlink: cannot unlink 'test_unlink_empty_directory': Not a regular file \
|
2021-03-18 09:24:30 +00:00
|
|
|
or symlink\n",
|
2020-04-13 18:36:03 +00:00
|
|
|
);
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unlink_nonexistent() {
|
|
|
|
let file = "test_unlink_nonexistent";
|
|
|
|
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!().arg(file).fails().stderr_is(
|
2021-05-25 23:45:53 +00:00
|
|
|
"unlink: Cannot stat 'test_unlink_nonexistent': No such file or directory \
|
2021-03-18 09:24:30 +00:00
|
|
|
(os error 2)\n",
|
2020-04-13 18:36:03 +00:00
|
|
|
);
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|