2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 17:15:06 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn adds_row_data_if_column_missing() {
|
2023-11-29 23:21:34 +01:00
|
|
|
let sample = r#"
|
2019-12-15 17:15:06 +01:00
|
|
|
{
|
|
|
|
"amigos": [
|
|
|
|
{"name": "Yehuda"},
|
2023-03-15 06:54:55 +01:00
|
|
|
{"name": "JT", "rusty_luck": 0},
|
2019-12-15 17:15:06 +01:00
|
|
|
{"name": "Andres", "rusty_luck": 0},
|
|
|
|
{"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}
|
2019-12-15 17:15:06 +01:00
|
|
|
| get amigos
|
2023-01-02 23:45:43 +01:00
|
|
|
| default 1 rusty_luck
|
2019-12-15 17:15:06 +01:00
|
|
|
| where rusty_luck == 1
|
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, "2");
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|
2023-09-06 10:39:35 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn default_after_empty_filter() {
|
2024-04-13 16:58:54 +02: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");
|
|
|
|
}
|