2019-12-18 07:54:39 +13:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 11:15:06 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn adds_row_data_if_column_missing() {
|
2023-11-29 19:21:34 -03:00
|
|
|
let sample = r#"
|
2019-12-15 11:15:06 -05:00
|
|
|
{
|
|
|
|
"amigos": [
|
|
|
|
{"name": "Yehuda"},
|
2023-03-15 18:54:55 +13:00
|
|
|
{"name": "JT", "rusty_luck": 0},
|
2019-12-15 11:15:06 -05:00
|
|
|
{"name": "Andres", "rusty_luck": 0},
|
|
|
|
{"name":"GorbyPuff"}
|
|
|
|
]
|
|
|
|
}
|
2023-11-29 19:21:34 -03:00
|
|
|
"#;
|
2019-12-15 11:15:06 -05:00
|
|
|
|
2023-11-29 19:21:34 -03:00
|
|
|
let actual = nu!(pipeline(&format!(
|
|
|
|
"
|
|
|
|
{sample}
|
2019-12-15 11:15:06 -05:00
|
|
|
| get amigos
|
2023-01-03 08:45:43 +10:00
|
|
|
| default 1 rusty_luck
|
2019-12-15 11:15:06 -05:00
|
|
|
| where rusty_luck == 1
|
2021-03-13 16:46:40 -05:00
|
|
|
| length
|
2023-04-07 22:09:55 +01:00
|
|
|
"
|
2023-11-29 19:21:34 -03:00
|
|
|
)));
|
2019-12-15 11:15:06 -05:00
|
|
|
|
2023-11-29 19:21:34 -03:00
|
|
|
assert_eq!(actual.out, "2");
|
2019-12-15 11:15:06 -05:00
|
|
|
}
|
2023-09-06 10:39:35 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn default_after_empty_filter() {
|
2024-04-13 14:58:54 +00:00
|
|
|
let actual = nu!("[a b] | where $it == 'c' | get -i 0 | default 'd'");
|
2023-09-06 10:39:35 +02:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "d");
|
|
|
|
}
|
2024-07-16 05:54:24 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn keeps_nulls_in_lists() {
|
|
|
|
let actual = nu!(r#"[null, 2, 3] | default [] | to json -r"#);
|
|
|
|
assert_eq!(actual.out, "[null,2,3]");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn replaces_null() {
|
|
|
|
let actual = nu!(r#"null | default 1"#);
|
|
|
|
assert_eq!(actual.out, "1");
|
|
|
|
}
|