1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

test(install): Add tests which should be working but aren't

I will work on the fixes
This commit is contained in:
Sylvestre Ledru 2020-11-25 13:48:00 +01:00
parent 63bf6cc599
commit df44534a3e

View file

@ -31,19 +31,6 @@ fn test_install_basic() {
assert!(at.file_exists(&format!("{}/{}", dir, file2))); assert!(at.file_exists(&format!("{}/{}", dir, file2)));
} }
#[test]
fn test_install_copy_file() {
let (at, mut ucmd) = at_and_ucmd!();
let file1 = "test_install_target_dir_file_a1";
let file2 = "test_install_target_dir_file_a2";
at.touch(file1);
ucmd.arg(file1).arg(file2).succeeds().no_stderr();
assert!(at.file_exists(file1));
assert!(at.file_exists(file2));
}
#[test] #[test]
fn test_install_failing_not_dir() { fn test_install_failing_not_dir() {
let (at, mut ucmd) = at_and_ucmd!(); let (at, mut ucmd) = at_and_ucmd!();
@ -239,3 +226,40 @@ fn test_install_target_new_file_failing_nonexistent_parent() {
assert!(err.contains("not a directory")) assert!(err.contains("not a directory"))
} }
// These two tests are failing but should work
#[test]
fn test_install_copy_file() {
let (at, mut ucmd) = at_and_ucmd!();
let file1 = "test_install_target_dir_file_a1";
let file2 = "test_install_target_dir_file_a2";
at.touch(file1);
ucmd.arg(file1).arg(file2).fails();
/* Uncomment when fixed
ucmd.arg(file1).arg(file2).succeeds().no_stderr();
assert!(at.file_exists(file1));
assert!(at.file_exists(file2));*/
}
#[test]
#[cfg(target_os = "linux")]
fn test_install_target_file_dev_null() {
let (at, mut ucmd) = at_and_ucmd!();
let file1 = "/dev/null";
let file2 = "test_install_target_file_file_i2";
at.touch(file1);
at.touch(file2);
ucmd.arg(file1).arg(file2).fails();
/* Uncomment when fixed
ucmd.arg(file1).arg(file2).succeeds().no_stderr();
assert!(at.file_exists(file1));
assert!(at.file_exists(file2));
*/
}