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

mv: gnu test case to-symlink fix

This commit is contained in:
mhead 2024-07-17 21:39:36 +05:30 committed by Ben Wiederhake
parent 9ab7fa9806
commit ff12e6ee87
2 changed files with 37 additions and 0 deletions

View file

@ -661,6 +661,9 @@ fn rename_with_fallback(
};
}
} else {
if to.is_symlink() {
fs::remove_file(to)?;
}
#[cfg(all(unix, not(any(target_os = "macos", target_os = "redox"))))]
fs::copy(from, to)
.and_then(|_| fsxattr::copy_xattrs(&from, &to))

View file

@ -1622,3 +1622,37 @@ fn test_acl() {
// $ mv -v a b
// mv: try to overwrite 'b', overriding mode 0444 (r--r--r--)? y
// 'a' -> 'b'
// Ensure that the copying code used in an inter-partition move unlinks the destination symlink.
#[cfg(target_os = "linux")]
#[test]
fn test_mv_unlinks_dest_symlink() {
let scene = TestScenario::new(util_name!());
let at = &scene.fixtures;
// create a file in the current partition.
at.write("src", "src contents");
// create a folder in another partition.
let other_fs_tempdir = tempfile::TempDir::new_in("/dev/shm/").unwrap();
// create a file inside that folder.
let file_path = other_fs_tempdir.path().join("other_fs_file.txt");
let mut file = std::fs::File::create(&file_path).expect("Unable to create file");
std::io::Write::write_all(&mut file, b"other fs file contents")
.expect("Unable to write to file");
// create a symlink to the file inside the same directory.
let symlink_path = other_fs_tempdir.path().join("symlink_to_file.txt");
std::os::unix::fs::symlink(&file_path, &symlink_path).unwrap();
// mv src to symlink in another partition
scene
.ucmd()
.arg("src")
.arg(symlink_path.to_str().unwrap())
.succeeds();
// make sure that src got removed.
assert!(!at.file_exists("src"));
// make sure symlink got unlinked
assert!(!symlink_path.is_symlink());
}