2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::fs::files_exist_at;
|
|
|
|
use nu_test_support::playground::Playground;
|
2020-06-06 21:13:38 +02:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-08-29 08:31:56 +02:00
|
|
|
use std::path::Path;
|
2019-08-07 04:45:38 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn creates_directory() {
|
2019-08-28 19:01:16 +02:00
|
|
|
Playground::setup("mkdir_test_1", |dirs, _| {
|
2019-08-29 08:31:56 +02:00
|
|
|
nu!(
|
|
|
|
cwd: dirs.test(),
|
|
|
|
"mkdir my_new_directory"
|
|
|
|
);
|
2019-08-07 04:45:38 +02:00
|
|
|
|
2019-08-28 19:01:16 +02:00
|
|
|
let expected = dirs.test().join("my_new_directory");
|
2019-08-07 04:45:38 +02:00
|
|
|
|
2019-08-29 08:31:56 +02:00
|
|
|
assert!(expected.exists());
|
2019-08-28 19:01:16 +02:00
|
|
|
})
|
2019-08-07 04:45:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-08-21 14:07:37 +02:00
|
|
|
fn accepts_and_creates_directories() {
|
2019-08-28 19:01:16 +02:00
|
|
|
Playground::setup("mkdir_test_2", |dirs, _| {
|
2019-08-29 08:31:56 +02:00
|
|
|
nu!(
|
|
|
|
cwd: dirs.test(),
|
|
|
|
"mkdir dir_1 dir_2 dir_3"
|
|
|
|
);
|
2019-08-28 19:01:16 +02:00
|
|
|
|
2019-12-15 17:15:06 +01:00
|
|
|
assert!(files_exist_at(
|
2019-08-28 19:01:16 +02:00
|
|
|
vec![Path::new("dir_1"), Path::new("dir_2"), Path::new("dir_3")],
|
|
|
|
dirs.test()
|
|
|
|
));
|
|
|
|
})
|
2019-08-21 14:07:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn creates_intermediary_directories() {
|
2019-08-28 19:01:16 +02:00
|
|
|
Playground::setup("mkdir_test_3", |dirs, _| {
|
2019-08-29 08:31:56 +02:00
|
|
|
nu!(
|
|
|
|
cwd: dirs.test(),
|
|
|
|
"mkdir some_folder/another/deeper_one"
|
|
|
|
);
|
2019-08-07 04:45:38 +02:00
|
|
|
|
2019-08-29 08:31:56 +02:00
|
|
|
let expected = dirs.test().join("some_folder/another/deeper_one");
|
2019-08-07 04:45:38 +02:00
|
|
|
|
2019-08-29 08:31:56 +02:00
|
|
|
assert!(expected.exists());
|
2019-08-28 19:01:16 +02:00
|
|
|
})
|
2019-08-07 04:45:38 +02:00
|
|
|
}
|
2020-04-06 13:28:56 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create_directory_two_parents_up_using_multiple_dots() {
|
|
|
|
Playground::setup("mkdir_test_4", |dirs, sandbox| {
|
|
|
|
sandbox.within("foo").mkdir("bar");
|
|
|
|
|
|
|
|
nu!(
|
|
|
|
cwd: dirs.test().join("foo/bar"),
|
|
|
|
"mkdir .../boo"
|
|
|
|
);
|
|
|
|
|
|
|
|
let expected = dirs.test().join("boo");
|
|
|
|
|
|
|
|
assert!(expected.exists());
|
|
|
|
})
|
|
|
|
}
|
2020-06-06 21:13:38 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn show_created_paths() {
|
|
|
|
Playground::setup("mkdir_test_2", |dirs, _| {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(),
|
|
|
|
pipeline(
|
|
|
|
r#"
|
|
|
|
mkdir -s dir_1 dir_2 dir_3
|
2021-03-13 22:46:40 +01:00
|
|
|
| length
|
2020-06-06 21:13:38 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(files_exist_at(
|
|
|
|
vec![Path::new("dir_1"), Path::new("dir_2"), Path::new("dir_3")],
|
|
|
|
dirs.test()
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "3");
|
|
|
|
})
|
|
|
|
}
|