2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::fs::Stub::FileWithContentToBeTrimmed;
|
|
|
|
use nu_test_support::playground::Playground;
|
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 17:15:06 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn wrap_rows_into_a_row() {
|
2020-03-19 00:46:00 +01:00
|
|
|
Playground::setup("wrap_test_1", |dirs, sandbox| {
|
2019-12-15 17:15:06 +01:00
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"los_tres_caballeros.txt",
|
|
|
|
r#"
|
|
|
|
first_name,last_name
|
|
|
|
Andrés,Robalino
|
2023-03-15 06:54:55 +01:00
|
|
|
JT,Turner
|
2019-12-15 17:15:06 +01:00
|
|
|
Yehuda,Katz
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2019-12-15 17:15:06 +01:00
|
|
|
open los_tres_caballeros.txt
|
2020-05-04 10:44:33 +02:00
|
|
|
| from csv
|
2019-12-15 17:15:06 +01:00
|
|
|
| wrap caballeros
|
|
|
|
| get caballeros
|
2022-02-09 11:58:54 +01:00
|
|
|
| get 0
|
2019-12-15 17:15:06 +01:00
|
|
|
| get last_name
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2019-12-15 17:15:06 +01:00
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "Robalino");
|
2019-12-15 17:15:06 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn wrap_rows_into_a_table() {
|
2020-03-19 00:46:00 +01:00
|
|
|
Playground::setup("wrap_test_2", |dirs, sandbox| {
|
2019-12-15 17:15:06 +01:00
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"los_tres_caballeros.txt",
|
|
|
|
r#"
|
|
|
|
first_name,last_name
|
|
|
|
Andrés,Robalino
|
2023-03-15 06:54:55 +01:00
|
|
|
JT,Turner
|
2019-12-15 17:15:06 +01:00
|
|
|
Yehuda,Katz
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2019-12-15 17:15:06 +01:00
|
|
|
open los_tres_caballeros.txt
|
2020-05-04 10:44:33 +02:00
|
|
|
| from csv
|
2019-12-15 17:15:06 +01:00
|
|
|
| get last_name
|
|
|
|
| wrap caballero
|
2022-02-09 11:58:54 +01:00
|
|
|
| get 2
|
2019-12-15 17:15:06 +01:00
|
|
|
| get caballero
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2019-12-15 17:15:06 +01:00
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "Katz");
|
2019-12-15 17:15:06 +01:00
|
|
|
})
|
|
|
|
}
|