nushell/crates/nu-command/tests/commands/cd.rs

278 lines
6.3 KiB
Rust
Raw Normal View History

use nu_test_support::fs::Stub::EmptyFile;
use nu_test_support::nu;
2019-12-17 19:54:39 +01:00
use nu_test_support::playground::Playground;
2019-09-08 10:09:05 +02:00
use std::path::PathBuf;
// FIXME: jt: needs more work
#[ignore]
2019-08-06 09:05:47 +02:00
#[test]
fn filesystem_change_from_current_directory_using_relative_path() {
2019-09-08 10:09:05 +02:00
Playground::setup("cd_test_1", |dirs, _| {
let actual = nu!(
cwd: dirs.root(),
r#"
cd cd_test_1
echo (pwd)
2019-09-08 10:09:05 +02:00
"#
);
2019-08-06 09:05:47 +02:00
assert_eq!(PathBuf::from(actual.out), *dirs.test());
2019-09-08 10:09:05 +02:00
})
}
// FIXME: jt: needs more work
#[ignore]
2019-09-08 10:09:05 +02:00
#[test]
fn filesystem_change_from_current_directory_using_absolute_path() {
Playground::setup("cd_test_2", |dirs, _| {
let actual = nu!(
cwd: dirs.test(),
r#"
cd "{}"
echo (pwd)
2019-09-08 10:09:05 +02:00
"#,
dirs.formats()
);
assert_eq!(PathBuf::from(actual.out), dirs.formats());
2019-09-11 16:36:50 +02:00
})
}
// FIXME: jt: needs more work
#[ignore]
#[test]
2019-09-08 10:09:05 +02:00
fn filesystem_switch_back_to_previous_working_directory() {
Playground::setup("cd_test_3", |dirs, sandbox| {
sandbox.mkdir("odin");
let actual = nu!(
cwd: dirs.test().join("odin"),
r#"
cd {}
cd -
echo (pwd)
2019-09-08 10:09:05 +02:00
"#,
dirs.test()
);
assert_eq!(PathBuf::from(actual.out), dirs.test().join("odin"));
2019-09-08 10:09:05 +02:00
})
}
// FIXME: jt: needs more work
#[ignore]
2019-09-08 11:55:49 +02:00
#[test]
fn filesytem_change_from_current_directory_using_relative_path_and_dash() {
Playground::setup("cd_test_4", |dirs, sandbox| {
sandbox.within("odin").mkdir("-");
2019-09-08 11:55:49 +02:00
let actual = nu!(
cwd: dirs.test(),
r#"
cd odin/-
echo (pwd)
2019-09-08 11:55:49 +02:00
"#
);
assert_eq!(
PathBuf::from(actual.out),
dirs.test().join("odin").join("-")
);
2019-09-08 11:55:49 +02:00
})
}
// FIXME: jt: needs more work
#[ignore]
2019-09-08 10:09:05 +02:00
#[test]
fn filesystem_change_current_directory_to_parent_directory() {
2019-09-08 11:55:49 +02:00
Playground::setup("cd_test_5", |dirs, _| {
2019-09-08 10:09:05 +02:00
let actual = nu!(
cwd: dirs.test(),
r#"
2019-09-08 10:09:05 +02:00
cd ..
echo (pwd)
"#
);
assert_eq!(PathBuf::from(actual.out), *dirs.root());
})
}
2019-09-08 10:09:05 +02:00
// FIXME: jt: needs more work
#[ignore]
#[test]
fn filesystem_change_current_directory_to_two_parents_up_using_multiple_dots() {
Playground::setup("cd_test_6", |dirs, sandbox| {
sandbox.within("foo").mkdir("bar");
let actual = nu!(
cwd: dirs.test().join("foo/bar"),
r#"
cd ...
echo (pwd)
"#
);
assert_eq!(PathBuf::from(actual.out), *dirs.test());
})
}
// FIXME: jt: needs more work
#[ignore]
#[test]
fn filesystem_change_current_directory_to_parent_directory_after_delete_cwd() {
Playground::setup("cd_test_7", |dirs, sandbox| {
sandbox.within("foo").mkdir("bar");
let actual = nu!(
cwd: dirs.test().join("foo/bar"),
r#"
rm {}/foo/bar
echo ","
cd ..
echo (pwd)
"#,
dirs.test()
);
let actual = actual.out.split(',').nth(1).unwrap();
assert_eq!(PathBuf::from(actual), *dirs.test().join("foo"));
})
}
// FIXME: jt: needs more work
#[ignore]
2019-09-08 10:09:05 +02:00
#[test]
fn filesystem_change_to_home_directory() {
Playground::setup("cd_test_8", |dirs, _| {
2019-09-08 10:09:05 +02:00
let actual = nu!(
cwd: dirs.test(),
r#"
cd ~
echo (pwd)
2019-09-08 10:09:05 +02:00
"#
);
assert_eq!(Some(PathBuf::from(actual.out)), dirs_next::home_dir());
2019-09-08 10:09:05 +02:00
})
}
// FIXME: jt: needs more work
#[ignore]
2019-09-08 10:09:05 +02:00
#[test]
fn filesystem_change_to_a_directory_containing_spaces() {
Playground::setup("cd_test_9", |dirs, sandbox| {
2019-09-08 10:09:05 +02:00
sandbox.mkdir("robalino turner katz");
let actual = nu!(
cwd: dirs.test(),
r#"
cd "robalino turner katz"
echo (pwd)
2019-09-08 10:09:05 +02:00
"#
);
2019-09-11 16:36:50 +02:00
assert_eq!(
PathBuf::from(actual.out),
2019-09-11 16:36:50 +02:00
dirs.test().join("robalino turner katz")
);
2019-09-08 10:09:05 +02:00
})
}
// FIXME: jt: needs more work
#[ignore]
#[test]
fn filesystem_not_a_directory() {
Playground::setup("cd_test_10", |dirs, sandbox| {
sandbox.with_files(vec![EmptyFile("ferris_did_it.txt")]);
let actual = nu!(
cwd: dirs.test(),
"cd ferris_did_it.txt"
);
assert!(
actual.err.contains("ferris_did_it.txt"),
"actual={:?}",
actual.err
);
assert!(
actual.err.contains("is not a directory"),
"actual={:?}",
actual.err
);
})
}
// FIXME: jt: needs more work
#[ignore]
2019-09-08 10:09:05 +02:00
#[test]
fn filesystem_directory_not_found() {
Playground::setup("cd_test_11", |dirs, _| {
let actual = nu!(
cwd: dirs.test(),
"cd dir_that_does_not_exist"
);
assert!(
actual.err.contains("dir_that_does_not_exist"),
"actual={:?}",
actual.err
);
assert!(
actual.err.contains("directory not found"),
"actual={:?}",
actual.err
);
})
}
// FIXME: jt: needs more work
#[ignore]
#[test]
fn filesystem_change_directory_to_symlink_relative() {
Playground::setup("cd_test_12", |dirs, sandbox| {
sandbox.mkdir("foo");
sandbox.mkdir("boo");
sandbox.symlink("foo", "foo_link");
let actual = nu!(
cwd: dirs.test().join("boo"),
r#"
cd ../foo_link
echo (pwd)
"#
);
assert_eq!(PathBuf::from(actual.out), dirs.test().join("foo"));
})
}
// FIXME: jt: needs more work
#[ignore]
#[cfg(target_os = "windows")]
#[test]
fn test_change_windows_drive() {
Playground::setup("cd_test_20", |dirs, sandbox| {
sandbox.mkdir("test_folder");
let _actual = nu!(
cwd: dirs.test(),
r#"
subst Z: test_folder
Z:
echo "some text" | save test_file.txt
cd ~
subst Z: /d
"#
);
assert!(dirs
.test()
.join("test_folder")
.join("test_file.txt")
.exists());
})
}