mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
99aea0c71c
# Description Makes `mkdir`, `cp`, `mv` and `rm` return nothing and print info to stderr: ![image](https://user-images.githubusercontent.com/17511668/217859228-feffa4bc-c22d-45d3-b330-1903f5a4d938.png) See https://github.com/nushell/nushell/pull/7925#issuecomment-1420861638 and [discord](https://discord.com/channels/601130461678272522/615329862395101194/1072523941865857055). # User-Facing Changes `mkdir`, `cp`, `mv` and `rm` will return nothing and print info to stderr with `--verbose` flag. # Tests + Formatting Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass # After Submitting If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date.
87 lines
2.0 KiB
Rust
87 lines
2.0 KiB
Rust
use nu_test_support::fs::files_exist_at;
|
|
use nu_test_support::playground::Playground;
|
|
use nu_test_support::{nu, pipeline};
|
|
use std::path::Path;
|
|
|
|
#[test]
|
|
fn creates_directory() {
|
|
Playground::setup("mkdir_test_1", |dirs, _| {
|
|
nu!(
|
|
cwd: dirs.test(),
|
|
"mkdir my_new_directory"
|
|
);
|
|
|
|
let expected = dirs.test().join("my_new_directory");
|
|
|
|
assert!(expected.exists());
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn accepts_and_creates_directories() {
|
|
Playground::setup("mkdir_test_2", |dirs, _| {
|
|
nu!(
|
|
cwd: dirs.test(),
|
|
"mkdir dir_1 dir_2 dir_3"
|
|
);
|
|
|
|
assert!(files_exist_at(
|
|
vec![Path::new("dir_1"), Path::new("dir_2"), Path::new("dir_3")],
|
|
dirs.test()
|
|
));
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn creates_intermediary_directories() {
|
|
Playground::setup("mkdir_test_3", |dirs, _| {
|
|
nu!(
|
|
cwd: dirs.test(),
|
|
"mkdir some_folder/another/deeper_one"
|
|
);
|
|
|
|
let expected = dirs.test().join("some_folder/another/deeper_one");
|
|
|
|
assert!(expected.exists());
|
|
})
|
|
}
|
|
|
|
#[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());
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn print_created_paths() {
|
|
Playground::setup("mkdir_test_2", |dirs, _| {
|
|
let actual = nu!(
|
|
cwd: dirs.test(),
|
|
pipeline(
|
|
r#"
|
|
mkdir -v dir_1 dir_2 dir_3
|
|
| length
|
|
"#
|
|
));
|
|
|
|
assert!(files_exist_at(
|
|
vec![Path::new("dir_1"), Path::new("dir_2"), Path::new("dir_3")],
|
|
dirs.test()
|
|
));
|
|
|
|
assert!(actual.err.contains("dir_1"));
|
|
assert!(actual.err.contains("dir_2"));
|
|
assert!(actual.err.contains("dir_3"));
|
|
})
|
|
}
|