2020-04-30 06:18:24 +02:00
|
|
|
use nu_test_support::fs::Stub::FileWithContentToBeTrimmed;
|
|
|
|
use nu_test_support::playground::Playground;
|
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn condition_is_met() {
|
2022-04-07 22:49:28 +02:00
|
|
|
Playground::setup("take_until_test_1", |dirs, sandbox| {
|
2020-04-30 06:18:24 +02:00
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"caballeros.txt",
|
|
|
|
r#"
|
|
|
|
CHICKEN SUMMARY report date: April 29th, 2020
|
|
|
|
--------------------------------------------------------------------
|
2022-02-04 03:01:45 +01:00
|
|
|
Chicken Collection,29/04/2020,30/04/2020,31/04/2020
|
2020-04-30 06:18:24 +02:00
|
|
|
Yellow Chickens,,,
|
|
|
|
Andrés,1,1,1
|
2023-03-15 06:54:55 +01:00
|
|
|
JT,1,1,1
|
2020-04-30 06:18:24 +02:00
|
|
|
Jason,1,1,1
|
|
|
|
Yehuda,1,1,1
|
|
|
|
Blue Chickens,,,
|
|
|
|
Andrés,1,1,2
|
2023-03-15 06:54:55 +01:00
|
|
|
JT,1,1,2
|
2020-04-30 06:18:24 +02:00
|
|
|
Jason,1,1,2
|
|
|
|
Yehuda,1,1,2
|
|
|
|
Red Chickens,,,
|
|
|
|
Andrés,1,1,3
|
2023-03-15 06:54:55 +01:00
|
|
|
JT,1,1,3
|
2020-04-30 06:18:24 +02:00
|
|
|
Jason,1,1,3
|
|
|
|
Yehuda,1,1,3
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
|
|
|
r#"
|
|
|
|
open --raw caballeros.txt
|
2022-02-21 14:38:15 +01:00
|
|
|
| lines
|
|
|
|
| skip 2
|
2022-02-04 03:01:45 +01:00
|
|
|
| str trim
|
2022-09-11 10:48:27 +02:00
|
|
|
| str join (char nl)
|
2022-02-04 03:01:45 +01:00
|
|
|
| from csv
|
2022-12-10 18:24:06 +01:00
|
|
|
| skip while {|row| $row."Chicken Collection" != "Blue Chickens" }
|
|
|
|
| take until {|row| $row."Chicken Collection" == "Red Chickens" }
|
2022-02-04 03:01:45 +01:00
|
|
|
| skip 1
|
|
|
|
| into int "31/04/2020"
|
2020-04-30 06:18:24 +02:00
|
|
|
| get "31/04/2020"
|
2020-06-19 04:02:01 +02:00
|
|
|
| math sum
|
2020-04-30 06:18:24 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "8");
|
2020-04-30 06:18:24 +02:00
|
|
|
})
|
|
|
|
}
|
last, skip, drop, take until, take while, skip until, skip while, where, reverse, shuffle, append, prepend and sort-by raise error when given non-lists (#7623)
Closes https://github.com/nushell/nushell/issues/6941
2022-12-31 12:35:12 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn fail_on_non_iterator() {
|
|
|
|
let actual = nu!(cwd: ".", pipeline("1 | take until {|row| $row == 2}"));
|
|
|
|
|
|
|
|
assert!(actual.err.contains("only_supports_this_input_type"));
|
|
|
|
}
|