2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 17:15:06 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn discards_rows_where_given_column_is_empty() {
|
2023-11-29 23:21:34 +01:00
|
|
|
let sample_json = r#"
|
2019-12-15 17:15:06 +01:00
|
|
|
{
|
|
|
|
"amigos": [
|
|
|
|
{"name": "Yehuda", "rusty_luck": 1},
|
2023-03-15 06:54:55 +01:00
|
|
|
{"name": "JT", "rusty_luck": 1},
|
2019-12-15 17:15:06 +01:00
|
|
|
{"name": "Andres", "rusty_luck": 1},
|
|
|
|
{"name":"GorbyPuff"}
|
|
|
|
]
|
|
|
|
}
|
2023-11-29 23:21:34 +01:00
|
|
|
"#;
|
2019-12-15 17:15:06 +01:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
let actual = nu!(pipeline(&format!(
|
|
|
|
"
|
|
|
|
{sample_json}
|
2019-12-15 17:15:06 +01:00
|
|
|
| get amigos
|
|
|
|
| compact rusty_luck
|
2021-03-13 22:46:40 +01:00
|
|
|
| length
|
2023-04-07 23:09:55 +02:00
|
|
|
"
|
2023-11-29 23:21:34 +01:00
|
|
|
)));
|
2019-12-15 17:15:06 +01:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
assert_eq!(actual.out, "3");
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn discards_empty_rows_by_default() {
|
2023-11-29 23:21:34 +01:00
|
|
|
let actual = nu!(pipeline(
|
|
|
|
r#"
|
2019-12-15 17:15:06 +01:00
|
|
|
echo "[1,2,3,14,null]"
|
2020-05-04 10:44:33 +02:00
|
|
|
| from json
|
2019-12-15 17:15:06 +01:00
|
|
|
| compact
|
2021-03-13 22:46:40 +01:00
|
|
|
| length
|
2019-12-15 17:15:06 +01:00
|
|
|
"#
|
2023-11-29 23:21:34 +01:00
|
|
|
));
|
2019-12-15 17:15:06 +01:00
|
|
|
|
2023-11-29 23:21:34 +01:00
|
|
|
assert_eq!(actual.out, "4");
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|