mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
tests: Add test for dangling symlinks with ls
Add test similar to gnu dangling symlinks test
This commit is contained in:
parent
f6cb1324b6
commit
d0039df8c3
1 changed files with 25 additions and 0 deletions
|
@ -2021,3 +2021,28 @@ fn test_ls_path() {
|
|||
.run()
|
||||
.stdout_is(expected_stdout);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_ls_dangling_symlinks() {
|
||||
let scene = TestScenario::new(util_name!());
|
||||
let at = &scene.fixtures;
|
||||
|
||||
at.mkdir("temp_dir");
|
||||
at.symlink_file("does_not_exist", "temp_dir/dangle");
|
||||
|
||||
scene.ucmd().arg("-L").arg("temp_dir/dangle").fails();
|
||||
scene.ucmd().arg("-H").arg("temp_dir/dangle").fails();
|
||||
|
||||
scene
|
||||
.ucmd()
|
||||
.arg("temp_dir/dangle")
|
||||
.succeeds()
|
||||
.stdout_contains("dangle");
|
||||
|
||||
scene
|
||||
.ucmd()
|
||||
.arg("-Li")
|
||||
.arg("temp_dir")
|
||||
.succeeds() // this should fail, though at the moment, ls lacks a way to propagate errors encountered during display
|
||||
.stdout_contains("? dangle");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue