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() {
|
2021-02-06 01:34:26 +01:00
|
|
|
let actual = nu!(cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
echo [
|
|
|
|
[first_name, last_name, rusty_at, type];
|
2020-01-10 16:44:24 +01:00
|
|
|
|
2021-02-06 01:34:26 +01:00
|
|
|
[Andrés Robalino 10/11/2013 A]
|
|
|
|
[Jonathan Turner 10/12/2013 B]
|
|
|
|
[Yehuda Katz 10/11/2013 A]
|
|
|
|
]
|
|
|
|
| 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"},
|
|
|
|
{"name": "Jonathan Turner"},
|
|
|
|
{"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() {
|
2021-02-06 01:34:26 +01:00
|
|
|
let actual = nu!(cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
echo [
|
|
|
|
[first_name, last_name, rusty_at, type];
|
2020-01-11 07:45:09 +01:00
|
|
|
|
2021-02-06 01:34:26 +01:00
|
|
|
[Andrés Robalino 10/11/2013 A]
|
|
|
|
[Jonathan Turner 10/12/2013 B]
|
|
|
|
[Yehuda Katz 10/11/2013 A]
|
|
|
|
]
|
|
|
|
| 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() {
|
2021-02-06 01:34:26 +01:00
|
|
|
let actual = nu!(cwd: ".", pipeline(
|
|
|
|
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() {
|
|
|
|
let actual = nu!(cwd: ".", pipeline(
|
|
|
|
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(
|
|
|
|
r#"
|
|
|
|
ls
|
|
|
|
| sort-by name
|
|
|
|
| select 0
|
|
|
|
| get name.0
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
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(
|
|
|
|
r#"
|
|
|
|
ls
|
|
|
|
| get name
|
|
|
|
| select 1 0
|
|
|
|
| length
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
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() {
|
2022-09-13 15:17:16 +02:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
2022-12-31 12:19:10 +01:00
|
|
|
[{a: 1, b: 2} {a: 3, b: 5} {a: 3}] | select -i 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() {
|
2022-09-13 15:17:16 +02:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
2023-01-02 23:45:43 +01:00
|
|
|
[{a: 1} {a: 2} {a: 3}] | select -i 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() {
|
2022-11-09 22:57:44 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
2023-01-02 23:45:43 +01:00
|
|
|
r#"sys | select -i 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() {
|
2022-11-09 22:57:44 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
2023-01-02 23:45:43 +01:00
|
|
|
r#"[a b c] | select -i 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], [null], [null]]".to_string()
|
|
|
|
);
|
2022-11-09 22:57:44 +01:00
|
|
|
assert!(actual.err.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_ignores_errors_successfully5() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"[a b c] | select -i 0.0"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.out.is_empty());
|
|
|
|
assert!(actual.err.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_ignores_errors_successfully6() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
2023-01-02 23:45:43 +01:00
|
|
|
r#""key val\na 1\nb 2\n" | lines | split column -c " " | select -i "100" | to nuon"#
|
2022-11-09 22:57:44 +01:00
|
|
|
));
|
|
|
|
|
2023-01-02 23:45:43 +01:00
|
|
|
assert_eq!(
|
|
|
|
actual.out,
|
|
|
|
r#"[["100"]; [null], [null], [null]]"#.to_string()
|
|
|
|
);
|
2022-11-09 22:57:44 +01:00
|
|
|
assert!(actual.err.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_failed1() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
[{a: 1, b: 2} {a: 3, b: 5} {a: 3}] | select b
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.out.is_empty());
|
|
|
|
assert!(actual.err.contains("cannot find column"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_failed2() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
[{a: 1} {a: 2} {a: 3}] | select b
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.out.is_empty());
|
|
|
|
assert!(actual.err.contains("cannot find column"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_failed3() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#""key val\na 1\nb 2\n" | lines | split column -c " " | select "100""#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.out.is_empty());
|
|
|
|
assert!(actual.err.contains("cannot find column"));
|
|
|
|
}
|
2023-02-27 03:14:15 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select_failed4() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
[{a: 1 b: 10}, {a:2, b:11}] | select 0 0
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.err.contains("Select can't get the same row twice"));
|
|
|
|
}
|