2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::fs::{files_exist_at, AbsoluteFile, Stub::EmptyFile};
|
2020-05-07 13:03:43 +02:00
|
|
|
use nu_test_support::nu;
|
2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::playground::Playground;
|
2019-08-29 08:31:56 +02:00
|
|
|
use std::path::Path;
|
2019-08-06 09:05:47 +02:00
|
|
|
|
|
|
|
#[test]
|
2019-08-07 16:45:50 +02:00
|
|
|
fn copies_a_file() {
|
2019-08-28 19:01:16 +02:00
|
|
|
Playground::setup("cp_test_1", |dirs, _| {
|
|
|
|
nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.root(),
|
2020-06-07 05:50:52 +02:00
|
|
|
"cp \"{}\" cp_test_1/sample.ini",
|
2019-08-28 19:01:16 +02:00
|
|
|
dirs.formats().join("sample.ini")
|
|
|
|
);
|
|
|
|
|
2019-08-29 08:31:56 +02:00
|
|
|
assert!(dirs.test().join("sample.ini").exists());
|
2019-08-28 19:01:16 +02:00
|
|
|
});
|
2019-08-06 09:05:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-08-07 16:45:50 +02:00
|
|
|
fn copies_the_file_inside_directory_if_path_to_copy_is_directory() {
|
2019-08-28 19:01:16 +02:00
|
|
|
Playground::setup("cp_test_2", |dirs, _| {
|
|
|
|
let expected_file = AbsoluteFile::new(dirs.test().join("sample.ini"));
|
2019-08-06 09:05:47 +02:00
|
|
|
|
2019-08-28 19:01:16 +02:00
|
|
|
nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.formats(),
|
2019-08-28 19:01:16 +02:00
|
|
|
"cp ../formats/sample.ini {}",
|
|
|
|
expected_file.dir()
|
|
|
|
);
|
2019-08-06 09:05:47 +02:00
|
|
|
|
2019-08-29 08:31:56 +02:00
|
|
|
assert!(dirs.test().join("sample.ini").exists());
|
2019-08-28 19:01:16 +02:00
|
|
|
})
|
2019-08-06 09:05:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-08-07 16:45:50 +02:00
|
|
|
fn error_if_attempting_to_copy_a_directory_to_another_directory() {
|
2019-08-28 19:01:16 +02:00
|
|
|
Playground::setup("cp_test_3", |dirs, _| {
|
2020-05-07 13:03:43 +02:00
|
|
|
let actual = nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.formats(),
|
|
|
|
"cp ../formats {}", dirs.test()
|
|
|
|
);
|
2019-08-06 09:05:47 +02:00
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert!(actual.err.contains("../formats"));
|
|
|
|
assert!(actual.err.contains("resolves to a directory (not copied)"));
|
2019-08-28 19:01:16 +02:00
|
|
|
});
|
2019-08-06 09:05:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-08-07 16:45:50 +02:00
|
|
|
fn copies_the_directory_inside_directory_if_path_to_copy_is_directory_and_with_recursive_flag() {
|
2019-08-29 02:32:42 +02:00
|
|
|
Playground::setup("cp_test_4", |dirs, sandbox| {
|
|
|
|
sandbox
|
2019-08-28 19:01:16 +02:00
|
|
|
.within("originals")
|
|
|
|
.with_files(vec![
|
|
|
|
EmptyFile("yehuda.txt"),
|
|
|
|
EmptyFile("jonathan.txt"),
|
|
|
|
EmptyFile("andres.txt"),
|
|
|
|
])
|
|
|
|
.mkdir("expected");
|
|
|
|
|
|
|
|
let expected_dir = dirs.test().join("expected").join("originals");
|
|
|
|
|
2019-08-29 08:31:56 +02:00
|
|
|
nu!(
|
|
|
|
cwd: dirs.test(),
|
2020-02-12 03:24:31 +01:00
|
|
|
"cp originals expected -r"
|
2019-08-29 08:31:56 +02:00
|
|
|
);
|
2019-08-28 19:01:16 +02:00
|
|
|
|
2019-08-29 08:31:56 +02:00
|
|
|
assert!(expected_dir.exists());
|
2019-08-28 19:01:16 +02:00
|
|
|
assert!(files_exist_at(
|
|
|
|
vec![
|
|
|
|
Path::new("yehuda.txt"),
|
|
|
|
Path::new("jonathan.txt"),
|
|
|
|
Path::new("andres.txt")
|
|
|
|
],
|
2019-08-29 08:31:56 +02:00
|
|
|
expected_dir
|
2019-08-28 19:01:16 +02:00
|
|
|
));
|
|
|
|
})
|
2019-08-07 16:45:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn deep_copies_with_recursive_flag() {
|
2019-08-29 02:32:42 +02:00
|
|
|
Playground::setup("cp_test_5", |dirs, sandbox| {
|
|
|
|
sandbox
|
2019-08-28 19:01:16 +02:00
|
|
|
.within("originals")
|
|
|
|
.with_files(vec![EmptyFile("manifest.txt")])
|
|
|
|
.within("originals/contributors")
|
|
|
|
.with_files(vec![
|
|
|
|
EmptyFile("yehuda.txt"),
|
|
|
|
EmptyFile("jonathan.txt"),
|
|
|
|
EmptyFile("andres.txt"),
|
|
|
|
])
|
|
|
|
.within("originals/contributors/jonathan")
|
|
|
|
.with_files(vec![EmptyFile("errors.txt"), EmptyFile("multishells.txt")])
|
|
|
|
.within("originals/contributors/andres")
|
|
|
|
.with_files(vec![EmptyFile("coverage.txt"), EmptyFile("commands.txt")])
|
|
|
|
.within("originals/contributors/yehuda")
|
|
|
|
.with_files(vec![EmptyFile("defer-evaluation.txt")])
|
|
|
|
.mkdir("expected");
|
|
|
|
|
|
|
|
let expected_dir = dirs.test().join("expected").join("originals");
|
|
|
|
|
|
|
|
let jonathans_expected_copied_dir = expected_dir.join("contributors").join("jonathan");
|
|
|
|
let andres_expected_copied_dir = expected_dir.join("contributors").join("andres");
|
|
|
|
let yehudas_expected_copied_dir = expected_dir.join("contributors").join("yehuda");
|
|
|
|
|
2019-08-29 08:31:56 +02:00
|
|
|
nu!(
|
2019-09-03 02:49:51 +02:00
|
|
|
cwd: dirs.test(),
|
2019-08-29 08:31:56 +02:00
|
|
|
"cp originals expected --recursive"
|
|
|
|
);
|
2019-08-28 19:01:16 +02:00
|
|
|
|
2019-08-29 08:31:56 +02:00
|
|
|
assert!(expected_dir.exists());
|
2019-08-28 19:01:16 +02:00
|
|
|
assert!(files_exist_at(
|
|
|
|
vec![Path::new("errors.txt"), Path::new("multishells.txt")],
|
2019-08-29 08:31:56 +02:00
|
|
|
jonathans_expected_copied_dir
|
2019-08-28 19:01:16 +02:00
|
|
|
));
|
|
|
|
assert!(files_exist_at(
|
|
|
|
vec![Path::new("coverage.txt"), Path::new("commands.txt")],
|
2019-08-29 08:31:56 +02:00
|
|
|
andres_expected_copied_dir
|
2019-08-28 19:01:16 +02:00
|
|
|
));
|
|
|
|
assert!(files_exist_at(
|
|
|
|
vec![Path::new("defer-evaluation.txt")],
|
2019-08-29 08:31:56 +02:00
|
|
|
yehudas_expected_copied_dir
|
2019-08-28 19:01:16 +02:00
|
|
|
));
|
|
|
|
})
|
2019-08-07 16:45:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-08-09 08:52:48 +02:00
|
|
|
fn copies_using_path_with_wildcard() {
|
2019-08-28 19:01:16 +02:00
|
|
|
Playground::setup("cp_test_6", |dirs, _| {
|
2019-08-29 08:31:56 +02:00
|
|
|
nu!(
|
|
|
|
cwd: dirs.formats(),
|
|
|
|
"cp ../formats/* {}", dirs.test()
|
|
|
|
);
|
2019-08-28 19:01:16 +02:00
|
|
|
|
|
|
|
assert!(files_exist_at(
|
|
|
|
vec![
|
|
|
|
Path::new("caco3_plastics.csv"),
|
|
|
|
Path::new("cargo_sample.toml"),
|
|
|
|
Path::new("jonathan.xml"),
|
|
|
|
Path::new("sample.ini"),
|
|
|
|
Path::new("sgml_description.json"),
|
|
|
|
Path::new("utf16.ini"),
|
|
|
|
],
|
|
|
|
dirs.test()
|
|
|
|
));
|
|
|
|
})
|
2019-08-07 16:45:50 +02:00
|
|
|
}
|
2019-08-09 08:52:48 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn copies_using_a_glob() {
|
2019-08-28 19:01:16 +02:00
|
|
|
Playground::setup("cp_test_7", |dirs, _| {
|
2019-08-29 08:31:56 +02:00
|
|
|
nu!(
|
|
|
|
cwd: dirs.formats(),
|
|
|
|
"cp * {}", dirs.test()
|
|
|
|
);
|
2019-08-28 19:01:16 +02:00
|
|
|
|
|
|
|
assert!(files_exist_at(
|
|
|
|
vec![
|
|
|
|
Path::new("caco3_plastics.csv"),
|
|
|
|
Path::new("cargo_sample.toml"),
|
|
|
|
Path::new("jonathan.xml"),
|
|
|
|
Path::new("sample.ini"),
|
|
|
|
Path::new("sgml_description.json"),
|
|
|
|
Path::new("utf16.ini"),
|
|
|
|
],
|
|
|
|
dirs.test()
|
|
|
|
));
|
|
|
|
});
|
2019-08-09 08:52:48 +02:00
|
|
|
}
|
2020-02-05 07:54:05 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn copies_same_file_twice() {
|
|
|
|
Playground::setup("cp_test_8", |dirs, _| {
|
|
|
|
nu!(
|
|
|
|
cwd: dirs.root(),
|
|
|
|
"cp \"{}\" cp_test_8/sample.ini",
|
|
|
|
dirs.formats().join("sample.ini")
|
|
|
|
);
|
|
|
|
|
|
|
|
nu!(
|
|
|
|
cwd: dirs.root(),
|
|
|
|
"cp \"{}\" cp_test_8/sample.ini",
|
|
|
|
dirs.formats().join("sample.ini")
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(dirs.test().join("sample.ini").exists());
|
|
|
|
});
|
|
|
|
}
|
2020-04-06 13:28:56 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn copy_files_using_glob_two_parents_up_using_multiple_dots() {
|
|
|
|
Playground::setup("cp_test_9", |dirs, sandbox| {
|
Move external closer to internal (#1611)
* Refactor InputStream and affected commands.
First, making `values` private and leaning on the `Stream` implementation makes
consumes of `InputStream` less likely to have to change in the future, if we
change what an `InputStream` is internally.
Second, we're dropping `Option<InputStream>` as the input to pipelines,
internals, and externals. Instead, `InputStream.is_empty` can be used to check
for "emptiness". Empty streams are typically only ever used as the first input
to a pipeline.
* Add run_external internal command.
We want to push external commands closer to internal commands, eventually
eliminating the concept of "external" completely. This means we can consolidate
a couple of things:
- Variable evaluation (for example, `$it`, `$nu`, alias vars)
- Behaviour of whole stream vs per-item external execution
It should also make it easier for us to start introducing argument signatures
for external commands,
* Update run_external.rs
* Update run_external.rs
* Update run_external.rs
* Update run_external.rs
Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
2020-04-20 05:30:44 +02:00
|
|
|
sandbox.within("foo").within("bar").with_files(vec![
|
2020-04-06 13:28:56 +02:00
|
|
|
EmptyFile("jonathan.json"),
|
|
|
|
EmptyFile("andres.xml"),
|
|
|
|
EmptyFile("yehuda.yaml"),
|
|
|
|
EmptyFile("kevin.txt"),
|
|
|
|
EmptyFile("many_more.ppl"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
nu!(
|
|
|
|
cwd: dirs.test().join("foo/bar"),
|
|
|
|
r#"
|
|
|
|
cp * ...
|
|
|
|
"#
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(files_exist_at(
|
|
|
|
vec![
|
|
|
|
"yehuda.yaml",
|
|
|
|
"jonathan.json",
|
|
|
|
"andres.xml",
|
|
|
|
"kevin.txt",
|
2020-04-19 01:05:24 +02:00
|
|
|
"many_more.ppl",
|
2020-04-06 13:28:56 +02:00
|
|
|
],
|
|
|
|
dirs.test()
|
|
|
|
));
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-04-19 01:05:24 +02:00
|
|
|
fn copy_file_and_dir_from_two_parents_up_using_multiple_dots_to_current_dir_recursive() {
|
2020-04-06 13:28:56 +02:00
|
|
|
Playground::setup("cp_test_10", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![EmptyFile("hello_there")]);
|
2020-04-19 01:05:24 +02:00
|
|
|
sandbox.mkdir("hello_again");
|
2020-04-06 13:28:56 +02:00
|
|
|
sandbox.within("foo").mkdir("bar");
|
|
|
|
|
|
|
|
nu!(
|
|
|
|
cwd: dirs.test().join("foo/bar"),
|
|
|
|
r#"
|
2020-04-19 01:05:24 +02:00
|
|
|
cp -r .../hello* .
|
2020-04-06 13:28:56 +02:00
|
|
|
"#
|
|
|
|
);
|
|
|
|
|
2020-04-19 01:05:24 +02:00
|
|
|
let expected = dirs.test().join("foo/bar");
|
2020-04-06 13:28:56 +02:00
|
|
|
|
2020-04-19 01:05:24 +02:00
|
|
|
assert!(files_exist_at(vec!["hello_there", "hello_again"], expected));
|
2020-04-06 13:28:56 +02:00
|
|
|
})
|
|
|
|
}
|