2020-05-07 13:03:43 +02:00
|
|
|
use nu_test_support::nu;
|
2023-04-08 20:52:37 +02:00
|
|
|
use pretty_assertions::assert_eq;
|
2020-01-16 10:05:53 +01:00
|
|
|
|
2022-03-29 13:10:43 +02:00
|
|
|
#[cfg(feature = "which-support")]
|
2020-01-16 10:05:53 +01:00
|
|
|
#[test]
|
|
|
|
fn shows_error_for_command_not_found() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("ferris_is_not_here.exe");
|
2020-01-16 10:05:53 +01:00
|
|
|
|
2022-02-02 21:59:01 +01:00
|
|
|
assert!(!actual.err.is_empty());
|
2020-01-16 10:05:53 +01:00
|
|
|
}
|
|
|
|
|
2022-03-29 13:10:43 +02:00
|
|
|
#[cfg(feature = "which-support")]
|
2020-06-29 19:39:11 +02:00
|
|
|
#[test]
|
|
|
|
fn shows_error_for_command_not_found_in_pipeline() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("ferris_is_not_here.exe | echo done");
|
2020-06-29 19:39:11 +02:00
|
|
|
|
2022-02-02 21:59:01 +01:00
|
|
|
assert!(!actual.err.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[ignore] // jt: we can't test this using the -c workaround currently
|
2022-03-29 13:10:43 +02:00
|
|
|
#[cfg(feature = "which-support")]
|
2020-03-17 19:13:38 +01:00
|
|
|
#[test]
|
|
|
|
fn automatically_change_directory() {
|
|
|
|
use nu_test_support::playground::Playground;
|
|
|
|
|
|
|
|
Playground::setup("cd_test_5_1", |dirs, sandbox| {
|
2020-04-27 03:22:01 +02:00
|
|
|
sandbox.mkdir("autodir");
|
2020-03-17 19:13:38 +01:00
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(),
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-03-17 19:13:38 +01:00
|
|
|
autodir
|
2021-05-12 03:01:48 +02:00
|
|
|
echo (pwd)
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-03-17 19:13:38 +01:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert!(actual.out.ends_with("autodir"));
|
2020-03-17 19:13:38 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-02-02 21:59:01 +01:00
|
|
|
// FIXME: jt: we don't currently support autocd in testing
|
|
|
|
#[ignore]
|
2020-04-27 03:22:01 +02:00
|
|
|
#[test]
|
|
|
|
fn automatically_change_directory_with_trailing_slash_and_same_name_as_command() {
|
|
|
|
use nu_test_support::playground::Playground;
|
|
|
|
|
|
|
|
Playground::setup("cd_test_5_1", |dirs, sandbox| {
|
|
|
|
sandbox.mkdir("cd");
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(),
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-04-27 03:22:01 +02:00
|
|
|
cd/
|
2020-10-26 07:55:52 +01:00
|
|
|
pwd
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-04-27 03:22:01 +02:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert!(actual.out.ends_with("cd"));
|
2020-04-27 03:22:01 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-04-30 06:54:07 +02:00
|
|
|
#[test]
|
|
|
|
fn correctly_escape_external_arguments() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("^nu --testbin cococo '$0'");
|
2020-04-30 06:54:07 +02:00
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "$0");
|
2020-04-30 06:54:07 +02:00
|
|
|
}
|
|
|
|
|
2023-03-16 19:05:08 +01:00
|
|
|
#[test]
|
|
|
|
fn escape_also_escapes_equals() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("^MYFOONAME=MYBARVALUE");
|
2023-03-16 19:05:08 +01:00
|
|
|
|
|
|
|
assert!(actual.err.contains("executable was not found"));
|
|
|
|
}
|
|
|
|
|
2021-06-14 02:20:07 +02:00
|
|
|
#[test]
|
|
|
|
fn execute_binary_in_string() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
2022-04-11 20:18:46 +02:00
|
|
|
let cmd = "nu"
|
|
|
|
^$"($cmd)" --testbin cococo "$0"
|
2021-06-14 02:20:07 +02:00
|
|
|
"#);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "$0");
|
|
|
|
}
|
|
|
|
|
2022-03-18 07:59:28 +01:00
|
|
|
#[test]
|
|
|
|
fn single_quote_dollar_external() {
|
2024-01-05 04:40:56 +01:00
|
|
|
let actual = nu!("let author = 'JT'; nu --testbin cococo $'foo=($author)'");
|
2022-03-18 07:59:28 +01:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "foo=JT");
|
|
|
|
}
|
|
|
|
|
2022-02-02 21:59:01 +01:00
|
|
|
#[test]
|
|
|
|
fn redirects_custom_command_external() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("def foo [] { nu --testbin cococo foo bar }; foo | str length");
|
2021-04-21 22:54:34 +02:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "8");
|
|
|
|
}
|
|
|
|
|
2022-03-27 04:35:59 +02:00
|
|
|
#[test]
|
|
|
|
fn passes_binary_data_between_externals() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(cwd: "tests/fixtures/formats", "nu --testbin meowb sample.db | nu --testbin relay | hash sha256");
|
2022-03-27 04:35:59 +02:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
actual.out,
|
|
|
|
"2f5050e7eea415c1f3d80b5d93355efd15043ec9157a2bb167a9e73f2ae651f2"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-08-07 20:40:41 +02:00
|
|
|
#[test]
|
|
|
|
fn command_not_found_error_suggests_search_term() {
|
|
|
|
// 'distinct' is not a command, but it is a search term for 'uniq'
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("ls | distinct");
|
2022-08-07 20:40:41 +02:00
|
|
|
assert!(actual.err.contains("uniq"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn command_not_found_error_suggests_typo_fix() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("benchmark { echo 'foo'}");
|
2023-02-11 19:57:48 +01:00
|
|
|
assert!(actual.err.contains("timeit"));
|
2022-08-07 20:40:41 +02:00
|
|
|
}
|
|
|
|
|
2023-04-13 19:33:05 +02:00
|
|
|
#[test]
|
2023-08-18 19:45:33 +02:00
|
|
|
fn command_not_found_error_shows_not_found_1() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
2023-04-13 19:33:05 +02:00
|
|
|
export extern "foo" [];
|
|
|
|
foo
|
2023-07-12 19:07:20 +02:00
|
|
|
"#);
|
2023-04-13 19:33:05 +02:00
|
|
|
assert!(actual.err.contains("'foo' was not found"));
|
|
|
|
}
|
|
|
|
|
Make external command substitution works friendly(like fish shell, trailing ending newlines) (#7156)
# Description
As title, when execute external sub command, auto-trimming end
new-lines, like how fish shell does.
And if the command is executed directly like: `cat tmp`, the result
won't change.
Fixes: #6816
Fixes: #3980
Note that although nushell works correctly by directly replace output of
external command to variable(or other places like string interpolation),
it's not friendly to user, and users almost want to use `str trim` to
trim trailing newline, I think that's why fish shell do this
automatically.
If the pr is ok, as a result, no more `str trim -r` is required when
user is writing scripts which using external commands.
# User-Facing Changes
Before:
<img width="523" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468810-86b04dbb-c147-459a-96a5-e0095eeaab3d.png">
After:
<img width="505" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468599-7b537488-3d6b-458e-9d75-d85780826db0.png">
# 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 --features=extra -- -D warnings -D
clippy::unwrap_used -A clippy::needless_collect` to check that you're
using the standard code style
- `cargo test --workspace --features=extra` 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.
2022-11-23 04:51:57 +01:00
|
|
|
#[test]
|
|
|
|
fn command_substitution_wont_output_extra_newline() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
Make external command substitution works friendly(like fish shell, trailing ending newlines) (#7156)
# Description
As title, when execute external sub command, auto-trimming end
new-lines, like how fish shell does.
And if the command is executed directly like: `cat tmp`, the result
won't change.
Fixes: #6816
Fixes: #3980
Note that although nushell works correctly by directly replace output of
external command to variable(or other places like string interpolation),
it's not friendly to user, and users almost want to use `str trim` to
trim trailing newline, I think that's why fish shell do this
automatically.
If the pr is ok, as a result, no more `str trim -r` is required when
user is writing scripts which using external commands.
# User-Facing Changes
Before:
<img width="523" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468810-86b04dbb-c147-459a-96a5-e0095eeaab3d.png">
After:
<img width="505" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468599-7b537488-3d6b-458e-9d75-d85780826db0.png">
# 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 --features=extra -- -D warnings -D
clippy::unwrap_used -A clippy::needless_collect` to check that you're
using the standard code style
- `cargo test --workspace --features=extra` 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.
2022-11-23 04:51:57 +01:00
|
|
|
with-env [FOO "bar"] { echo $"prefix (nu --testbin echo_env FOO) suffix" }
|
2023-07-12 19:07:20 +02:00
|
|
|
"#);
|
Make external command substitution works friendly(like fish shell, trailing ending newlines) (#7156)
# Description
As title, when execute external sub command, auto-trimming end
new-lines, like how fish shell does.
And if the command is executed directly like: `cat tmp`, the result
won't change.
Fixes: #6816
Fixes: #3980
Note that although nushell works correctly by directly replace output of
external command to variable(or other places like string interpolation),
it's not friendly to user, and users almost want to use `str trim` to
trim trailing newline, I think that's why fish shell do this
automatically.
If the pr is ok, as a result, no more `str trim -r` is required when
user is writing scripts which using external commands.
# User-Facing Changes
Before:
<img width="523" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468810-86b04dbb-c147-459a-96a5-e0095eeaab3d.png">
After:
<img width="505" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468599-7b537488-3d6b-458e-9d75-d85780826db0.png">
# 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 --features=extra -- -D warnings -D
clippy::unwrap_used -A clippy::needless_collect` to check that you're
using the standard code style
- `cargo test --workspace --features=extra` 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.
2022-11-23 04:51:57 +01:00
|
|
|
assert_eq!(actual.out, "prefix bar suffix");
|
|
|
|
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
Make external command substitution works friendly(like fish shell, trailing ending newlines) (#7156)
# Description
As title, when execute external sub command, auto-trimming end
new-lines, like how fish shell does.
And if the command is executed directly like: `cat tmp`, the result
won't change.
Fixes: #6816
Fixes: #3980
Note that although nushell works correctly by directly replace output of
external command to variable(or other places like string interpolation),
it's not friendly to user, and users almost want to use `str trim` to
trim trailing newline, I think that's why fish shell do this
automatically.
If the pr is ok, as a result, no more `str trim -r` is required when
user is writing scripts which using external commands.
# User-Facing Changes
Before:
<img width="523" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468810-86b04dbb-c147-459a-96a5-e0095eeaab3d.png">
After:
<img width="505" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468599-7b537488-3d6b-458e-9d75-d85780826db0.png">
# 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 --features=extra -- -D warnings -D
clippy::unwrap_used -A clippy::needless_collect` to check that you're
using the standard code style
- `cargo test --workspace --features=extra` 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.
2022-11-23 04:51:57 +01:00
|
|
|
with-env [FOO "bar"] { (nu --testbin echo_env FOO) }
|
2023-07-12 19:07:20 +02:00
|
|
|
"#);
|
Make external command substitution works friendly(like fish shell, trailing ending newlines) (#7156)
# Description
As title, when execute external sub command, auto-trimming end
new-lines, like how fish shell does.
And if the command is executed directly like: `cat tmp`, the result
won't change.
Fixes: #6816
Fixes: #3980
Note that although nushell works correctly by directly replace output of
external command to variable(or other places like string interpolation),
it's not friendly to user, and users almost want to use `str trim` to
trim trailing newline, I think that's why fish shell do this
automatically.
If the pr is ok, as a result, no more `str trim -r` is required when
user is writing scripts which using external commands.
# User-Facing Changes
Before:
<img width="523" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468810-86b04dbb-c147-459a-96a5-e0095eeaab3d.png">
After:
<img width="505" alt="img"
src="https://user-images.githubusercontent.com/22256154/202468599-7b537488-3d6b-458e-9d75-d85780826db0.png">
# 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 --features=extra -- -D warnings -D
clippy::unwrap_used -A clippy::needless_collect` to check that you're
using the standard code style
- `cargo test --workspace --features=extra` 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.
2022-11-23 04:51:57 +01:00
|
|
|
assert_eq!(actual.out, "bar");
|
|
|
|
}
|
|
|
|
|
2020-01-16 10:05:53 +01:00
|
|
|
mod it_evaluation {
|
|
|
|
use super::nu;
|
2020-02-12 00:25:56 +01:00
|
|
|
use nu_test_support::fs::Stub::{EmptyFile, FileWithContent, FileWithContentToBeTrimmed};
|
2020-01-16 10:05:53 +01:00
|
|
|
use nu_test_support::{pipeline, playground::Playground};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn takes_rows_of_nu_value_strings() {
|
|
|
|
Playground::setup("it_argument_test_1", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![
|
2023-03-15 06:54:55 +01:00
|
|
|
EmptyFile("jt_likes_cake.txt"),
|
2020-01-16 10:05:53 +01:00
|
|
|
EmptyFile("andres_likes_arepas.txt"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-01-16 10:05:53 +01:00
|
|
|
ls
|
|
|
|
| sort-by name
|
|
|
|
| get name
|
2022-02-17 12:40:24 +01:00
|
|
|
| each { |it| nu --testbin cococo $it }
|
2022-02-02 21:59:01 +01:00
|
|
|
| get 1
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-01-16 10:05:53 +01:00
|
|
|
));
|
|
|
|
|
2023-03-15 06:54:55 +01:00
|
|
|
assert_eq!(actual.out, "jt_likes_cake.txt");
|
2020-01-16 10:05:53 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn takes_rows_of_nu_value_lines() {
|
|
|
|
Playground::setup("it_argument_test_2", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"nu_candies.txt",
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-01-16 10:05:53 +01:00
|
|
|
AndrásWithKitKatzz
|
|
|
|
AndrásWithKitKatz
|
2023-07-12 19:07:20 +02:00
|
|
|
",
|
2020-01-16 10:05:53 +01:00
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-01-16 10:05:53 +01:00
|
|
|
open nu_candies.txt
|
|
|
|
| lines
|
2022-02-17 12:40:24 +01:00
|
|
|
| each { |it| nu --testbin chop $it}
|
2022-02-02 21:59:01 +01:00
|
|
|
| get 1
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-01-16 10:05:53 +01:00
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "AndrásWithKitKat");
|
2020-01-16 10:05:53 +01:00
|
|
|
})
|
|
|
|
}
|
2020-02-12 00:25:56 +01:00
|
|
|
|
|
|
|
#[test]
|
2021-03-10 23:35:15 +01:00
|
|
|
fn can_properly_buffer_lines_externally() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2021-03-13 22:46:40 +01:00
|
|
|
nu --testbin repeater c 8197 | lines | length
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2021-03-10 23:35:15 +01:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "1");
|
|
|
|
}
|
|
|
|
#[test]
|
2020-02-12 00:25:56 +01:00
|
|
|
fn supports_fetching_given_a_column_path_to_it() {
|
|
|
|
Playground::setup("it_argument_test_3", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContent(
|
|
|
|
"sample.toml",
|
|
|
|
r#"
|
|
|
|
nu_party_venue = "zion"
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-02-12 00:25:56 +01:00
|
|
|
open sample.toml
|
2022-02-02 21:59:01 +01:00
|
|
|
| nu --testbin cococo $in.nu_party_venue
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-02-12 00:25:56 +01:00
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "zion");
|
2020-02-12 00:25:56 +01:00
|
|
|
})
|
|
|
|
}
|
2020-01-16 10:05:53 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 16:37:48 +01:00
|
|
|
mod stdin_evaluation {
|
2020-05-07 13:03:43 +02:00
|
|
|
use super::nu;
|
2020-02-10 16:37:48 +01:00
|
|
|
use nu_test_support::pipeline;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn does_not_panic_with_no_newline_in_stream() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(pipeline(
|
|
|
|
r#"
|
2022-02-02 21:59:01 +01:00
|
|
|
nu --testbin nonu "wheres the nuline?" | length
|
2020-02-10 16:37:48 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.err, "");
|
2020-02-10 16:37:48 +01:00
|
|
|
}
|
2020-03-01 18:19:09 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn does_not_block_indefinitely() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let stdout = nu!(pipeline(
|
|
|
|
"
|
2022-02-02 21:59:01 +01:00
|
|
|
( nu --testbin iecho yes
|
|
|
|
| nu --testbin chop
|
|
|
|
| nu --testbin chop
|
|
|
|
| lines
|
2022-09-29 00:08:17 +02:00
|
|
|
| first )
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-05-07 13:03:43 +02:00
|
|
|
))
|
|
|
|
.out;
|
2020-03-01 18:19:09 +01:00
|
|
|
|
|
|
|
assert_eq!(stdout, "y");
|
|
|
|
}
|
2020-02-10 16:37:48 +01:00
|
|
|
}
|
|
|
|
|
2020-01-24 20:14:49 +01:00
|
|
|
mod external_words {
|
|
|
|
use super::nu;
|
2021-06-08 22:59:53 +02:00
|
|
|
use nu_test_support::fs::Stub::FileWithContent;
|
|
|
|
use nu_test_support::{pipeline, playground::Playground};
|
2020-01-24 20:14:49 +01:00
|
|
|
#[test]
|
|
|
|
fn relaxed_external_words() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2020-05-18 05:52:56 +02:00
|
|
|
nu --testbin cococo joturner@foo.bar.baz
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2020-01-24 20:14:49 +01:00
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "joturner@foo.bar.baz");
|
2020-01-24 20:14:49 +01:00
|
|
|
}
|
2020-07-03 01:29:28 +02:00
|
|
|
|
2022-02-02 21:59:01 +01:00
|
|
|
//FIXME: jt: limitation in testing - can't use single ticks currently
|
|
|
|
#[ignore]
|
2020-07-03 01:29:28 +02:00
|
|
|
#[test]
|
|
|
|
fn no_escaping_for_single_quoted_strings() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
2020-07-03 01:29:28 +02:00
|
|
|
nu --testbin cococo 'test "things"'
|
|
|
|
"#);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "test \"things\"");
|
|
|
|
}
|
2021-06-08 22:59:53 +02:00
|
|
|
|
2021-06-28 12:16:03 +02:00
|
|
|
#[rstest::rstest]
|
|
|
|
#[case("sample.toml", r#""sample.toml""#)]
|
|
|
|
#[case("a sample file.toml", r#""a sample file.toml""#)]
|
2022-02-02 21:59:01 +01:00
|
|
|
//FIXME: jt: we don't currently support single ticks in tests
|
|
|
|
//#[case("quote'mark.toml", r#""quote'mark.toml""#)]
|
2021-06-28 12:16:03 +02:00
|
|
|
#[cfg_attr(
|
|
|
|
not(target_os = "windows"),
|
|
|
|
case(r#"quote"mark.toml"#, r#"$"quote(char double_quote)mark.toml""#)
|
|
|
|
)]
|
|
|
|
#[cfg_attr(not(target_os = "windows"), case("?mark.toml", r#""?mark.toml""#))]
|
|
|
|
#[cfg_attr(not(target_os = "windows"), case("*.toml", r#""*.toml""#))]
|
|
|
|
#[cfg_attr(not(target_os = "windows"), case("*.toml", "*.toml"))]
|
|
|
|
#[case("$ sign.toml", r#""$ sign.toml""#)]
|
|
|
|
fn external_arg_with_special_characters(#[case] path: &str, #[case] nu_path_argument: &str) {
|
2021-06-08 22:59:53 +02:00
|
|
|
Playground::setup("external_arg_with_quotes", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContent(
|
2021-06-28 12:16:03 +02:00
|
|
|
path,
|
2021-06-08 22:59:53 +02:00
|
|
|
r#"
|
|
|
|
nu_party_venue = "zion"
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-12 19:07:20 +02:00
|
|
|
&format!("
|
2023-01-30 02:37:54 +01:00
|
|
|
nu --testbin meow {nu_path_argument} | from toml | get nu_party_venue
|
2023-07-12 19:07:20 +02:00
|
|
|
")
|
2021-06-08 22:59:53 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "zion");
|
|
|
|
})
|
|
|
|
}
|
2020-01-24 20:14:49 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 07:55:07 +01:00
|
|
|
mod nu_commands {
|
2022-06-20 16:05:11 +02:00
|
|
|
use nu_test_support::playground::Playground;
|
|
|
|
|
2020-02-10 07:55:07 +01:00
|
|
|
use super::nu;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn echo_internally_externally() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
2020-02-10 07:55:07 +01:00
|
|
|
nu -c "echo 'foo'"
|
|
|
|
"#);
|
|
|
|
|
2023-01-09 06:53:52 +01:00
|
|
|
assert_eq!(actual.out, "foo");
|
2020-02-10 07:55:07 +01:00
|
|
|
}
|
2022-04-21 05:31:52 +02:00
|
|
|
|
2022-06-20 16:05:11 +02:00
|
|
|
#[test]
|
|
|
|
fn failed_with_proper_exit_code() {
|
|
|
|
Playground::setup("external failed", |dirs, _sandbox| {
|
|
|
|
let actual = nu!(cwd: dirs.test(), r#"
|
2022-10-10 14:32:55 +02:00
|
|
|
nu -c "cargo build | complete | get exit_code"
|
2022-06-20 16:05:11 +02:00
|
|
|
"#);
|
|
|
|
|
|
|
|
// cargo for non rust project's exit code is 101.
|
2023-01-09 06:53:52 +01:00
|
|
|
assert_eq!(actual.out, "101")
|
2022-06-20 16:05:11 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-04-21 05:31:52 +02:00
|
|
|
#[test]
|
|
|
|
fn better_arg_quoting() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
2022-04-21 05:31:52 +02:00
|
|
|
nu -c "\# '"
|
|
|
|
"#);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "");
|
|
|
|
}
|
2022-06-06 12:19:06 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn command_list_arg_test() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
Allow spreading arguments to commands (#11289)
<!--
if this PR closes one or more issues, you can automatically link the PR
with
them by using one of the [*linking
keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword),
e.g.
- this PR should close #xxxx
- fixes #xxxx
you can also mention related issues, PRs or discussions!
-->
Finishes implementing https://github.com/nushell/nushell/issues/10598,
which asks for a spread operator in lists, in records, and when calling
commands.
# Description
<!--
Thank you for improving Nushell. Please, check our [contributing
guide](../CONTRIBUTING.md) and talk to the core team before making major
changes.
Description of your pull request goes here. **Provide examples and/or
screenshots** if your changes affect the user experience.
-->
This PR will allow spreading arguments to commands (both internal and
external). It will also deprecate spreading arguments automatically when
passing to external commands.
# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->
- Users will be able to use `...` to spread arguments to custom/builtin
commands that have rest parameters or allow unknown arguments, or to any
external command
- If a custom command doesn't have a rest parameter and it doesn't allow
unknown arguments either, the spread operator will not be allowed
- Passing lists to external commands without `...` will work for now but
will cause a deprecation warning saying that it'll stop working in 0.91
(is 2 versions enough time?)
Here's a function to help with demonstrating some behavior:
```nushell
> def foo [ a, b, c?, d?, ...rest ] { [$a $b $c $d $rest] | to nuon }
```
You can pass a list of arguments to fill in the `rest` parameter using
`...`:
```nushell
> foo 1 2 3 4 ...[5 6]
[1, 2, 3, 4, [5, 6]]
```
If you don't use `...`, the list `[5 6]` will be treated as a single
argument:
```nushell
> foo 1 2 3 4 [5 6] # Note the double [[]]
[1, 2, 3, 4, [[5, 6]]]
```
You can omit optional parameters before the spread arguments:
```nushell
> foo 1 2 3 ...[4 5] # d is omitted here
[1, 2, 3, null, [4, 5]]
```
If you have multiple lists, you can spread them all:
```nushell
> foo 1 2 3 ...[4 5] 6 7 ...[8] ...[]
[1, 2, 3, null, [4, 5, 6, 7, 8]]
```
Here's the kind of error you get when you try to spread arguments to a
command with no rest parameter:
![image](https://github.com/nushell/nushell/assets/45539777/93faceae-00eb-4e59-ac3f-17f98436e6e4)
And this is the warning you get when you pass a list to an external now
(without `...`):
![image](https://github.com/nushell/nushell/assets/45539777/d368f590-201e-49fb-8b20-68476ced415e)
# 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` to
check that you're using the standard code style
- `cargo test --workspace` to check that all tests pass (on Windows make
sure to [enable developer
mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging))
- `cargo run -- -c "use std testing; testing run-tests --path
crates/nu-std"` to run the tests for the standard library
> **Note**
> from `nushell` you can also use the `toolkit` as follows
> ```bash
> use toolkit.nu # or use an `env_change` hook to activate it
automatically
> toolkit check pr
> ```
-->
Added tests to cover the following cases:
- Spreading arguments to a command that doesn't have a rest parameter
(unexpected spread argument error)
- Spreading arguments to a command that doesn't have a rest parameter
*but* there's also a missing positional argument (missing positional
error)
- Spreading arguments to a command that doesn't have a rest parameter
but does allow unknown arguments, such as `exec` (allowed)
- Spreading a list literal containing arguments of the wrong type (parse
error)
- Spreading a non-list value, both to internal and external commands
- Having named arguments in the middle of rest arguments
- `explain`ing a command call that spreads its arguments
# 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.
-->
# Examples
Suppose you have multiple tables:
```nushell
let people = [[id name age]; [0 alice 100] [1 bob 200] [2 eve 300]]
let evil_twins = [[id name age]; [0 ecila 100] [-1 bob 200] [-2 eve 300]]
```
Maybe you often find yourself needing to merge multiple tables and want
a utility to do that. You could write a function like this:
```nushell
def merge_all [ ...tables ] { $tables | reduce { |it, acc| $acc | merge $it } }
```
Then you can use it like this:
```nushell
> merge_all ...([$people $evil_twins] | each { |$it| $it | select name age })
╭───┬───────┬─────╮
│ # │ name │ age │
├───┼───────┼─────┤
│ 0 │ ecila │ 100 │
│ 1 │ bob │ 200 │
│ 2 │ eve │ 300 │
╰───┴───────┴─────╯
```
Except they had duplicate columns, so now you first want to suffix every
column with a number to tell you which table the column came from. You
can make a command for that:
```nushell
def select_and_merge [ --cols: list<string>, ...tables ] {
let renamed_tables = $tables
| enumerate
| each { |it|
$it.item | select $cols | rename ...($cols | each { |col| $col + ($it.index | into string) })
};
merge_all ...$renamed_tables
}
```
And call it like this:
```nushell
> select_and_merge --cols [name age] $people $evil_twins
╭───┬───────┬──────┬───────┬──────╮
│ # │ name0 │ age0 │ name1 │ age1 │
├───┼───────┼──────┼───────┼──────┤
│ 0 │ alice │ 100 │ ecila │ 100 │
│ 1 │ bob │ 200 │ bob │ 200 │
│ 2 │ eve │ 300 │ eve │ 300 │
╰───┴───────┴──────┴───────┴──────╯
```
---
Suppose someone's made a command to search for APT packages:
```nushell
# The main command
def search-pkgs [
--install # Whether to install any packages it finds
log_level: int # Pretend it's a good idea to make this a required positional parameter
exclude?: list<string> # Packages to exclude
repositories?: list<string> # Which repositories to look in (searches in all if not given)
...pkgs # Package names to search for
] {
{ install: $install, log_level: $log_level, exclude: ($exclude | to nuon), repositories: ($repositories | to nuon), pkgs: ($pkgs | to nuon) }
}
```
It has a lot of parameters to configure it, so you might make your own
helper commands to wrap around it for specific cases. Here's one
example:
```nushell
# Only look for packages locally
def search-pkgs-local [
--install # Whether to install any packages it finds
log_level: int
exclude?: list<string> # Packages to exclude
...pkgs # Package names to search for
] {
# All required and optional positional parameters are given
search-pkgs --install=$install $log_level [] ["<local URI or something>"] ...$pkgs
}
```
And you can run it like this:
```nushell
> search-pkgs-local --install=false 5 ...["python2.7" "vim"]
╭──────────────┬──────────────────────────────╮
│ install │ false │
│ log_level │ 5 │
│ exclude │ [] │
│ repositories │ ["<local URI or something>"] │
│ pkgs │ ["python2.7", vim] │
╰──────────────┴──────────────────────────────╯
```
One thing I realized when writing this was that if we decide to not
allow passing optional arguments using the spread operator, then you can
(mis?)use the spread operator to skip optional parameters. Here, I
didn't want to give `exclude` explicitly, so I used a spread operator to
pass the packages to install. Without it, I would've needed to do
`search-pkgs-local --install=false 5 [] "python2.7" "vim"` (explicitly
pass `[]` (or `null`, in the general case) to `exclude`). There are
probably more idiomatic ways to do this, but I just thought it was
something interesting.
If you're a virologist of the [xkcd](https://xkcd.com/350/) kind,
another helper command you might make is this:
```nushell
# Install any packages it finds
def live-dangerously [ ...pkgs ] {
# One optional argument was given (exclude), while another was not (repositories)
search-pkgs 0 [] ...$pkgs --install # Flags can go after spread arguments
}
```
Running it:
```nushell
> live-dangerously "git" "*vi*" # *vi* because I don't feel like typing out vim and neovim
╭──────────────┬─────────────╮
│ install │ true │
│ log_level │ 0 │
│ exclude │ [] │
│ repositories │ null │
│ pkgs │ [git, *vi*] │
╰──────────────┴─────────────╯
```
Here's an example that uses the spread operator more than once within
the same command call:
```nushell
let extras = [ chrome firefox python java git ]
def search-pkgs-curated [ ...pkgs ] {
(search-pkgs
1
[emacs]
["example.com", "foo.com"]
vim # A must for everyone!
...($pkgs | filter { |p| not ($p | str contains "*") }) # Remove packages with globs
python # Good tool to have
...$extras
--install=false
python3) # I forget, did I already put Python in extras?
}
```
Running it:
```nushell
> search-pkgs-curated "git" "*vi*"
╭──────────────┬───────────────────────────────────────────────────────────────────╮
│ install │ false │
│ log_level │ 1 │
│ exclude │ [emacs] │
│ repositories │ [example.com, foo.com] │
│ pkgs │ [vim, git, python, chrome, firefox, python, java, git, "python3"] │
╰──────────────┴───────────────────────────────────────────────────────────────────╯
```
2023-12-28 08:43:20 +01:00
|
|
|
nu ...['-c' 'version']
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2022-06-06 12:19:06 +02:00
|
|
|
|
|
|
|
assert!(actual.out.contains("version"));
|
|
|
|
assert!(actual.out.contains("rust_version"));
|
|
|
|
assert!(actual.out.contains("rust_channel"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn command_cell_path_arg_test() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
Allow spreading arguments to commands (#11289)
<!--
if this PR closes one or more issues, you can automatically link the PR
with
them by using one of the [*linking
keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword),
e.g.
- this PR should close #xxxx
- fixes #xxxx
you can also mention related issues, PRs or discussions!
-->
Finishes implementing https://github.com/nushell/nushell/issues/10598,
which asks for a spread operator in lists, in records, and when calling
commands.
# Description
<!--
Thank you for improving Nushell. Please, check our [contributing
guide](../CONTRIBUTING.md) and talk to the core team before making major
changes.
Description of your pull request goes here. **Provide examples and/or
screenshots** if your changes affect the user experience.
-->
This PR will allow spreading arguments to commands (both internal and
external). It will also deprecate spreading arguments automatically when
passing to external commands.
# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->
- Users will be able to use `...` to spread arguments to custom/builtin
commands that have rest parameters or allow unknown arguments, or to any
external command
- If a custom command doesn't have a rest parameter and it doesn't allow
unknown arguments either, the spread operator will not be allowed
- Passing lists to external commands without `...` will work for now but
will cause a deprecation warning saying that it'll stop working in 0.91
(is 2 versions enough time?)
Here's a function to help with demonstrating some behavior:
```nushell
> def foo [ a, b, c?, d?, ...rest ] { [$a $b $c $d $rest] | to nuon }
```
You can pass a list of arguments to fill in the `rest` parameter using
`...`:
```nushell
> foo 1 2 3 4 ...[5 6]
[1, 2, 3, 4, [5, 6]]
```
If you don't use `...`, the list `[5 6]` will be treated as a single
argument:
```nushell
> foo 1 2 3 4 [5 6] # Note the double [[]]
[1, 2, 3, 4, [[5, 6]]]
```
You can omit optional parameters before the spread arguments:
```nushell
> foo 1 2 3 ...[4 5] # d is omitted here
[1, 2, 3, null, [4, 5]]
```
If you have multiple lists, you can spread them all:
```nushell
> foo 1 2 3 ...[4 5] 6 7 ...[8] ...[]
[1, 2, 3, null, [4, 5, 6, 7, 8]]
```
Here's the kind of error you get when you try to spread arguments to a
command with no rest parameter:
![image](https://github.com/nushell/nushell/assets/45539777/93faceae-00eb-4e59-ac3f-17f98436e6e4)
And this is the warning you get when you pass a list to an external now
(without `...`):
![image](https://github.com/nushell/nushell/assets/45539777/d368f590-201e-49fb-8b20-68476ced415e)
# 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` to
check that you're using the standard code style
- `cargo test --workspace` to check that all tests pass (on Windows make
sure to [enable developer
mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging))
- `cargo run -- -c "use std testing; testing run-tests --path
crates/nu-std"` to run the tests for the standard library
> **Note**
> from `nushell` you can also use the `toolkit` as follows
> ```bash
> use toolkit.nu # or use an `env_change` hook to activate it
automatically
> toolkit check pr
> ```
-->
Added tests to cover the following cases:
- Spreading arguments to a command that doesn't have a rest parameter
(unexpected spread argument error)
- Spreading arguments to a command that doesn't have a rest parameter
*but* there's also a missing positional argument (missing positional
error)
- Spreading arguments to a command that doesn't have a rest parameter
but does allow unknown arguments, such as `exec` (allowed)
- Spreading a list literal containing arguments of the wrong type (parse
error)
- Spreading a non-list value, both to internal and external commands
- Having named arguments in the middle of rest arguments
- `explain`ing a command call that spreads its arguments
# 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.
-->
# Examples
Suppose you have multiple tables:
```nushell
let people = [[id name age]; [0 alice 100] [1 bob 200] [2 eve 300]]
let evil_twins = [[id name age]; [0 ecila 100] [-1 bob 200] [-2 eve 300]]
```
Maybe you often find yourself needing to merge multiple tables and want
a utility to do that. You could write a function like this:
```nushell
def merge_all [ ...tables ] { $tables | reduce { |it, acc| $acc | merge $it } }
```
Then you can use it like this:
```nushell
> merge_all ...([$people $evil_twins] | each { |$it| $it | select name age })
╭───┬───────┬─────╮
│ # │ name │ age │
├───┼───────┼─────┤
│ 0 │ ecila │ 100 │
│ 1 │ bob │ 200 │
│ 2 │ eve │ 300 │
╰───┴───────┴─────╯
```
Except they had duplicate columns, so now you first want to suffix every
column with a number to tell you which table the column came from. You
can make a command for that:
```nushell
def select_and_merge [ --cols: list<string>, ...tables ] {
let renamed_tables = $tables
| enumerate
| each { |it|
$it.item | select $cols | rename ...($cols | each { |col| $col + ($it.index | into string) })
};
merge_all ...$renamed_tables
}
```
And call it like this:
```nushell
> select_and_merge --cols [name age] $people $evil_twins
╭───┬───────┬──────┬───────┬──────╮
│ # │ name0 │ age0 │ name1 │ age1 │
├───┼───────┼──────┼───────┼──────┤
│ 0 │ alice │ 100 │ ecila │ 100 │
│ 1 │ bob │ 200 │ bob │ 200 │
│ 2 │ eve │ 300 │ eve │ 300 │
╰───┴───────┴──────┴───────┴──────╯
```
---
Suppose someone's made a command to search for APT packages:
```nushell
# The main command
def search-pkgs [
--install # Whether to install any packages it finds
log_level: int # Pretend it's a good idea to make this a required positional parameter
exclude?: list<string> # Packages to exclude
repositories?: list<string> # Which repositories to look in (searches in all if not given)
...pkgs # Package names to search for
] {
{ install: $install, log_level: $log_level, exclude: ($exclude | to nuon), repositories: ($repositories | to nuon), pkgs: ($pkgs | to nuon) }
}
```
It has a lot of parameters to configure it, so you might make your own
helper commands to wrap around it for specific cases. Here's one
example:
```nushell
# Only look for packages locally
def search-pkgs-local [
--install # Whether to install any packages it finds
log_level: int
exclude?: list<string> # Packages to exclude
...pkgs # Package names to search for
] {
# All required and optional positional parameters are given
search-pkgs --install=$install $log_level [] ["<local URI or something>"] ...$pkgs
}
```
And you can run it like this:
```nushell
> search-pkgs-local --install=false 5 ...["python2.7" "vim"]
╭──────────────┬──────────────────────────────╮
│ install │ false │
│ log_level │ 5 │
│ exclude │ [] │
│ repositories │ ["<local URI or something>"] │
│ pkgs │ ["python2.7", vim] │
╰──────────────┴──────────────────────────────╯
```
One thing I realized when writing this was that if we decide to not
allow passing optional arguments using the spread operator, then you can
(mis?)use the spread operator to skip optional parameters. Here, I
didn't want to give `exclude` explicitly, so I used a spread operator to
pass the packages to install. Without it, I would've needed to do
`search-pkgs-local --install=false 5 [] "python2.7" "vim"` (explicitly
pass `[]` (or `null`, in the general case) to `exclude`). There are
probably more idiomatic ways to do this, but I just thought it was
something interesting.
If you're a virologist of the [xkcd](https://xkcd.com/350/) kind,
another helper command you might make is this:
```nushell
# Install any packages it finds
def live-dangerously [ ...pkgs ] {
# One optional argument was given (exclude), while another was not (repositories)
search-pkgs 0 [] ...$pkgs --install # Flags can go after spread arguments
}
```
Running it:
```nushell
> live-dangerously "git" "*vi*" # *vi* because I don't feel like typing out vim and neovim
╭──────────────┬─────────────╮
│ install │ true │
│ log_level │ 0 │
│ exclude │ [] │
│ repositories │ null │
│ pkgs │ [git, *vi*] │
╰──────────────┴─────────────╯
```
Here's an example that uses the spread operator more than once within
the same command call:
```nushell
let extras = [ chrome firefox python java git ]
def search-pkgs-curated [ ...pkgs ] {
(search-pkgs
1
[emacs]
["example.com", "foo.com"]
vim # A must for everyone!
...($pkgs | filter { |p| not ($p | str contains "*") }) # Remove packages with globs
python # Good tool to have
...$extras
--install=false
python3) # I forget, did I already put Python in extras?
}
```
Running it:
```nushell
> search-pkgs-curated "git" "*vi*"
╭──────────────┬───────────────────────────────────────────────────────────────────╮
│ install │ false │
│ log_level │ 1 │
│ exclude │ [emacs] │
│ repositories │ [example.com, foo.com] │
│ pkgs │ [vim, git, python, chrome, firefox, python, java, git, "python3"] │
╰──────────────┴───────────────────────────────────────────────────────────────────╯
```
2023-12-28 08:43:20 +01:00
|
|
|
nu ...([ '-c' 'version' ])
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2022-06-06 12:19:06 +02:00
|
|
|
|
|
|
|
assert!(actual.out.contains("version"));
|
|
|
|
assert!(actual.out.contains("rust_version"));
|
|
|
|
assert!(actual.out.contains("rust_channel"));
|
|
|
|
}
|
2020-02-10 07:55:07 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 17:49:45 +01:00
|
|
|
mod nu_script {
|
|
|
|
use super::nu;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_nu_script() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(cwd: "tests/fixtures/formats", "
|
2020-02-10 17:49:45 +01:00
|
|
|
nu script.nu
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2020-02-10 17:49:45 +01:00
|
|
|
|
2023-01-09 06:53:52 +01:00
|
|
|
assert_eq!(actual.out, "done");
|
2020-02-10 17:49:45 +01:00
|
|
|
}
|
2020-02-14 06:24:18 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_nu_script_multiline() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(cwd: "tests/fixtures/formats", "
|
2020-02-14 06:24:18 +01:00
|
|
|
nu script_multiline.nu
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2020-02-14 06:24:18 +01:00
|
|
|
|
2023-01-09 06:53:52 +01:00
|
|
|
assert_eq!(actual.out, "23");
|
2020-02-14 06:24:18 +01:00
|
|
|
}
|
2020-02-10 17:49:45 +01:00
|
|
|
}
|
|
|
|
|
2020-01-16 10:05:53 +01:00
|
|
|
mod tilde_expansion {
|
|
|
|
use super::nu;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn as_home_directory_when_passed_as_argument_and_begins_with_tilde() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2020-05-18 05:52:56 +02:00
|
|
|
nu --testbin cococo ~
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2020-01-16 10:05:53 +01:00
|
|
|
|
2021-03-26 09:26:57 +01:00
|
|
|
assert!(!actual.out.contains('~'));
|
2020-01-16 10:05:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn does_not_expand_when_passed_as_argument_and_does_not_start_with_tilde() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
2020-05-18 05:52:56 +02:00
|
|
|
nu --testbin cococo "1~1"
|
2023-07-12 19:07:20 +02:00
|
|
|
"#);
|
2020-01-16 10:05:53 +01:00
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "1~1");
|
2020-01-16 10:05:53 +01:00
|
|
|
}
|
|
|
|
}
|
2020-07-22 23:41:34 +02:00
|
|
|
|
|
|
|
mod external_command_arguments {
|
|
|
|
use super::nu;
|
|
|
|
use nu_test_support::fs::Stub::EmptyFile;
|
|
|
|
use nu_test_support::{pipeline, playground::Playground};
|
|
|
|
#[test]
|
|
|
|
fn expands_table_of_primitives_to_positional_arguments() {
|
|
|
|
Playground::setup(
|
|
|
|
"expands_table_of_primitives_to_positional_arguments",
|
|
|
|
|dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![
|
2023-03-15 06:54:55 +01:00
|
|
|
EmptyFile("jt_likes_cake.txt"),
|
2020-07-22 23:41:34 +02:00
|
|
|
EmptyFile("andres_likes_arepas.txt"),
|
|
|
|
EmptyFile("ferris_not_here.txt"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
Allow spreading arguments to commands (#11289)
<!--
if this PR closes one or more issues, you can automatically link the PR
with
them by using one of the [*linking
keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword),
e.g.
- this PR should close #xxxx
- fixes #xxxx
you can also mention related issues, PRs or discussions!
-->
Finishes implementing https://github.com/nushell/nushell/issues/10598,
which asks for a spread operator in lists, in records, and when calling
commands.
# Description
<!--
Thank you for improving Nushell. Please, check our [contributing
guide](../CONTRIBUTING.md) and talk to the core team before making major
changes.
Description of your pull request goes here. **Provide examples and/or
screenshots** if your changes affect the user experience.
-->
This PR will allow spreading arguments to commands (both internal and
external). It will also deprecate spreading arguments automatically when
passing to external commands.
# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->
- Users will be able to use `...` to spread arguments to custom/builtin
commands that have rest parameters or allow unknown arguments, or to any
external command
- If a custom command doesn't have a rest parameter and it doesn't allow
unknown arguments either, the spread operator will not be allowed
- Passing lists to external commands without `...` will work for now but
will cause a deprecation warning saying that it'll stop working in 0.91
(is 2 versions enough time?)
Here's a function to help with demonstrating some behavior:
```nushell
> def foo [ a, b, c?, d?, ...rest ] { [$a $b $c $d $rest] | to nuon }
```
You can pass a list of arguments to fill in the `rest` parameter using
`...`:
```nushell
> foo 1 2 3 4 ...[5 6]
[1, 2, 3, 4, [5, 6]]
```
If you don't use `...`, the list `[5 6]` will be treated as a single
argument:
```nushell
> foo 1 2 3 4 [5 6] # Note the double [[]]
[1, 2, 3, 4, [[5, 6]]]
```
You can omit optional parameters before the spread arguments:
```nushell
> foo 1 2 3 ...[4 5] # d is omitted here
[1, 2, 3, null, [4, 5]]
```
If you have multiple lists, you can spread them all:
```nushell
> foo 1 2 3 ...[4 5] 6 7 ...[8] ...[]
[1, 2, 3, null, [4, 5, 6, 7, 8]]
```
Here's the kind of error you get when you try to spread arguments to a
command with no rest parameter:
![image](https://github.com/nushell/nushell/assets/45539777/93faceae-00eb-4e59-ac3f-17f98436e6e4)
And this is the warning you get when you pass a list to an external now
(without `...`):
![image](https://github.com/nushell/nushell/assets/45539777/d368f590-201e-49fb-8b20-68476ced415e)
# 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` to
check that you're using the standard code style
- `cargo test --workspace` to check that all tests pass (on Windows make
sure to [enable developer
mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging))
- `cargo run -- -c "use std testing; testing run-tests --path
crates/nu-std"` to run the tests for the standard library
> **Note**
> from `nushell` you can also use the `toolkit` as follows
> ```bash
> use toolkit.nu # or use an `env_change` hook to activate it
automatically
> toolkit check pr
> ```
-->
Added tests to cover the following cases:
- Spreading arguments to a command that doesn't have a rest parameter
(unexpected spread argument error)
- Spreading arguments to a command that doesn't have a rest parameter
*but* there's also a missing positional argument (missing positional
error)
- Spreading arguments to a command that doesn't have a rest parameter
but does allow unknown arguments, such as `exec` (allowed)
- Spreading a list literal containing arguments of the wrong type (parse
error)
- Spreading a non-list value, both to internal and external commands
- Having named arguments in the middle of rest arguments
- `explain`ing a command call that spreads its arguments
# 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.
-->
# Examples
Suppose you have multiple tables:
```nushell
let people = [[id name age]; [0 alice 100] [1 bob 200] [2 eve 300]]
let evil_twins = [[id name age]; [0 ecila 100] [-1 bob 200] [-2 eve 300]]
```
Maybe you often find yourself needing to merge multiple tables and want
a utility to do that. You could write a function like this:
```nushell
def merge_all [ ...tables ] { $tables | reduce { |it, acc| $acc | merge $it } }
```
Then you can use it like this:
```nushell
> merge_all ...([$people $evil_twins] | each { |$it| $it | select name age })
╭───┬───────┬─────╮
│ # │ name │ age │
├───┼───────┼─────┤
│ 0 │ ecila │ 100 │
│ 1 │ bob │ 200 │
│ 2 │ eve │ 300 │
╰───┴───────┴─────╯
```
Except they had duplicate columns, so now you first want to suffix every
column with a number to tell you which table the column came from. You
can make a command for that:
```nushell
def select_and_merge [ --cols: list<string>, ...tables ] {
let renamed_tables = $tables
| enumerate
| each { |it|
$it.item | select $cols | rename ...($cols | each { |col| $col + ($it.index | into string) })
};
merge_all ...$renamed_tables
}
```
And call it like this:
```nushell
> select_and_merge --cols [name age] $people $evil_twins
╭───┬───────┬──────┬───────┬──────╮
│ # │ name0 │ age0 │ name1 │ age1 │
├───┼───────┼──────┼───────┼──────┤
│ 0 │ alice │ 100 │ ecila │ 100 │
│ 1 │ bob │ 200 │ bob │ 200 │
│ 2 │ eve │ 300 │ eve │ 300 │
╰───┴───────┴──────┴───────┴──────╯
```
---
Suppose someone's made a command to search for APT packages:
```nushell
# The main command
def search-pkgs [
--install # Whether to install any packages it finds
log_level: int # Pretend it's a good idea to make this a required positional parameter
exclude?: list<string> # Packages to exclude
repositories?: list<string> # Which repositories to look in (searches in all if not given)
...pkgs # Package names to search for
] {
{ install: $install, log_level: $log_level, exclude: ($exclude | to nuon), repositories: ($repositories | to nuon), pkgs: ($pkgs | to nuon) }
}
```
It has a lot of parameters to configure it, so you might make your own
helper commands to wrap around it for specific cases. Here's one
example:
```nushell
# Only look for packages locally
def search-pkgs-local [
--install # Whether to install any packages it finds
log_level: int
exclude?: list<string> # Packages to exclude
...pkgs # Package names to search for
] {
# All required and optional positional parameters are given
search-pkgs --install=$install $log_level [] ["<local URI or something>"] ...$pkgs
}
```
And you can run it like this:
```nushell
> search-pkgs-local --install=false 5 ...["python2.7" "vim"]
╭──────────────┬──────────────────────────────╮
│ install │ false │
│ log_level │ 5 │
│ exclude │ [] │
│ repositories │ ["<local URI or something>"] │
│ pkgs │ ["python2.7", vim] │
╰──────────────┴──────────────────────────────╯
```
One thing I realized when writing this was that if we decide to not
allow passing optional arguments using the spread operator, then you can
(mis?)use the spread operator to skip optional parameters. Here, I
didn't want to give `exclude` explicitly, so I used a spread operator to
pass the packages to install. Without it, I would've needed to do
`search-pkgs-local --install=false 5 [] "python2.7" "vim"` (explicitly
pass `[]` (or `null`, in the general case) to `exclude`). There are
probably more idiomatic ways to do this, but I just thought it was
something interesting.
If you're a virologist of the [xkcd](https://xkcd.com/350/) kind,
another helper command you might make is this:
```nushell
# Install any packages it finds
def live-dangerously [ ...pkgs ] {
# One optional argument was given (exclude), while another was not (repositories)
search-pkgs 0 [] ...$pkgs --install # Flags can go after spread arguments
}
```
Running it:
```nushell
> live-dangerously "git" "*vi*" # *vi* because I don't feel like typing out vim and neovim
╭──────────────┬─────────────╮
│ install │ true │
│ log_level │ 0 │
│ exclude │ [] │
│ repositories │ null │
│ pkgs │ [git, *vi*] │
╰──────────────┴─────────────╯
```
Here's an example that uses the spread operator more than once within
the same command call:
```nushell
let extras = [ chrome firefox python java git ]
def search-pkgs-curated [ ...pkgs ] {
(search-pkgs
1
[emacs]
["example.com", "foo.com"]
vim # A must for everyone!
...($pkgs | filter { |p| not ($p | str contains "*") }) # Remove packages with globs
python # Good tool to have
...$extras
--install=false
python3) # I forget, did I already put Python in extras?
}
```
Running it:
```nushell
> search-pkgs-curated "git" "*vi*"
╭──────────────┬───────────────────────────────────────────────────────────────────╮
│ install │ false │
│ log_level │ 1 │
│ exclude │ [emacs] │
│ repositories │ [example.com, foo.com] │
│ pkgs │ [vim, git, python, chrome, firefox, python, java, git, "python3"] │
╰──────────────┴───────────────────────────────────────────────────────────────────╯
```
2023-12-28 08:43:20 +01:00
|
|
|
nu --testbin cococo ...(ls | get name)
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2020-07-22 23:41:34 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
actual.out,
|
2023-03-15 06:54:55 +01:00
|
|
|
"andres_likes_arepas.txt ferris_not_here.txt jt_likes_cake.txt"
|
2020-07-22 23:41:34 +02:00
|
|
|
);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2021-06-17 21:59:58 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn proper_subexpression_paths_in_external_args() {
|
|
|
|
Playground::setup(
|
|
|
|
"expands_table_of_primitives_to_positional_arguments",
|
|
|
|
|dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![
|
2023-03-15 06:54:55 +01:00
|
|
|
EmptyFile("jt_likes_cake.txt"),
|
2021-06-17 21:59:58 +02:00
|
|
|
EmptyFile("andres_likes_arepas.txt"),
|
|
|
|
EmptyFile("ferris_not_here.txt"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2021-06-17 21:59:58 +02:00
|
|
|
nu --testbin cococo (ls | sort-by name | get name).1
|
2023-07-12 19:07:20 +02:00
|
|
|
"
|
2021-06-17 21:59:58 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "ferris_not_here.txt");
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2021-06-25 22:14:54 +02:00
|
|
|
|
2021-07-06 20:14:48 +02:00
|
|
|
#[cfg(not(windows))]
|
2021-06-25 22:14:54 +02:00
|
|
|
#[test]
|
|
|
|
fn string_interpolation_with_an_external_command() {
|
|
|
|
Playground::setup(
|
|
|
|
"string_interpolation_with_an_external_command",
|
|
|
|
|dirs, sandbox| {
|
|
|
|
sandbox.mkdir("cd");
|
|
|
|
|
2022-02-02 21:59:01 +01:00
|
|
|
sandbox.with_files(vec![EmptyFile("cd/jt_likes_cake.txt")]);
|
2021-06-25 22:14:54 +02:00
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
|
|
|
r#"
|
2022-02-02 21:59:01 +01:00
|
|
|
nu --testbin cococo $"(pwd)/cd"
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.out.contains("cd"));
|
2021-06-25 22:14:54 +02:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2021-11-29 16:46:42 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn semicolons_are_sanitized_before_passing_to_subshell() {
|
2024-01-05 04:40:56 +01:00
|
|
|
let actual = nu!("nu --testbin cococo \"a;b\"");
|
2021-11-29 16:46:42 +01:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "a;b");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ampersands_are_sanitized_before_passing_to_subshell() {
|
2024-01-05 04:40:56 +01:00
|
|
|
let actual = nu!("nu --testbin cococo \"a&b\"");
|
2021-11-29 16:46:42 +01:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "a&b");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
#[test]
|
|
|
|
fn subcommands_are_sanitized_before_passing_to_subshell() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("nu --testbin cococo \"$(ls)\"");
|
2021-11-29 16:46:42 +01:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "$(ls)");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
#[test]
|
|
|
|
fn shell_arguments_are_sanitized_even_if_coming_from_other_commands() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("nu --testbin cococo (echo \"a;&$(hello)\")");
|
2021-11-29 16:46:42 +01:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "a;&$(hello)");
|
|
|
|
}
|
2020-07-22 23:41:34 +02:00
|
|
|
}
|