2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
2021-08-29 14:08:45 +00:00
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
static GIBBERISH: &str = "supercalifragilisticexpialidocious";
|
|
|
|
|
2015-11-16 05:25:01 +00:00
|
|
|
#[test]
|
2021-04-05 21:55:02 +00:00
|
|
|
fn test_realpath_current_directory() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2020-01-02 04:39:32 +00:00
|
|
|
let expect = at.root_dir_resolved() + "\n";
|
2021-04-05 21:55:02 +00:00
|
|
|
ucmd.arg(".").succeeds().stdout_is(expect);
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-04-05 21:55:02 +00:00
|
|
|
fn test_realpath_long_redirection_to_current_dir() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
2015-11-16 05:25:01 +00:00
|
|
|
// Create a 256-character path to current directory
|
2016-03-29 01:06:31 +00:00
|
|
|
let dir = path_concat!(".", ..128);
|
2020-01-02 04:39:32 +00:00
|
|
|
let expect = at.root_dir_resolved() + "\n";
|
2021-04-05 21:55:02 +00:00
|
|
|
ucmd.arg(dir).succeeds().stdout_is(expect);
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-04-05 21:55:02 +00:00
|
|
|
fn test_realpath_long_redirection_to_root() {
|
2015-11-16 05:25:01 +00:00
|
|
|
// Create a 255-character path to root
|
2016-03-29 01:06:31 +00:00
|
|
|
let dir = path_concat!("..", ..85);
|
2020-01-02 04:39:32 +00:00
|
|
|
let expect = get_root_path().to_owned() + "\n";
|
2021-04-05 21:55:02 +00:00
|
|
|
new_ucmd!().arg(dir).succeeds().stdout_is(expect);
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
2021-01-19 11:38:36 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-04-05 21:55:02 +00:00
|
|
|
fn test_realpath_file_and_links() {
|
2021-01-19 11:38:36 +00:00
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
at.touch("foo");
|
|
|
|
at.symlink_file("foo", "bar");
|
|
|
|
|
2021-04-05 21:55:02 +00:00
|
|
|
scene.ucmd().arg("foo").succeeds().stdout_contains("foo\n");
|
|
|
|
scene.ucmd().arg("bar").succeeds().stdout_contains("foo\n");
|
2021-01-19 11:38:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-04-05 21:55:02 +00:00
|
|
|
fn test_realpath_file_and_links_zero() {
|
2021-01-19 11:38:36 +00:00
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
at.touch("foo");
|
|
|
|
at.symlink_file("foo", "bar");
|
|
|
|
|
2021-04-05 21:55:02 +00:00
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("foo")
|
|
|
|
.arg("-z")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("foo\u{0}");
|
|
|
|
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("bar")
|
|
|
|
.arg("-z")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("foo\u{0}");
|
2021-01-19 11:38:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-04-05 21:55:02 +00:00
|
|
|
fn test_realpath_file_and_links_strip() {
|
2021-01-19 11:38:36 +00:00
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
at.touch("foo");
|
|
|
|
at.symlink_file("foo", "bar");
|
|
|
|
|
2021-04-05 21:55:02 +00:00
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("foo")
|
|
|
|
.arg("-s")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("foo\n");
|
|
|
|
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("bar")
|
|
|
|
.arg("-s")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("bar\n");
|
2021-01-19 11:38:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-04-05 21:55:02 +00:00
|
|
|
fn test_realpath_file_and_links_strip_zero() {
|
2021-01-19 11:38:36 +00:00
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
at.touch("foo");
|
|
|
|
at.symlink_file("foo", "bar");
|
|
|
|
|
2021-04-05 21:55:02 +00:00
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("foo")
|
|
|
|
.arg("-s")
|
|
|
|
.arg("-z")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("foo\u{0}");
|
|
|
|
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("bar")
|
|
|
|
.arg("-s")
|
|
|
|
.arg("-z")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("bar\u{0}");
|
2021-01-19 11:38:36 +00:00
|
|
|
}
|
2021-06-27 10:47:23 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_realpath_physical_mode() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
at.mkdir("dir1");
|
|
|
|
at.mkdir_all("dir2/bar");
|
|
|
|
at.symlink_dir("dir2/bar", "dir1/foo");
|
|
|
|
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("dir1/foo/..")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("dir2\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_realpath_logical_mode() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
let at = &scene.fixtures;
|
|
|
|
|
|
|
|
at.mkdir("dir1");
|
|
|
|
at.mkdir("dir2");
|
|
|
|
at.symlink_dir("dir2", "dir1/foo");
|
|
|
|
|
|
|
|
scene
|
|
|
|
.ucmd()
|
|
|
|
.arg("-L")
|
|
|
|
.arg("dir1/foo/..")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("dir1\n");
|
|
|
|
}
|
2021-08-24 17:11:47 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_realpath_dangling() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
at.symlink_file("nonexistent-file", "link");
|
|
|
|
ucmd.arg("link")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only(at.plus_as_string("nonexistent-file\n"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_realpath_loop() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
at.symlink_file("2", "1");
|
|
|
|
at.symlink_file("3", "2");
|
|
|
|
at.symlink_file("1", "3");
|
|
|
|
ucmd.arg("1")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only(at.plus_as_string("2\n"));
|
|
|
|
}
|
2021-08-29 14:08:45 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_realpath_default_allows_final_non_existent() {
|
|
|
|
let p = Path::new("").join(GIBBERISH);
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let expect = path_concat!(at.root_dir_resolved(), p.to_str().unwrap()) + "\n";
|
|
|
|
ucmd.arg(p.as_os_str()).succeeds().stdout_only(expect);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_realpath_default_forbids_non_final_non_existent() {
|
|
|
|
let p = Path::new("").join(GIBBERISH).join(GIBBERISH);
|
|
|
|
new_ucmd!().arg(p.to_str().unwrap()).fails();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_realpath_existing() {
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
ucmd.arg("-e")
|
|
|
|
.arg(".")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only(at.plus_as_string(&format!("{}\n", at.root_dir_resolved())));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_realpath_existing_error() {
|
|
|
|
new_ucmd!().arg("-e").arg(GIBBERISH).fails();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_realpath_missing() {
|
|
|
|
let p = Path::new("").join(GIBBERISH).join(GIBBERISH);
|
|
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
let expect = path_concat!(at.root_dir_resolved(), p.to_str().unwrap()) + "\n";
|
|
|
|
ucmd.arg("-m")
|
|
|
|
.arg(p.as_os_str())
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only(expect);
|
|
|
|
}
|