2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rm_one_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_rm_one_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));
|
|
|
|
}
|
|
|
|
|
2020-11-08 22:26:42 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rm_failed() {
|
|
|
|
let (_at, mut ucmd) = at_and_ucmd!();
|
2021-04-05 22:04:49 +00:00
|
|
|
let file = "test_rm_one_file"; // Doesn't exist
|
2021-03-25 22:04:02 +00:00
|
|
|
|
2021-04-05 22:04:49 +00:00
|
|
|
ucmd.arg(file).fails().stderr_contains(&format!(
|
2021-03-25 22:04:02 +00:00
|
|
|
"cannot remove '{}': No such file or directory",
|
|
|
|
file
|
2021-04-05 22:04:49 +00:00
|
|
|
));
|
2020-11-08 22:26:42 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 05:25:01 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rm_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_rm_multiple_file_a";
|
|
|
|
let file_b = "test_rm_multiple_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
|
2016-08-13 21:59:21 +00:00
|
|
|
ucmd.arg(file_a).arg(file_b).succeeds().no_stderr();
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
assert!(!at.file_exists(file_a));
|
|
|
|
assert!(!at.file_exists(file_b));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rm_interactive() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let scene = TestScenario::new(util_name!());
|
2016-07-29 21:26:32 +00:00
|
|
|
let at = &scene.fixtures;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
let file_a = "test_rm_interactive_file_a";
|
|
|
|
let file_b = "test_rm_interactive_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
|
2020-04-13 18:36:03 +00:00
|
|
|
scene
|
|
|
|
.ucmd()
|
2016-08-13 21:59:21 +00:00
|
|
|
.arg("-i")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.pipe_in("n")
|
|
|
|
.succeeds();
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
|
2020-04-13 18:36:03 +00:00
|
|
|
scene
|
|
|
|
.ucmd()
|
2016-08-13 21:59:21 +00:00
|
|
|
.arg("-i")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
2021-05-31 03:55:28 +00:00
|
|
|
.pipe_in("Yesh") // spell-checker:disable-line
|
2016-08-13 21:59:21 +00:00
|
|
|
.succeeds();
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
assert!(!at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rm_force() {
|
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_rm_force_a";
|
|
|
|
let file_b = "test_rm_force_b";
|
|
|
|
|
2016-08-13 21:59:21 +00:00
|
|
|
ucmd.arg("-f")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
assert!(!at.file_exists(file_a));
|
|
|
|
assert!(!at.file_exists(file_b));
|
|
|
|
}
|
|
|
|
|
2020-12-25 13:21:47 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rm_force_multiple() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let file_a = "test_rm_force_a";
|
|
|
|
let file_b = "test_rm_force_b";
|
|
|
|
|
|
|
|
ucmd.arg("-f")
|
|
|
|
.arg("-f")
|
|
|
|
.arg("-f")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(!at.file_exists(file_a));
|
|
|
|
assert!(!at.file_exists(file_b));
|
|
|
|
}
|
|
|
|
|
2015-11-16 05:25:01 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rm_empty_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_rm_empty_directory";
|
|
|
|
|
|
|
|
at.mkdir(dir);
|
|
|
|
|
2016-08-13 21:59:21 +00:00
|
|
|
ucmd.arg("-d").arg(dir).succeeds().no_stderr();
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
assert!(!at.dir_exists(dir));
|
|
|
|
}
|
|
|
|
|
2021-03-25 22:04:02 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rm_empty_directory_verbose() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let dir = "test_rm_empty_directory_verbose";
|
|
|
|
|
|
|
|
at.mkdir(dir);
|
|
|
|
|
|
|
|
ucmd.arg("-d")
|
|
|
|
.arg("-v")
|
|
|
|
.arg(dir)
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only(format!("removed directory '{}'\n", dir));
|
|
|
|
|
|
|
|
assert!(!at.dir_exists(dir));
|
|
|
|
}
|
|
|
|
|
2021-03-18 13:46:56 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rm_non_empty_directory() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let dir = "test_rm_non_empty_dir";
|
|
|
|
let file_a = &format!("{}/test_rm_non_empty_file_a", dir);
|
|
|
|
|
|
|
|
at.mkdir(dir);
|
|
|
|
at.touch(file_a);
|
|
|
|
|
2021-04-05 22:04:49 +00:00
|
|
|
ucmd.arg("-d")
|
|
|
|
.arg(dir)
|
|
|
|
.fails()
|
|
|
|
.stderr_contains(&format!("cannot remove '{}': Directory not empty", dir));
|
2021-03-18 13:46:56 +00:00
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.dir_exists(dir));
|
|
|
|
}
|
|
|
|
|
2015-11-16 05:25:01 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rm_recursive() {
|
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_rm_recursive_directory";
|
|
|
|
let file_a = "test_rm_recursive_directory/test_rm_recursive_file_a";
|
|
|
|
let file_b = "test_rm_recursive_directory/test_rm_recursive_file_b";
|
|
|
|
|
|
|
|
at.mkdir(dir);
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
|
2016-08-13 21:59:21 +00:00
|
|
|
ucmd.arg("-r").arg(dir).succeeds().no_stderr();
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
assert!(!at.dir_exists(dir));
|
|
|
|
assert!(!at.file_exists(file_a));
|
|
|
|
assert!(!at.file_exists(file_b));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-03-25 22:04:02 +00:00
|
|
|
fn test_rm_directory_without_flag() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-25 22:04:02 +00:00
|
|
|
let dir = "test_rm_directory_without_flag_dir";
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
at.mkdir(dir);
|
2021-03-30 19:24:01 +00:00
|
|
|
|
2021-04-05 22:04:49 +00:00
|
|
|
ucmd.arg(dir)
|
|
|
|
.fails()
|
|
|
|
.stderr_contains(&format!("cannot remove '{}': Is a directory", dir));
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rm_verbose() {
|
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_rm_verbose_file_a";
|
|
|
|
let file_b = "test_rm_verbose_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
|
2020-04-13 18:36:03 +00:00
|
|
|
ucmd.arg("-v")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
2016-08-13 21:59:21 +00:00
|
|
|
.stdout_only(format!("removed '{}'\nremoved '{}'\n", file_a, file_b));
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
2017-04-01 14:38:38 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-03-25 22:04:02 +00:00
|
|
|
#[cfg(not(windows))]
|
|
|
|
// on unix symlink_dir is a file
|
|
|
|
fn test_rm_symlink_dir() {
|
2017-04-01 14:38:38 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-25 22:04:02 +00:00
|
|
|
|
|
|
|
let dir = "test_rm_symlink_dir_directory";
|
|
|
|
let link = "test_rm_symlink_dir_link";
|
2017-04-01 14:38:38 +00:00
|
|
|
|
|
|
|
at.mkdir(dir);
|
2018-11-13 04:55:25 +00:00
|
|
|
at.symlink_dir(dir, link);
|
2017-04-01 14:38:38 +00:00
|
|
|
|
|
|
|
ucmd.arg(link).succeeds();
|
2021-03-25 22:04:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(windows)]
|
|
|
|
// on windows removing symlink_dir requires "-r" or "-d"
|
|
|
|
fn test_rm_symlink_dir() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let dir = "test_rm_symlink_dir_directory";
|
|
|
|
let link = "test_rm_symlink_dir_link";
|
|
|
|
|
|
|
|
at.mkdir(dir);
|
|
|
|
at.symlink_dir(dir, link);
|
|
|
|
|
2021-04-05 22:04:49 +00:00
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg(link)
|
|
|
|
.fails()
|
|
|
|
.stderr_contains(&format!("cannot remove '{}': Is a directory", link));
|
2021-03-25 22:04:02 +00:00
|
|
|
|
|
|
|
assert!(at.dir_exists(link));
|
|
|
|
|
|
|
|
scene.ucmd().arg("-r").arg(link).succeeds();
|
2017-04-01 14:38:38 +00:00
|
|
|
}
|
2017-04-08 16:03:16 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rm_invalid_symlink() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let link = "test_rm_invalid_symlink";
|
|
|
|
|
2018-11-13 04:55:25 +00:00
|
|
|
at.symlink_file(link, link);
|
2017-04-08 16:03:16 +00:00
|
|
|
|
|
|
|
ucmd.arg(link).succeeds();
|
|
|
|
}
|
2017-12-26 23:25:03 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rm_force_no_operand() {
|
|
|
|
let mut ucmd = new_ucmd!();
|
|
|
|
|
|
|
|
ucmd.arg("-f").succeeds().no_stderr();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rm_no_operand() {
|
|
|
|
let mut ucmd = new_ucmd!();
|
|
|
|
|
|
|
|
ucmd.fails()
|
2021-05-25 23:45:53 +00:00
|
|
|
.stderr_is("rm: missing an argument\nrm: for help, try 'rm --help'\n");
|
2017-12-26 23:25:03 +00:00
|
|
|
}
|
2021-04-05 20:18:47 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rm_verbose_slash() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let dir = "test_rm_verbose_slash_directory";
|
|
|
|
let file_a = &format!("{}/test_rm_verbose_slash_file_a", dir);
|
|
|
|
|
|
|
|
at.mkdir(dir);
|
|
|
|
at.touch(file_a);
|
|
|
|
|
|
|
|
let file_a_normalized = &format!(
|
|
|
|
"{}{}test_rm_verbose_slash_file_a",
|
|
|
|
dir,
|
|
|
|
std::path::MAIN_SEPARATOR
|
|
|
|
);
|
|
|
|
|
|
|
|
ucmd.arg("-r")
|
|
|
|
.arg("-f")
|
|
|
|
.arg("-v")
|
|
|
|
.arg(&format!("{}///", dir))
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only(format!(
|
|
|
|
"removed '{}'\nremoved directory '{}'\n",
|
|
|
|
file_a_normalized, dir
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(!at.dir_exists(dir));
|
|
|
|
assert!(!at.file_exists(file_a));
|
|
|
|
}
|