2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 17:15:06 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn by_column() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml --raw
|
|
|
|
| lines
|
|
|
|
| skip 1
|
|
|
|
| first 4
|
2020-05-24 08:41:30 +02:00
|
|
|
| split column "="
|
2022-02-20 01:26:47 +01:00
|
|
|
| sort-by column1
|
2019-12-15 17:15:06 +01:00
|
|
|
| skip 1
|
2022-09-29 00:08:17 +02:00
|
|
|
| first
|
2022-02-20 01:26:47 +01:00
|
|
|
| get column1
|
2020-09-16 21:59:32 +02:00
|
|
|
| str trim
|
2019-12-15 17:15:06 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "description");
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|
2020-01-19 20:08:37 +01:00
|
|
|
|
2020-05-24 19:37:08 +02:00
|
|
|
#[test]
|
|
|
|
fn by_invalid_column() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml --raw
|
|
|
|
| lines
|
|
|
|
| skip 1
|
|
|
|
| first 4
|
|
|
|
| split column "="
|
|
|
|
| sort-by ColumnThatDoesNotExist
|
|
|
|
| skip 1
|
2022-09-29 00:08:17 +02:00
|
|
|
| first
|
2022-02-20 01:26:47 +01:00
|
|
|
| get column1
|
2020-09-16 21:59:32 +02:00
|
|
|
| str trim
|
2020-05-24 19:37:08 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2022-02-22 17:32:29 +01:00
|
|
|
assert!(actual.err.contains("Cannot find column"));
|
|
|
|
assert!(actual.err.contains("value originates here"));
|
2020-05-24 19:37:08 +02:00
|
|
|
}
|
|
|
|
|
2020-07-20 19:31:58 +02:00
|
|
|
#[test]
|
|
|
|
fn ls_sort_by_name_sensitive() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample-ls-output.json
|
|
|
|
| sort-by name
|
|
|
|
| select name
|
2022-02-04 03:01:45 +01:00
|
|
|
| to json --raw
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2022-02-04 22:51:49 +01:00
|
|
|
let json_output = r#"[{"name": "B.txt"},{"name": "C"},{"name": "a.txt"}]"#;
|
2020-07-20 19:31:58 +02:00
|
|
|
|
|
|
|
assert_eq!(actual.out, json_output);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ls_sort_by_name_insensitive() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample-ls-output.json
|
|
|
|
| sort-by -i name
|
|
|
|
| select name
|
2022-02-04 03:01:45 +01:00
|
|
|
| to json --raw
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2022-02-13 03:48:50 +01:00
|
|
|
let json_output = r#"[{"name": "a.txt"},{"name": "B.txt"},{"name": "C"}]"#;
|
2020-07-20 19:31:58 +02:00
|
|
|
assert_eq!(actual.out, json_output);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ls_sort_by_type_name_sensitive() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample-ls-output.json
|
|
|
|
| sort-by type name
|
|
|
|
| select name type
|
2022-02-04 03:01:45 +01:00
|
|
|
| to json --raw
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2022-02-16 17:12:49 +01:00
|
|
|
let json_output = r#"[{"name": "C","type": "Dir"},{"name": "B.txt","type": "File"},{"name": "a.txt","type": "File"}]"#;
|
2020-07-20 19:31:58 +02:00
|
|
|
assert_eq!(actual.out, json_output);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ls_sort_by_type_name_insensitive() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample-ls-output.json
|
|
|
|
| sort-by -i type name
|
|
|
|
| select name type
|
2022-02-04 03:01:45 +01:00
|
|
|
| to json --raw
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2022-02-04 22:51:49 +01:00
|
|
|
let json_output = r#"[{"name": "C","type": "Dir"},{"name": "a.txt","type": "File"},{"name": "B.txt","type": "File"}]"#;
|
2020-07-20 19:31:58 +02:00
|
|
|
assert_eq!(actual.out, json_output);
|
|
|
|
}
|
2022-02-16 20:30:37 +01:00
|
|
|
|
|
|
|
#[test]
|
2022-11-09 23:16:51 +01:00
|
|
|
fn no_column_specified_fails() {
|
2022-02-16 20:30:37 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
2022-11-09 23:16:51 +01:00
|
|
|
[2 0 1] | sort-by
|
2022-02-16 20:30:37 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2022-11-09 23:16:51 +01:00
|
|
|
assert!(actual.err.contains("missing parameter"));
|
2022-02-16 20:30:37 +01:00
|
|
|
}
|