2020-07-18 03:59:23 +02:00
|
|
|
use nu_test_support::nu;
|
2022-11-23 01:58:11 +01:00
|
|
|
#[cfg(feature = "sqlite")]
|
2020-07-18 03:59:23 +02:00
|
|
|
use nu_test_support::pipeline;
|
2019-11-21 18:18:00 +01:00
|
|
|
|
2019-12-15 17:15:06 +01:00
|
|
|
#[test]
|
|
|
|
fn filters_by_unit_size_comparison() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
2022-09-29 00:08:17 +02:00
|
|
|
"ls | where size > 1kib | sort-by size | get name | first | str trim"
|
2019-12-15 17:15:06 +01:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "cargo_sample.toml");
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|
2019-11-21 18:18:00 +01:00
|
|
|
|
2020-03-20 23:02:49 +01:00
|
|
|
#[test]
|
|
|
|
fn filters_with_nothing_comparison() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
2022-10-26 18:36:42 +02:00
|
|
|
r#"'[{"foo": 3}, {"foo": null}, {"foo": 4}]' | from json | get foo | compact | where $it > 1 | math sum"#
|
2020-03-20 23:02:49 +01:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "7");
|
2020-03-20 23:02:49 +01:00
|
|
|
}
|
|
|
|
|
2022-11-09 23:05:15 +01:00
|
|
|
#[test]
|
|
|
|
fn filters_with_0_arity_block() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"[1 2 3 4] | where { $in < 3 } | to nuon"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "[1, 2]");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn filters_with_1_arity_block() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"[1 2 3 6 7 8] | where {|e| $e < 5 } | to nuon"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "[1, 2, 3]");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unique_env_each_iteration() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"[1 2] | where { print ($env.PWD | str ends-with 'formats') | cd '/' | true } | to nuon"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "truetrue[1, 2]");
|
|
|
|
}
|
|
|
|
|
2020-04-26 07:32:17 +02:00
|
|
|
#[test]
|
|
|
|
fn where_in_table() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
2022-10-26 18:36:42 +02:00
|
|
|
r#"'[{"name": "foo", "size": 3}, {"name": "foo", "size": 2}, {"name": "bar", "size": 4}]' | from json | where name in ["foo"] | get size | math sum"#
|
2020-04-26 07:32:17 +02:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "5");
|
2020-04-26 07:32:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn where_not_in_table() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
2022-10-26 18:36:42 +02:00
|
|
|
r#"'[{"name": "foo", "size": 3}, {"name": "foo", "size": 2}, {"name": "bar", "size": 4}]' | from json | where name not-in ["foo"] | get size | math sum"#
|
2020-04-26 07:32:17 +02:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "4");
|
2020-04-26 07:32:17 +02:00
|
|
|
}
|
|
|
|
|
2022-11-21 14:35:11 +01:00
|
|
|
#[test]
|
|
|
|
fn uses_optional_index_argument() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
r#"[7 8 9 10] | where {|el ind| $ind < 2 } | to nuon"#
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "[7, 8]");
|
|
|
|
}
|
|
|
|
|
2022-11-23 01:58:11 +01:00
|
|
|
#[cfg(feature = "sqlite")]
|
2019-11-21 18:18:00 +01:00
|
|
|
#[test]
|
2019-12-15 17:15:06 +01:00
|
|
|
fn binary_operator_comparisons() {
|
2019-11-21 18:18:00 +01:00
|
|
|
let actual = nu!(
|
2019-12-15 17:15:06 +01:00
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
2019-11-21 18:18:00 +01:00
|
|
|
r#"
|
|
|
|
open sample.db
|
2022-04-14 05:15:02 +02:00
|
|
|
| get ints
|
2019-11-21 18:18:00 +01:00
|
|
|
| first 4
|
|
|
|
| where z > 4200
|
2022-04-14 05:15:02 +02:00
|
|
|
| get z.0
|
2019-11-21 18:18:00 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "4253");
|
2019-11-21 18:18:00 +01:00
|
|
|
|
|
|
|
let actual = nu!(
|
2019-12-15 17:15:06 +01:00
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
2019-11-21 18:18:00 +01:00
|
|
|
r#"
|
|
|
|
open sample.db
|
2022-04-14 05:15:02 +02:00
|
|
|
| get ints
|
2019-11-21 18:18:00 +01:00
|
|
|
| first 4
|
|
|
|
| where z >= 4253
|
2022-04-14 05:15:02 +02:00
|
|
|
| get z.0
|
2019-11-21 18:18:00 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "4253");
|
2019-11-21 18:18:00 +01:00
|
|
|
|
|
|
|
let actual = nu!(
|
2019-12-15 17:15:06 +01:00
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
2019-11-21 18:18:00 +01:00
|
|
|
r#"
|
|
|
|
open sample.db
|
2022-04-14 05:15:02 +02:00
|
|
|
| get ints
|
2019-11-21 18:18:00 +01:00
|
|
|
| first 4
|
|
|
|
| where z < 10
|
2022-04-14 05:15:02 +02:00
|
|
|
| get z.0
|
2019-11-21 18:18:00 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "1");
|
2019-11-21 18:18:00 +01:00
|
|
|
|
|
|
|
let actual = nu!(
|
2019-12-15 17:15:06 +01:00
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
2019-11-21 18:18:00 +01:00
|
|
|
r#"
|
|
|
|
open sample.db
|
2022-04-14 05:15:02 +02:00
|
|
|
| get ints
|
2019-11-21 18:18:00 +01:00
|
|
|
| first 4
|
|
|
|
| where z <= 1
|
2022-04-14 05:15:02 +02:00
|
|
|
| get z.0
|
2019-11-21 18:18:00 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "1");
|
2019-11-21 18:18:00 +01:00
|
|
|
|
|
|
|
let actual = nu!(
|
2019-12-15 17:15:06 +01:00
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
2019-11-21 18:18:00 +01:00
|
|
|
r#"
|
|
|
|
open sample.db
|
2022-04-14 05:15:02 +02:00
|
|
|
| get ints
|
2019-11-21 18:18:00 +01:00
|
|
|
| where z != 1
|
2022-09-29 00:08:17 +02:00
|
|
|
| first
|
2019-11-21 18:18:00 +01:00
|
|
|
| get z
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "42");
|
2019-11-21 18:18:00 +01:00
|
|
|
}
|
|
|
|
|
2022-11-23 01:58:11 +01:00
|
|
|
#[cfg(feature = "sqlite")]
|
2019-11-21 18:18:00 +01:00
|
|
|
#[test]
|
2019-12-15 17:15:06 +01:00
|
|
|
fn contains_operator() {
|
2019-11-21 18:18:00 +01:00
|
|
|
let actual = nu!(
|
2019-12-15 17:15:06 +01:00
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
2019-11-21 18:18:00 +01:00
|
|
|
r#"
|
|
|
|
open sample.db
|
2022-04-14 05:15:02 +02:00
|
|
|
| get strings
|
2019-11-21 18:18:00 +01:00
|
|
|
| where x =~ ell
|
2021-03-13 22:46:40 +01:00
|
|
|
| length
|
2019-11-21 18:18:00 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "4");
|
2019-11-21 18:18:00 +01:00
|
|
|
|
|
|
|
let actual = nu!(
|
2019-12-15 17:15:06 +01:00
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
2019-11-21 18:18:00 +01:00
|
|
|
r#"
|
|
|
|
open sample.db
|
2022-04-14 05:15:02 +02:00
|
|
|
| get strings
|
2019-11-21 18:18:00 +01:00
|
|
|
| where x !~ ell
|
2021-03-13 22:46:40 +01:00
|
|
|
| length
|
2019-11-21 18:18:00 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "2");
|
2019-11-21 18:18:00 +01:00
|
|
|
}
|