2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::{nu, 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",
|
|
|
|
"ls | where size > 1kb | sort-by size | get name | first 1 | trim | echo $it"
|
|
|
|
);
|
|
|
|
|
2020-01-10 16:44:24 +01:00
|
|
|
assert_eq!(actual, "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",
|
|
|
|
r#"echo '[{"foo": 3}, {"foo": null}, {"foo": 4}]' | from-json | where foo > 1 | get foo | sum | echo $it"#
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual, "7");
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
| where table_name == ints
|
|
|
|
| get table_values
|
|
|
|
| first 4
|
|
|
|
| where z > 4200
|
|
|
|
| get z
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual, "4253");
|
|
|
|
|
|
|
|
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
|
|
|
|
| where table_name == ints
|
|
|
|
| get table_values
|
|
|
|
| first 4
|
|
|
|
| where z >= 4253
|
|
|
|
| get z
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual, "4253");
|
|
|
|
|
|
|
|
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
|
|
|
|
| where table_name == ints
|
|
|
|
| get table_values
|
|
|
|
| first 4
|
|
|
|
| where z < 10
|
|
|
|
| get z
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual, "1");
|
|
|
|
|
|
|
|
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
|
|
|
|
| where table_name == ints
|
|
|
|
| get table_values
|
|
|
|
| first 4
|
|
|
|
| where z <= 1
|
|
|
|
| get z
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual, "1");
|
|
|
|
|
|
|
|
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
|
|
|
|
| where table_name == ints
|
|
|
|
| get table_values
|
|
|
|
| where z != 1
|
|
|
|
| first 1
|
|
|
|
| get z
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual, "42");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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
|
|
|
|
| where table_name == strings
|
|
|
|
| get table_values
|
|
|
|
| where x =~ ell
|
|
|
|
| count
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual, "4");
|
|
|
|
|
|
|
|
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
|
|
|
|
| where table_name == strings
|
|
|
|
| get table_values
|
|
|
|
| where x !~ ell
|
|
|
|
| count
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual, "2");
|
|
|
|
}
|