2020-10-14 11:36:11 +02:00
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn flatten_nested_tables_with_columns() {
|
2023-07-17 18:43:51 +02:00
|
|
|
let actual = nu!(pipeline(
|
2020-10-14 11:36:11 +02:00
|
|
|
r#"
|
2021-05-12 03:01:48 +02:00
|
|
|
echo [[origin, people]; [Ecuador, ('Andres' | wrap name)]]
|
|
|
|
[[origin, people]; [Nu, ('nuno' | wrap name)]]
|
2022-05-21 15:32:51 +02:00
|
|
|
| flatten --all | flatten --all
|
2020-10-14 11:36:11 +02:00
|
|
|
| get name
|
2022-09-11 10:48:27 +02:00
|
|
|
| str join ','
|
2020-10-14 11:36:11 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "Andres,nuno");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn flatten_nested_tables_that_have_many_columns() {
|
2023-07-17 18:43:51 +02:00
|
|
|
let actual = nu!(pipeline(
|
2020-10-14 11:36:11 +02:00
|
|
|
r#"
|
2021-05-12 03:01:48 +02:00
|
|
|
echo [[origin, people]; [Ecuador, (echo [[name, meal]; ['Andres', 'arepa']])]]
|
2022-02-22 17:32:29 +01:00
|
|
|
[[origin, people]; [USA, (echo [[name, meal]; ['Katz', 'nurepa']])]]
|
2022-05-21 15:32:51 +02:00
|
|
|
| flatten --all | flatten --all
|
2020-10-14 11:36:11 +02:00
|
|
|
| get meal
|
2022-09-11 10:48:27 +02:00
|
|
|
| str join ','
|
2020-10-14 11:36:11 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "arepa,nurepa");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn flatten_nested_tables() {
|
2023-07-17 18:43:51 +02:00
|
|
|
let actual = nu!(pipeline(
|
2023-07-21 17:32:37 +02:00
|
|
|
"echo [[Andrés, Nicolás, Robalino]] | flatten | get 1"
|
2020-10-14 11:36:11 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "Nicolás");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-01-02 05:24:32 +01:00
|
|
|
fn flatten_row_column_explicitly() {
|
2023-11-29 23:21:34 +01:00
|
|
|
let sample = r#"
|
2020-10-14 11:36:11 +02:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"people": {
|
|
|
|
"name": "Andres",
|
|
|
|
"meal": "arepa"
|
2020-10-20 12:37:40 +02:00
|
|
|
}
|
2020-10-14 11:36:11 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"people": {
|
|
|
|
"name": "Katz",
|
|
|
|
"meal": "nurepa"
|
2020-10-20 12:37:40 +02:00
|
|
|
}
|
2020-10-14 11:36:11 +02:00
|
|
|
}
|
|
|
|
]
|
2023-11-29 23:21:34 +01:00
|
|
|
"#;
|
2020-10-14 11:36:11 +02:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
let actual = nu!(pipeline(&format!(
|
|
|
|
"{sample} | flatten people --all | where name == Andres | length"
|
|
|
|
)));
|
2020-10-14 11:36:11 +02:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
assert_eq!(actual.out, "1");
|
2020-10-14 11:36:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-10-20 12:37:40 +02:00
|
|
|
fn flatten_row_columns_having_same_column_names_flats_separately() {
|
2023-11-29 23:21:34 +01:00
|
|
|
let sample = r#"
|
2020-10-14 11:36:11 +02:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"people": {
|
|
|
|
"name": "Andres",
|
|
|
|
"meal": "arepa"
|
|
|
|
},
|
2020-10-20 12:37:40 +02:00
|
|
|
"city": [{"name": "Guayaquil"}, {"name": "Samborondón"}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"people": {
|
|
|
|
"name": "Katz",
|
|
|
|
"meal": "nurepa"
|
|
|
|
},
|
|
|
|
"city": [{"name": "Oregon"}, {"name": "Brooklin"}]
|
|
|
|
}
|
|
|
|
]
|
2023-11-29 23:21:34 +01:00
|
|
|
"#;
|
2020-10-20 12:37:40 +02:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
let actual = nu!(pipeline(&format!(
|
|
|
|
"{sample} | flatten --all | flatten people city | get city_name | length"
|
|
|
|
)));
|
2020-10-20 12:37:40 +02:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
assert_eq!(actual.out, "4");
|
2020-10-20 12:37:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-01-02 05:24:32 +01:00
|
|
|
fn flatten_table_columns_explicitly() {
|
2023-11-29 23:21:34 +01:00
|
|
|
let sample = r#"
|
2020-10-20 12:37:40 +02:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"people": {
|
|
|
|
"name": "Andres",
|
|
|
|
"meal": "arepa"
|
|
|
|
},
|
2020-10-14 11:36:11 +02:00
|
|
|
"city": ["Guayaquil", "Samborondón"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"people": {
|
|
|
|
"name": "Katz",
|
|
|
|
"meal": "nurepa"
|
|
|
|
},
|
|
|
|
"city": ["Oregon", "Brooklin"]
|
|
|
|
}
|
|
|
|
]
|
2023-11-29 23:21:34 +01:00
|
|
|
"#;
|
2020-10-14 11:36:11 +02:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
let actual = nu!(pipeline(&format!(
|
|
|
|
"{sample} | flatten city --all | where people.name == Katz | length",
|
|
|
|
)));
|
2020-10-14 11:36:11 +02:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
assert_eq!(actual.out, "2");
|
2020-10-14 11:36:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn flatten_more_than_one_column_that_are_subtables_not_supported() {
|
2023-11-29 23:21:34 +01:00
|
|
|
let sample = r#"
|
2020-10-14 11:36:11 +02:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"people": {
|
|
|
|
"name": "Andres",
|
|
|
|
"meal": "arepa"
|
2020-10-20 12:37:40 +02:00
|
|
|
}
|
2020-10-14 11:36:11 +02:00
|
|
|
"tags": ["carbohydrate", "corn", "maiz"],
|
|
|
|
"city": ["Guayaquil", "Samborondón"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"people": {
|
|
|
|
"name": "Katz",
|
|
|
|
"meal": "nurepa"
|
|
|
|
},
|
|
|
|
"tags": ["carbohydrate", "shell food", "amigos flavor"],
|
|
|
|
"city": ["Oregon", "Brooklin"]
|
|
|
|
}
|
|
|
|
]
|
2023-11-29 23:21:34 +01:00
|
|
|
"#;
|
2020-10-14 11:36:11 +02:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
let actual = nu!(pipeline(&format!("{sample} | flatten tags city --all")));
|
2020-10-14 11:36:11 +02:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
assert!(actual.err.contains("tried flattening"));
|
|
|
|
assert!(actual.err.contains("but is flattened already"));
|
2020-10-14 11:36:11 +02:00
|
|
|
}
|