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
|
|
|
|
| first 1
|
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
|
|
|
|
| first 1
|
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-08-17 20:57:29 +02:00
|
|
|
#[test]
|
|
|
|
fn by_invalid_types() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml --raw
|
2022-02-22 17:32:29 +01:00
|
|
|
| echo ["foo" 1]
|
2020-08-17 20:57:29 +02:00
|
|
|
| sort-by
|
2022-03-18 18:35:28 +01:00
|
|
|
| to json -r
|
2020-08-17 20:57:29 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2022-02-22 17:32:29 +01:00
|
|
|
let json_output = r#"[1,"foo"]"#;
|
|
|
|
assert_eq!(actual.out, json_output);
|
2020-08-17 20:57:29 +02:00
|
|
|
}
|
|
|
|
|
2020-01-19 20:08:37 +01:00
|
|
|
#[test]
|
|
|
|
fn sort_primitive_values() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml --raw
|
|
|
|
| lines
|
|
|
|
| skip 1
|
|
|
|
| first 6
|
|
|
|
| sort-by
|
|
|
|
| first 1
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2022-03-13 19:30:27 +01:00
|
|
|
assert_eq!(actual.out, "authors = [\"The Nushell Project Developers\"]");
|
2020-01-19 20:08:37 +01: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]
|
|
|
|
fn sort_different_types() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
[a, 1, b, 2, c, 3, [4, 5, 6], d, 4, [1, 2, 3]] | sort-by | to json --raw
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
let json_output = r#"[1,2,3,4,"a","b","c","d",[1,2,3],[4,5,6]]"#;
|
|
|
|
assert_eq!(actual.out, json_output);
|
|
|
|
}
|