2022-02-09 15:59:40 +01:00
|
|
|
use nu_test_support::fs::Stub::{EmptyFile, FileWithContentToBeTrimmed};
|
2020-01-10 16:44:24 +01:00
|
|
|
use nu_test_support::playground::Playground;
|
2020-01-11 07:45:09 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2020-01-10 16:44:24 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-01-11 07:45:09 +01:00
|
|
|
fn regular_columns() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!(pipeline(
|
2021-02-06 01:34:26 +01:00
|
|
|
r#"
|
|
|
|
echo [
|
|
|
|
[first_name, last_name, rusty_at, type];
|
2020-01-10 16:44:24 +01:00
|
|
|
|
Require that values that look like numbers parse as numberlike (#8635)
# Description
Require that any value that looks like it might be a number (starts with
a digit, or a '-' + digit, or a '+' + digits, or a special form float
like `-inf`, `inf`, or `NaN`) must now be treated as a number-like
value. Number-like syntax can only parse into number-like values.
Number-like values include: durations, ints, floats, ranges, filesizes,
binary data, etc.
# User-Facing Changes
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
Just making sure we see this for release notes 😅
This breaks any and all numberlike values that were treated as strings
before. Example, we used to allow `3,` as a bare word. Anything like
this would now require quotes or backticks to be treated as a string or
bare word, respectively.
# 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
> **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
> ```
# 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.
2023-03-28 08:31:38 +02:00
|
|
|
[Andrés Robalino '10/11/2013' A]
|
|
|
|
[JT Turner '10/12/2013' B]
|
|
|
|
[Yehuda Katz '10/11/2013' A]
|
2021-02-06 01:34:26 +01:00
|
|
|
]
|
|
|
|
| select rusty_at last_name
|
2022-02-09 11:58:54 +01:00
|
|
|
| get 0
|
2021-02-06 01:34:26 +01:00
|
|
|
| get last_name
|
|
|
|
"#
|
|
|
|
));
|
2020-01-10 16:44:24 +01:00
|
|
|
|
2021-02-06 01:34:26 +01:00
|
|
|
assert_eq!(actual.out, "Robalino");
|
2020-01-10 16:44:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-01-11 07:45:09 +01:00
|
|
|
fn complex_nested_columns() {
|
2020-05-07 13:03:43 +02:00
|
|
|
Playground::setup("select_test_2", |dirs, sandbox| {
|
2020-01-10 16:44:24 +01:00
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
2020-01-11 07:45:09 +01:00
|
|
|
"los_tres_caballeros.json",
|
2020-01-10 16:44:24 +01:00
|
|
|
r#"
|
2020-01-11 07:45:09 +01:00
|
|
|
{
|
|
|
|
"nu": {
|
|
|
|
"committers": [
|
|
|
|
{"name": "Andrés N. Robalino"},
|
2023-03-15 06:54:55 +01:00
|
|
|
{"name": "JT Turner"},
|
2020-01-11 07:45:09 +01:00
|
|
|
{"name": "Yehuda Katz"}
|
|
|
|
],
|
|
|
|
"releases": [
|
|
|
|
{"version": "0.2"}
|
|
|
|
{"version": "0.8"},
|
|
|
|
{"version": "0.9999999"}
|
|
|
|
],
|
|
|
|
"0xATYKARNU": [
|
|
|
|
["Th", "e", " "],
|
|
|
|
["BIG", " ", "UnO"],
|
|
|
|
["punto", "cero"]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2020-01-10 16:44:24 +01:00
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
2020-01-11 07:45:09 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
|
|
|
r#"
|
|
|
|
open los_tres_caballeros.json
|
2020-05-07 13:03:43 +02:00
|
|
|
| select nu."0xATYKARNU" nu.committers.name nu.releases.version
|
2021-02-07 02:05:47 +01:00
|
|
|
| get nu_releases_version
|
2022-05-18 13:20:26 +02:00
|
|
|
| where $it > "0.8"
|
|
|
|
| get 0
|
2020-01-11 07:45:09 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.9999999");
|
2020-01-11 07:45:09 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2022-04-21 13:13:58 +02:00
|
|
|
fn fails_if_given_unknown_column_name() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!(pipeline(
|
2021-02-06 01:34:26 +01:00
|
|
|
r#"
|
|
|
|
echo [
|
|
|
|
[first_name, last_name, rusty_at, type];
|
2020-01-11 07:45:09 +01:00
|
|
|
|
Require that values that look like numbers parse as numberlike (#8635)
# Description
Require that any value that looks like it might be a number (starts with
a digit, or a '-' + digit, or a '+' + digits, or a special form float
like `-inf`, `inf`, or `NaN`) must now be treated as a number-like
value. Number-like syntax can only parse into number-like values.
Number-like values include: durations, ints, floats, ranges, filesizes,
binary data, etc.
# User-Facing Changes
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
BREAKING CHANGE
Just making sure we see this for release notes 😅
This breaks any and all numberlike values that were treated as strings
before. Example, we used to allow `3,` as a bare word. Anything like
this would now require quotes or backticks to be treated as a string or
bare word, respectively.
# 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
> **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
> ```
# 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.
2023-03-28 08:31:38 +02:00
|
|
|
[Andrés Robalino '10/11/2013' A]
|
|
|
|
[JT Turner '10/12/2013' B]
|
|
|
|
[Yehuda Katz '10/11/2013' A]
|
2021-02-06 01:34:26 +01:00
|
|
|
]
|
|
|
|
| select rrusty_at first_name
|
2021-03-13 22:46:40 +01:00
|
|
|
| length
|
2021-02-06 01:34:26 +01:00
|
|
|
"#
|
|
|
|
));
|
2020-01-10 16:44:24 +01:00
|
|
|
|
2022-04-21 13:13:58 +02:00
|
|
|
assert!(actual.err.contains("nu::shell::name_not_found"));
|
2020-01-10 16:44:24 +01:00
|
|
|
}
|
2020-09-29 23:00:07 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn column_names_with_spaces() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!(pipeline(
|
2021-02-06 01:34:26 +01:00
|
|
|
r#"
|
|
|
|
echo [
|
|
|
|
["first name", "last name"];
|
2020-09-29 23:00:07 +02:00
|
|
|
|
2021-02-06 01:34:26 +01:00
|
|
|
[Andrés Robalino]
|
|
|
|
[Andrés Jnth]
|
|
|
|
]
|
|
|
|
| select "last name"
|
|
|
|
| get "last name"
|
2022-09-11 10:48:27 +02:00
|
|
|
| str join " "
|
2021-02-06 01:34:26 +01:00
|
|
|
"#
|
|
|
|
));
|
2020-09-29 23:00:07 +02:00
|
|
|
|
2021-02-06 01:34:26 +01:00
|
|
|
assert_eq!(actual.out, "Robalino Jnth");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ignores_duplicate_columns_selected() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!(pipeline(
|
2021-02-06 01:34:26 +01:00
|
|
|
r#"
|
|
|
|
echo [
|
|
|
|
["first name", "last name"];
|
|
|
|
|
|
|
|
[Andrés Robalino]
|
|
|
|
[Andrés Jnth]
|
|
|
|
]
|
|
|
|
| select "first name" "last name" "first name"
|
2022-02-22 17:32:29 +01:00
|
|
|
| columns
|
2022-09-11 10:48:27 +02:00
|
|
|
| str join " "
|
2021-02-06 01:34:26 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "first name last name");
|
2020-09-29 23:00:07 +02:00
|
|
|
}
|
2022-02-09 15:59:40 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn selects_a_row() {
|
|
|
|
Playground::setup("select_test_1", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![EmptyFile("notes.txt"), EmptyFile("arepas.txt")]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2022-02-09 15:59:40 +01:00
|
|
|
ls
|
|
|
|
| sort-by name
|
|
|
|
| select 0
|
|
|
|
| get name.0
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2022-02-09 15:59:40 +01:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "arepas.txt");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn selects_many_rows() {
|
|
|
|
Playground::setup("select_test_2", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![EmptyFile("notes.txt"), EmptyFile("arepas.txt")]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2022-02-09 15:59:40 +01:00
|
|
|
ls
|
|
|
|
| get name
|
|
|
|
| select 1 0
|
|
|
|
| length
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2022-02-09 15:59:40 +01:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "2");
|
|
|
|
});
|
|
|
|
}
|
2022-09-13 15:17:16 +02:00
|
|
|
|
|
|
|
#[test]
|
2023-01-02 23:45:43 +01:00
|
|
|
fn select_ignores_errors_successfully1() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!("[{a: 1, b: 2} {a: 3, b: 5} {a: 3}] | select b? | length");
|
2022-09-13 15:17:16 +02:00
|
|
|
|
2022-12-31 12:19:10 +01:00
|
|
|
assert_eq!(actual.out, "3".to_string());
|
2022-09-13 15:17:16 +02:00
|
|
|
assert!(actual.err.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-01-02 23:45:43 +01:00
|
|
|
fn select_ignores_errors_successfully2() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!("[{a: 1} {a: 2} {a: 3}] | select b? | to nuon");
|
2022-09-13 15:17:16 +02:00
|
|
|
|
2023-01-02 23:45:43 +01:00
|
|
|
assert_eq!(actual.out, "[[b]; [null], [null], [null]]".to_string());
|
2022-09-13 15:17:16 +02:00
|
|
|
assert!(actual.err.is_empty());
|
|
|
|
}
|
2022-11-09 22:57:44 +01:00
|
|
|
|
|
|
|
#[test]
|
2023-01-02 23:45:43 +01:00
|
|
|
fn select_ignores_errors_successfully3() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!("sys | select invalid_key? | to nuon");
|
2022-11-09 22:57:44 +01:00
|
|
|
|
2023-01-02 23:45:43 +01:00
|
|
|
assert_eq!(actual.out, "{invalid_key: null}".to_string());
|
2022-11-09 22:57:44 +01:00
|
|
|
assert!(actual.err.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-01-02 23:45:43 +01:00
|
|
|
fn select_ignores_errors_successfully4() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual =
|
|
|
|
nu!(r#""key val\na 1\nb 2\n" | lines | split column -c " " | select foo? | to nuon"#);
|
2022-11-09 22:57:44 +01:00
|
|
|
|
2023-03-16 04:50:58 +01:00
|
|
|
assert_eq!(actual.out, r#"[[foo]; [null], [null], [null]]"#.to_string());
|
2022-11-09 22:57:44 +01:00
|
|
|
assert!(actual.err.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_failed1() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!("[{a: 1, b: 2} {a: 3, b: 5} {a: 3}] | select b ");
|
2022-11-09 22:57:44 +01:00
|
|
|
|
|
|
|
assert!(actual.out.is_empty());
|
|
|
|
assert!(actual.err.contains("cannot find column"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_failed2() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!("[{a: 1} {a: 2} {a: 3}] | select b");
|
2022-11-09 22:57:44 +01:00
|
|
|
|
|
|
|
assert!(actual.out.is_empty());
|
|
|
|
assert!(actual.err.contains("cannot find column"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_failed3() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!(r#""key val\na 1\nb 2\n" | lines | split column -c " " | select "100""#);
|
2022-11-09 22:57:44 +01:00
|
|
|
|
|
|
|
assert!(actual.out.is_empty());
|
|
|
|
assert!(actual.err.contains("cannot find column"));
|
|
|
|
}
|
2023-02-27 03:14:15 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_failed4() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!("[{a: 1 b: 10}, {a:2, b:11}] | select 0 0");
|
2023-02-27 03:14:15 +01:00
|
|
|
|
|
|
|
assert!(actual.err.contains("Select can't get the same row twice"));
|
|
|
|
}
|
2023-03-16 19:50:04 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ignore_errors_works() {
|
2023-03-28 21:40:29 +02:00
|
|
|
let actual = nu!(r#"
|
2023-03-16 19:50:04 +01:00
|
|
|
let path = "foo";
|
|
|
|
[{}] | select -i $path | to nuon
|
2023-03-28 21:40:29 +02:00
|
|
|
"#);
|
2023-03-16 19:50:04 +01:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "[[foo]; [null]]");
|
|
|
|
}
|
2023-03-28 21:40:29 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_on_empty_list_returns_empty_list() {
|
|
|
|
// once with a List
|
|
|
|
let actual = nu!("[] | select foo | to nuon");
|
|
|
|
assert_eq!(actual.out, "[]");
|
|
|
|
|
|
|
|
// and again with a ListStream
|
|
|
|
let actual = nu!("[] | each {|i| $i} | select foo | to nuon");
|
|
|
|
assert_eq!(actual.out, "[]");
|
|
|
|
}
|