2021-05-30 05:10:54 +00:00
|
|
|
// spell-checker:ignore (words) helloworld objdump
|
|
|
|
|
2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2021-03-27 08:18:47 +00:00
|
|
|
use filetime::FileTime;
|
2020-11-16 21:54:41 +00:00
|
|
|
use rust_users::*;
|
2020-11-17 21:13:58 +00:00
|
|
|
use std::os::unix::fs::PermissionsExt;
|
2021-04-10 09:53:29 +00:00
|
|
|
#[cfg(not(windows))]
|
|
|
|
use std::process::Command;
|
2021-03-28 07:42:25 +00:00
|
|
|
#[cfg(target_os = "linux")]
|
2021-03-28 02:37:58 +00:00
|
|
|
use std::thread::sleep;
|
2016-07-12 18:56:21 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_help() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (_, mut ucmd) = at_and_ucmd!();
|
2016-07-12 18:56:21 +00:00
|
|
|
|
2021-04-22 20:37:44 +00:00
|
|
|
ucmd.arg("--help")
|
2020-04-13 18:36:03 +00:00
|
|
|
.succeeds()
|
|
|
|
.no_stderr()
|
2021-04-22 20:37:44 +00:00
|
|
|
.stdout_contains("FLAGS:");
|
2016-07-12 18:56:21 +00:00
|
|
|
}
|
2016-07-12 20:58:44 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_basic() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let dir = "target_dir";
|
|
|
|
let file1 = "source_file1";
|
|
|
|
let file2 = "source_file2";
|
2016-07-12 20:58:44 +00:00
|
|
|
|
2016-07-13 10:27:11 +00:00
|
|
|
at.touch(file1);
|
|
|
|
at.touch(file2);
|
2016-07-12 20:58:44 +00:00
|
|
|
at.mkdir(dir);
|
2016-08-13 21:59:21 +00:00
|
|
|
ucmd.arg(file1).arg(file2).arg(dir).succeeds().no_stderr();
|
2016-07-12 20:58:44 +00:00
|
|
|
|
2016-07-13 10:27:11 +00:00
|
|
|
assert!(at.file_exists(file1));
|
|
|
|
assert!(at.file_exists(file2));
|
|
|
|
assert!(at.file_exists(&format!("{}/{}", dir, file1)));
|
|
|
|
assert!(at.file_exists(&format!("{}/{}", dir, file2)));
|
2016-07-12 20:58:44 +00:00
|
|
|
}
|
2016-07-13 08:37:08 +00:00
|
|
|
|
2020-11-29 15:31:26 +00:00
|
|
|
#[test]
|
|
|
|
fn test_install_twice_dir() {
|
2021-03-20 18:31:52 +00:00
|
|
|
let dir = "dir";
|
2020-11-29 15:31:26 +00:00
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
|
|
|
|
scene.ucmd().arg("-d").arg(dir).succeeds();
|
|
|
|
scene.ucmd().arg("-d").arg(dir).succeeds();
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
assert!(at.dir_exists(dir));
|
|
|
|
}
|
|
|
|
|
2017-12-27 08:31:19 +00:00
|
|
|
#[test]
|
|
|
|
fn test_install_failing_not_dir() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let file1 = "file1";
|
|
|
|
let file2 = "file2";
|
|
|
|
let file3 = "file3";
|
2017-12-27 08:31:19 +00:00
|
|
|
|
|
|
|
at.touch(file1);
|
|
|
|
at.touch(file2);
|
|
|
|
at.touch(file3);
|
2021-04-22 20:37:44 +00:00
|
|
|
ucmd.arg(file1)
|
2020-04-13 18:36:03 +00:00
|
|
|
.arg(file2)
|
|
|
|
.arg(file3)
|
|
|
|
.fails()
|
2021-04-22 20:37:44 +00:00
|
|
|
.stderr_contains("not a directory");
|
2017-12-27 08:31:19 +00:00
|
|
|
}
|
|
|
|
|
2016-07-13 08:37:08 +00:00
|
|
|
#[test]
|
|
|
|
fn test_install_unimplemented_arg() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let dir = "target_dir";
|
|
|
|
let file = "source_file";
|
2016-07-13 08:37:08 +00:00
|
|
|
let context_arg = "--context";
|
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
at.mkdir(dir);
|
2021-04-22 20:37:44 +00:00
|
|
|
ucmd.arg(context_arg)
|
2020-04-13 18:36:03 +00:00
|
|
|
.arg(file)
|
|
|
|
.arg(dir)
|
|
|
|
.fails()
|
2021-04-22 20:37:44 +00:00
|
|
|
.stderr_contains("Unimplemented");
|
2016-07-13 08:37:08 +00:00
|
|
|
|
|
|
|
assert!(!at.file_exists(&format!("{}/{}", dir, file)));
|
|
|
|
}
|
2016-07-13 10:53:22 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-04-02 19:04:25 +00:00
|
|
|
fn test_install_ancestors_directories() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-04-02 19:04:25 +00:00
|
|
|
let ancestor1 = "ancestor1";
|
|
|
|
let ancestor2 = "ancestor1/ancestor2";
|
|
|
|
let target_dir = "ancestor1/ancestor2/target_dir";
|
2016-07-13 10:53:22 +00:00
|
|
|
let directories_arg = "-d";
|
|
|
|
|
2021-04-02 19:04:25 +00:00
|
|
|
ucmd.args(&[directories_arg, target_dir])
|
2020-04-13 18:36:03 +00:00
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
2016-07-13 10:53:22 +00:00
|
|
|
|
2021-04-02 19:04:25 +00:00
|
|
|
assert!(at.dir_exists(ancestor1));
|
|
|
|
assert!(at.dir_exists(ancestor2));
|
|
|
|
assert!(at.dir_exists(target_dir));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_ancestors_mode_directories() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let ancestor1 = "ancestor1";
|
|
|
|
let ancestor2 = "ancestor1/ancestor2";
|
|
|
|
let target_dir = "ancestor1/ancestor2/target_dir";
|
|
|
|
let directories_arg = "-d";
|
|
|
|
let mode_arg = "--mode=700";
|
|
|
|
|
|
|
|
ucmd.args(&[mode_arg, directories_arg, target_dir])
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.dir_exists(ancestor1));
|
|
|
|
assert!(at.dir_exists(ancestor2));
|
|
|
|
assert!(at.dir_exists(target_dir));
|
|
|
|
|
2021-05-29 12:32:35 +00:00
|
|
|
assert_ne!(0o40_700_u32, at.metadata(ancestor1).permissions().mode());
|
|
|
|
assert_ne!(0o40_700_u32, at.metadata(ancestor2).permissions().mode());
|
2021-04-02 19:04:25 +00:00
|
|
|
|
|
|
|
// Expected mode only on the target_dir.
|
2021-05-29 12:32:35 +00:00
|
|
|
assert_eq!(0o40_700_u32, at.metadata(target_dir).permissions().mode());
|
2021-04-02 19:04:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_parent_directories() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let ancestor1 = "ancestor1";
|
|
|
|
let ancestor2 = "ancestor1/ancestor2";
|
|
|
|
let target_dir = "ancestor1/ancestor2/target_dir";
|
|
|
|
let directories_arg = "-d";
|
|
|
|
|
|
|
|
// Here one of the ancestors already exist and only the target_dir and
|
|
|
|
// its parent must be created.
|
|
|
|
at.mkdir(ancestor1);
|
|
|
|
|
|
|
|
ucmd.args(&[directories_arg, target_dir])
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.dir_exists(ancestor2));
|
|
|
|
assert!(at.dir_exists(target_dir));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_several_directories() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let dir1 = "dir1";
|
|
|
|
let dir2 = "dir2";
|
|
|
|
let dir3 = "dir3";
|
|
|
|
let directories_arg = "-d";
|
|
|
|
|
|
|
|
ucmd.args(&[directories_arg, dir1, dir2, dir3])
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.dir_exists(dir1));
|
|
|
|
assert!(at.dir_exists(dir2));
|
|
|
|
assert!(at.dir_exists(dir3));
|
2016-07-13 10:53:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-13 13:29:24 +00:00
|
|
|
#[test]
|
|
|
|
fn test_install_mode_numeric() {
|
2020-12-17 22:41:52 +00:00
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
2021-03-20 18:31:52 +00:00
|
|
|
let dir = "dir1";
|
|
|
|
let dir2 = "dir2";
|
2020-12-17 22:41:52 +00:00
|
|
|
|
2021-03-20 18:31:52 +00:00
|
|
|
let file = "file";
|
2016-07-13 13:29:24 +00:00
|
|
|
let mode_arg = "--mode=333";
|
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
at.mkdir(dir);
|
2020-12-17 22:41:52 +00:00
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg(file)
|
|
|
|
.arg(dir)
|
|
|
|
.arg(mode_arg)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
2016-07-13 13:29:24 +00:00
|
|
|
|
|
|
|
let dest_file = &format!("{}/{}", dir, file);
|
|
|
|
assert!(at.file_exists(file));
|
|
|
|
assert!(at.file_exists(dest_file));
|
|
|
|
let permissions = at.metadata(dest_file).permissions();
|
2021-05-29 12:32:35 +00:00
|
|
|
assert_eq!(0o100_333_u32, PermissionsExt::mode(&permissions));
|
2020-12-17 22:41:52 +00:00
|
|
|
|
|
|
|
let mode_arg = "-m 0333";
|
|
|
|
at.mkdir(dir2);
|
|
|
|
|
2021-04-05 20:03:43 +00:00
|
|
|
scene.ucmd().arg(mode_arg).arg(file).arg(dir2).succeeds();
|
2020-12-17 22:41:52 +00:00
|
|
|
|
|
|
|
let dest_file = &format!("{}/{}", dir2, file);
|
|
|
|
assert!(at.file_exists(file));
|
|
|
|
assert!(at.file_exists(dest_file));
|
|
|
|
let permissions = at.metadata(dest_file).permissions();
|
2021-05-29 12:32:35 +00:00
|
|
|
assert_eq!(0o100_333_u32, PermissionsExt::mode(&permissions));
|
2016-07-13 13:29:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_mode_symbolic() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let dir = "target_dir";
|
|
|
|
let file = "source_file";
|
2016-07-13 13:29:24 +00:00
|
|
|
let mode_arg = "--mode=o+wx";
|
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
at.mkdir(dir);
|
2016-08-13 21:59:21 +00:00
|
|
|
ucmd.arg(file).arg(dir).arg(mode_arg).succeeds().no_stderr();
|
2016-07-13 13:29:24 +00:00
|
|
|
|
|
|
|
let dest_file = &format!("{}/{}", dir, file);
|
|
|
|
assert!(at.file_exists(file));
|
|
|
|
assert!(at.file_exists(dest_file));
|
|
|
|
let permissions = at.metadata(dest_file).permissions();
|
2021-05-29 12:32:35 +00:00
|
|
|
assert_eq!(0o100_003_u32, PermissionsExt::mode(&permissions));
|
2016-07-13 13:29:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_mode_failing() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let dir = "target_dir";
|
|
|
|
let file = "source_file";
|
2016-07-13 13:29:24 +00:00
|
|
|
let mode_arg = "--mode=999";
|
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
at.mkdir(dir);
|
2021-04-22 20:37:44 +00:00
|
|
|
ucmd.arg(file)
|
2020-04-13 18:36:03 +00:00
|
|
|
.arg(dir)
|
|
|
|
.arg(mode_arg)
|
|
|
|
.fails()
|
2021-04-22 20:37:44 +00:00
|
|
|
.stderr_contains("Invalid mode string: invalid digit found in string");
|
2016-07-13 13:29:24 +00:00
|
|
|
|
|
|
|
let dest_file = &format!("{}/{}", dir, file);
|
|
|
|
assert!(at.file_exists(file));
|
|
|
|
assert!(!at.file_exists(dest_file));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_mode_directories() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let component = "component";
|
2016-07-13 13:29:24 +00:00
|
|
|
let directories_arg = "-d";
|
|
|
|
let mode_arg = "--mode=333";
|
|
|
|
|
2020-04-13 18:36:03 +00:00
|
|
|
ucmd.arg(directories_arg)
|
|
|
|
.arg(component)
|
|
|
|
.arg(mode_arg)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
2016-07-13 13:29:24 +00:00
|
|
|
|
|
|
|
assert!(at.dir_exists(component));
|
|
|
|
let permissions = at.metadata(component).permissions();
|
2021-05-29 12:32:35 +00:00
|
|
|
assert_eq!(0o040_333_u32, PermissionsExt::mode(&permissions));
|
2016-07-13 13:29:24 +00:00
|
|
|
}
|
2017-12-27 08:31:19 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_target_file() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let file1 = "source_file";
|
|
|
|
let file2 = "target_file";
|
2017-12-27 08:31:19 +00:00
|
|
|
|
|
|
|
at.touch(file1);
|
|
|
|
at.touch(file2);
|
|
|
|
ucmd.arg(file1).arg(file2).succeeds().no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file1));
|
|
|
|
assert!(at.file_exists(file2));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_target_new_file() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let file = "file";
|
|
|
|
let dir = "target_dir";
|
2017-12-27 08:31:19 +00:00
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
at.mkdir(dir);
|
2020-04-13 18:36:03 +00:00
|
|
|
ucmd.arg(file)
|
|
|
|
.arg(format!("{}/{}", dir, file))
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
2017-12-27 08:31:19 +00:00
|
|
|
|
|
|
|
assert!(at.file_exists(file));
|
|
|
|
assert!(at.file_exists(&format!("{}/{}", dir, file)));
|
|
|
|
}
|
|
|
|
|
2020-11-16 21:54:41 +00:00
|
|
|
#[test]
|
|
|
|
fn test_install_target_new_file_with_group() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let file = "file";
|
|
|
|
let dir = "target_dir";
|
2020-11-16 21:54:41 +00:00
|
|
|
let gid = get_effective_gid();
|
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
at.mkdir(dir);
|
2020-11-19 21:28:13 +00:00
|
|
|
let result = ucmd
|
|
|
|
.arg(file)
|
2020-11-16 21:54:41 +00:00
|
|
|
.arg("--group")
|
|
|
|
.arg(gid.to_string())
|
|
|
|
.arg(format!("{}/{}", dir, file))
|
2020-11-19 21:28:13 +00:00
|
|
|
.run();
|
|
|
|
|
2021-05-25 23:45:53 +00:00
|
|
|
if is_ci() && result.stderr_str().contains("no such group:") {
|
2020-11-19 21:28:13 +00:00
|
|
|
// In the CI, some server are failing to return the group.
|
|
|
|
// As seems to be a configuration issue, ignoring it
|
|
|
|
return;
|
|
|
|
}
|
2020-11-16 21:54:41 +00:00
|
|
|
|
2021-04-05 20:03:43 +00:00
|
|
|
result.success();
|
2020-11-16 21:54:41 +00:00
|
|
|
assert!(at.file_exists(file));
|
|
|
|
assert!(at.file_exists(&format!("{}/{}", dir, file)));
|
|
|
|
}
|
|
|
|
|
2020-11-17 21:13:58 +00:00
|
|
|
#[test]
|
|
|
|
fn test_install_target_new_file_with_owner() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let file = "file";
|
|
|
|
let dir = "target_dir";
|
2020-11-17 21:13:58 +00:00
|
|
|
let uid = get_effective_uid();
|
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
at.mkdir(dir);
|
2020-11-19 21:28:13 +00:00
|
|
|
let result = ucmd
|
|
|
|
.arg(file)
|
2020-11-17 21:13:58 +00:00
|
|
|
.arg("--owner")
|
|
|
|
.arg(uid.to_string())
|
|
|
|
.arg(format!("{}/{}", dir, file))
|
2020-11-19 21:28:13 +00:00
|
|
|
.run();
|
|
|
|
|
2021-05-26 00:21:53 +00:00
|
|
|
if is_ci() && result.stderr_str().contains("no such user:") {
|
2020-11-19 21:28:13 +00:00
|
|
|
// In the CI, some server are failing to return the user id.
|
|
|
|
// As seems to be a configuration issue, ignoring it
|
|
|
|
return;
|
|
|
|
}
|
2020-11-17 21:13:58 +00:00
|
|
|
|
2021-04-05 20:03:43 +00:00
|
|
|
result.success();
|
2020-11-17 21:13:58 +00:00
|
|
|
assert!(at.file_exists(file));
|
|
|
|
assert!(at.file_exists(&format!("{}/{}", dir, file)));
|
|
|
|
}
|
2020-11-16 21:54:41 +00:00
|
|
|
|
2017-12-27 08:31:19 +00:00
|
|
|
#[test]
|
|
|
|
fn test_install_target_new_file_failing_nonexistent_parent() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let file1 = "source_file";
|
|
|
|
let file2 = "target_file";
|
|
|
|
let dir = "target_dir";
|
2017-12-27 08:31:19 +00:00
|
|
|
|
|
|
|
at.touch(file1);
|
|
|
|
|
2021-04-05 20:03:43 +00:00
|
|
|
ucmd.arg(file1)
|
2020-04-13 18:36:03 +00:00
|
|
|
.arg(format!("{}/{}", dir, file2))
|
|
|
|
.fails()
|
2021-04-19 20:03:13 +00:00
|
|
|
.stderr_contains(&"No such file or directory");
|
2017-12-27 08:31:19 +00:00
|
|
|
}
|
2020-11-25 12:48:00 +00:00
|
|
|
|
2021-03-12 21:51:47 +00:00
|
|
|
#[test]
|
|
|
|
fn test_install_preserve_timestamps() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let file1 = "source_file";
|
|
|
|
let file2 = "target_file";
|
2021-03-12 21:51:47 +00:00
|
|
|
at.touch(file1);
|
|
|
|
|
|
|
|
ucmd.arg(file1).arg(file2).arg("-p").succeeds().no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file1));
|
|
|
|
assert!(at.file_exists(file2));
|
|
|
|
|
|
|
|
let file1_metadata = at.metadata(file1);
|
|
|
|
let file2_metadata = at.metadata(file2);
|
|
|
|
|
2021-03-15 15:00:30 +00:00
|
|
|
assert_eq!(
|
|
|
|
file1_metadata.accessed().ok(),
|
|
|
|
file2_metadata.accessed().ok()
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
file1_metadata.modified().ok(),
|
|
|
|
file2_metadata.modified().ok()
|
|
|
|
);
|
2021-03-12 21:51:47 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 12:48:00 +00:00
|
|
|
// These two tests are failing but should work
|
|
|
|
#[test]
|
|
|
|
fn test_install_copy_file() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let file1 = "source_file";
|
|
|
|
let file2 = "target_file";
|
2020-11-25 12:48:00 +00:00
|
|
|
|
|
|
|
at.touch(file1);
|
|
|
|
ucmd.arg(file1).arg(file2).succeeds().no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file1));
|
2020-11-26 20:46:03 +00:00
|
|
|
assert!(at.file_exists(file2));
|
2020-11-25 12:48:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
fn test_install_target_file_dev_null() {
|
2021-04-05 20:03:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-27 09:08:03 +00:00
|
|
|
|
2020-11-25 12:48:00 +00:00
|
|
|
let file1 = "/dev/null";
|
2021-03-20 18:31:52 +00:00
|
|
|
let file2 = "target_file";
|
2020-11-25 12:48:00 +00:00
|
|
|
|
2021-04-05 20:03:43 +00:00
|
|
|
ucmd.arg(file1).arg(file2).succeeds();
|
2021-03-27 09:08:03 +00:00
|
|
|
|
2020-11-25 12:48:00 +00:00
|
|
|
assert!(at.file_exists(file2));
|
2020-11-26 20:46:03 +00:00
|
|
|
}
|
2021-03-20 12:49:53 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-03-20 18:07:19 +00:00
|
|
|
fn test_install_nested_paths_copy_file() {
|
2021-03-20 12:49:53 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2021-03-20 18:31:52 +00:00
|
|
|
let file1 = "source_file";
|
|
|
|
let dir1 = "source_dir";
|
|
|
|
let dir2 = "target_dir";
|
2021-03-20 12:49:53 +00:00
|
|
|
|
|
|
|
at.mkdir(dir1);
|
|
|
|
at.mkdir(dir2);
|
|
|
|
at.touch(&format!("{}/{}", dir1, file1));
|
|
|
|
|
2021-03-20 13:44:41 +00:00
|
|
|
ucmd.arg(format!("{}/{}", dir1, file1))
|
|
|
|
.arg(dir2)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
2021-03-20 12:49:53 +00:00
|
|
|
assert!(at.file_exists(&format!("{}/{}", dir2, file1)));
|
|
|
|
}
|
2021-03-20 18:07:19 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_failing_omitting_directory() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let file1 = "source_file";
|
2021-03-20 18:31:52 +00:00
|
|
|
let dir1 = "source_dir";
|
2021-03-20 18:07:19 +00:00
|
|
|
let dir2 = "target_dir";
|
|
|
|
|
|
|
|
at.mkdir(dir1);
|
|
|
|
at.mkdir(dir2);
|
|
|
|
at.touch(file1);
|
|
|
|
|
2021-04-17 13:48:23 +00:00
|
|
|
ucmd.arg(dir1)
|
|
|
|
.arg(file1)
|
|
|
|
.arg(dir2)
|
|
|
|
.fails()
|
|
|
|
.code_is(1)
|
|
|
|
.stderr_contains("omitting directory");
|
2021-03-20 18:07:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_failing_no_such_file() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let file1 = "source_file";
|
|
|
|
let file2 = "inexistent_file";
|
|
|
|
let dir1 = "target_dir";
|
|
|
|
|
|
|
|
at.mkdir(dir1);
|
|
|
|
at.touch(file1);
|
|
|
|
|
2021-04-17 13:48:23 +00:00
|
|
|
ucmd.arg(file1)
|
|
|
|
.arg(file2)
|
|
|
|
.arg(dir1)
|
|
|
|
.fails()
|
|
|
|
.code_is(1)
|
|
|
|
.stderr_contains("No such file or directory");
|
2021-03-20 18:07:19 +00:00
|
|
|
}
|
2021-03-27 08:18:47 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_copy_then_compare_file() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
let file1 = "test_install_copy_then_compare_file_a1";
|
|
|
|
let file2 = "test_install_copy_then_compare_file_a2";
|
|
|
|
|
|
|
|
at.touch(file1);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-C")
|
|
|
|
.arg(file1)
|
|
|
|
.arg(file2)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
let mut file2_meta = at.metadata(file2);
|
|
|
|
let before = FileTime::from_last_modification_time(&file2_meta);
|
|
|
|
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-C")
|
|
|
|
.arg(file1)
|
|
|
|
.arg(file2)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
file2_meta = at.metadata(file2);
|
|
|
|
let after = FileTime::from_last_modification_time(&file2_meta);
|
|
|
|
|
|
|
|
assert!(before == after);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
fn test_install_copy_then_compare_file_with_extra_mode() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
// XXX: can't tests introspect on their own names?
|
|
|
|
let file1 = "test_install_copy_then_compare_file_with_extra_mode_a1";
|
|
|
|
let file2 = "test_install_copy_then_compare_file_with_extra_mode_a2";
|
|
|
|
|
|
|
|
at.touch(file1);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-C")
|
|
|
|
.arg(file1)
|
|
|
|
.arg(file2)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
let mut file2_meta = at.metadata(file2);
|
|
|
|
let before = FileTime::from_last_modification_time(&file2_meta);
|
2021-03-28 02:37:58 +00:00
|
|
|
sleep(std::time::Duration::from_millis(1000));
|
2021-03-27 08:18:47 +00:00
|
|
|
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-C")
|
|
|
|
.arg(file1)
|
|
|
|
.arg(file2)
|
|
|
|
.arg("-m")
|
|
|
|
.arg("1644")
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
file2_meta = at.metadata(file2);
|
|
|
|
let after_install_sticky = FileTime::from_last_modification_time(&file2_meta);
|
|
|
|
|
|
|
|
assert!(before != after_install_sticky);
|
|
|
|
|
2021-03-28 02:37:58 +00:00
|
|
|
sleep(std::time::Duration::from_millis(1000));
|
|
|
|
|
2021-03-27 08:18:47 +00:00
|
|
|
// dest file still 1644, so need_copy ought to return `true`
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-C")
|
|
|
|
.arg(file1)
|
|
|
|
.arg(file2)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
file2_meta = at.metadata(file2);
|
|
|
|
let after_install_sticky_again = FileTime::from_last_modification_time(&file2_meta);
|
|
|
|
|
|
|
|
assert!(after_install_sticky != after_install_sticky_again);
|
|
|
|
}
|
2021-04-10 09:53:29 +00:00
|
|
|
|
|
|
|
const STRIP_TARGET_FILE: &str = "helloworld_installed";
|
|
|
|
const SYMBOL_DUMP_PROGRAM: &str = "objdump";
|
|
|
|
const STRIP_SOURCE_FILE_SYMBOL: &str = "main";
|
|
|
|
|
|
|
|
fn strip_source_file() -> &'static str {
|
|
|
|
if cfg!(target_os = "macos") {
|
|
|
|
"helloworld_macos"
|
|
|
|
} else {
|
|
|
|
"helloworld_linux"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_install_and_strip() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-s")
|
|
|
|
.arg(strip_source_file())
|
|
|
|
.arg(STRIP_TARGET_FILE)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
let output = Command::new(SYMBOL_DUMP_PROGRAM)
|
|
|
|
.arg("-t")
|
|
|
|
.arg(at.plus(STRIP_TARGET_FILE))
|
|
|
|
.output()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let stdout = String::from_utf8(output.stdout).unwrap();
|
|
|
|
assert!(!stdout.contains(STRIP_SOURCE_FILE_SYMBOL));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_install_and_strip_with_program() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-s")
|
|
|
|
.arg("--strip-program")
|
|
|
|
.arg("/usr/bin/strip")
|
|
|
|
.arg(strip_source_file())
|
|
|
|
.arg(STRIP_TARGET_FILE)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
let output = Command::new(SYMBOL_DUMP_PROGRAM)
|
|
|
|
.arg("-t")
|
|
|
|
.arg(at.plus(STRIP_TARGET_FILE))
|
|
|
|
.output()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let stdout = String::from_utf8(output.stdout).unwrap();
|
|
|
|
assert!(!stdout.contains(STRIP_SOURCE_FILE_SYMBOL));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_install_and_strip_with_invalid_program() {
|
2021-04-22 20:37:44 +00:00
|
|
|
new_ucmd!()
|
2021-04-10 09:53:29 +00:00
|
|
|
.arg("-s")
|
|
|
|
.arg("--strip-program")
|
|
|
|
.arg("/bin/date")
|
|
|
|
.arg(strip_source_file())
|
|
|
|
.arg(STRIP_TARGET_FILE)
|
|
|
|
.fails()
|
2021-04-22 20:37:44 +00:00
|
|
|
.stderr_contains("strip program failed");
|
2021-04-10 09:53:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_install_and_strip_with_non_existent_program() {
|
2021-04-22 20:37:44 +00:00
|
|
|
new_ucmd!()
|
2021-04-10 09:53:29 +00:00
|
|
|
.arg("-s")
|
|
|
|
.arg("--strip-program")
|
|
|
|
.arg("/usr/bin/non_existent_program")
|
|
|
|
.arg(strip_source_file())
|
|
|
|
.arg(STRIP_TARGET_FILE)
|
|
|
|
.fails()
|
2021-04-22 20:37:44 +00:00
|
|
|
.stderr_contains("No such file or directory");
|
2021-04-10 09:53:29 +00:00
|
|
|
}
|
2021-04-19 20:03:13 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_creating_leading_dirs() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let source = "create_leading_test_file";
|
|
|
|
let target = "dir1/dir2/dir3/test_file";
|
|
|
|
|
|
|
|
at.touch(source);
|
|
|
|
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-D")
|
|
|
|
.arg(source)
|
|
|
|
.arg(at.plus(target))
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn test_install_creating_leading_dir_fails_on_long_name() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let source = "create_leading_test_file";
|
|
|
|
let target = format!("{}/test_file", "d".repeat(libc::PATH_MAX as usize + 1));
|
|
|
|
|
|
|
|
at.touch(source);
|
|
|
|
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-D")
|
|
|
|
.arg(source)
|
|
|
|
.arg(at.plus(target.as_str()))
|
|
|
|
.fails()
|
|
|
|
.stderr_contains("failed to create");
|
|
|
|
}
|
2021-06-18 14:45:36 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_dir() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let dir = "target_dir";
|
|
|
|
let file1 = "source_file1";
|
|
|
|
let file2 = "source_file2";
|
|
|
|
|
|
|
|
at.touch(file1);
|
|
|
|
at.touch(file2);
|
|
|
|
at.mkdir(dir);
|
|
|
|
ucmd.arg(file1)
|
|
|
|
.arg(file2)
|
|
|
|
.arg(&format!("--target-directory={}", dir))
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file1));
|
|
|
|
assert!(at.file_exists(file2));
|
|
|
|
assert!(at.file_exists(&format!("{}/{}", dir, file1)));
|
|
|
|
assert!(at.file_exists(&format!("{}/{}", dir, file2)));
|
|
|
|
}
|
2021-06-23 14:35:33 +00:00
|
|
|
//
|
|
|
|
// test backup functionality
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_short_no_args_files() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_simple_backup_file_a";
|
|
|
|
let file_b = "test_install_simple_backup_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-b")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_short_no_args_file_to_dir() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file = "test_install_simple_backup_file_a";
|
|
|
|
let dest_dir = "test_install_dest/";
|
|
|
|
let expect = format!("{}{}", dest_dir, file);
|
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
at.mkdir(dest_dir);
|
|
|
|
at.touch(&expect);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-b")
|
|
|
|
.arg(file)
|
|
|
|
.arg(dest_dir)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file));
|
|
|
|
assert!(at.file_exists(&expect));
|
|
|
|
assert!(at.file_exists(&format!("{}~", expect)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Long --backup option is tested separately as it requires a slightly different
|
|
|
|
// handling than '-b' does.
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_long_no_args_files() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_simple_backup_file_a";
|
|
|
|
let file_b = "test_install_simple_backup_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_long_no_args_file_to_dir() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file = "test_install_simple_backup_file_a";
|
|
|
|
let dest_dir = "test_install_dest/";
|
|
|
|
let expect = format!("{}{}", dest_dir, file);
|
|
|
|
|
|
|
|
at.touch(file);
|
|
|
|
at.mkdir(dest_dir);
|
|
|
|
at.touch(&expect);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup")
|
|
|
|
.arg(file)
|
|
|
|
.arg(dest_dir)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file));
|
|
|
|
assert!(at.file_exists(&expect));
|
|
|
|
assert!(at.file_exists(&format!("{}~", expect)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_short_custom_suffix() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_custom_suffix_file_a";
|
|
|
|
let file_b = "test_install_backup_custom_suffix_file_b";
|
|
|
|
let suffix = "super-suffix-of-the-century";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-b")
|
|
|
|
.arg(format!("--suffix={}", suffix))
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}{}", file_b, suffix)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_custom_suffix_via_env() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_custom_suffix_file_a";
|
|
|
|
let file_b = "test_install_backup_custom_suffix_file_b";
|
|
|
|
let suffix = "super-suffix-of-the-century";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-b")
|
|
|
|
.env("SIMPLE_BACKUP_SUFFIX", suffix)
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}{}", file_b, suffix)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_numbered_with_t() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=t")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}.~1~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_numbered_with_numbered() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=numbered")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}.~1~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_existing() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=existing")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_nil() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=nil")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_numbered_if_existing_backup_existing() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
let file_b_backup = "test_install_backup_numbering_file_b.~1~";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
at.touch(file_b_backup);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=existing")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(file_b_backup));
|
|
|
|
assert!(at.file_exists(&*format!("{}.~2~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_numbered_if_existing_backup_nil() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
let file_b_backup = "test_install_backup_numbering_file_b.~1~";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
at.touch(file_b_backup);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=nil")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(file_b_backup));
|
|
|
|
assert!(at.file_exists(&*format!("{}.~2~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_simple() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=simple")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_never() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=never")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(at.file_exists(&format!("{}~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_none() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=none")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(!at.file_exists(&format!("{}~", file_b)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_install_backup_off() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
let file_a = "test_install_backup_numbering_file_a";
|
|
|
|
let file_b = "test_install_backup_numbering_file_b";
|
|
|
|
|
|
|
|
at.touch(file_a);
|
|
|
|
at.touch(file_b);
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("--backup=off")
|
|
|
|
.arg(file_a)
|
|
|
|
.arg(file_b)
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr();
|
|
|
|
|
|
|
|
assert!(at.file_exists(file_a));
|
|
|
|
assert!(at.file_exists(file_b));
|
|
|
|
assert!(!at.file_exists(&format!("{}~", file_b)));
|
|
|
|
}
|