2020-03-03 22:01:24 +01:00
|
|
|
use nu_test_support::fs::Stub::FileWithContentToBeTrimmed;
|
|
|
|
use nu_test_support::playground::Playground;
|
2020-05-07 13:03:43 +02:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2020-03-03 22:01:24 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn changes_the_column_name() {
|
|
|
|
Playground::setup("rename_test_1", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"los_cuatro_mosqueteros.txt",
|
|
|
|
r#"
|
|
|
|
Andrés N. Robalino
|
2023-03-15 06:54:55 +01:00
|
|
|
JT Turner
|
2020-03-03 22:01:24 +01:00
|
|
|
Yehuda Katz
|
|
|
|
Jason Gedge
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2020-03-03 22:01:24 +01:00
|
|
|
open los_cuatro_mosqueteros.txt
|
|
|
|
| lines
|
|
|
|
| wrap name
|
|
|
|
| rename mosqueteros
|
|
|
|
| get mosqueteros
|
2021-03-13 22:46:40 +01:00
|
|
|
| length
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2020-03-03 22:01:24 +01:00
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "4");
|
2020-03-03 22:01:24 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn keeps_remaining_original_names_given_less_new_names_than_total_original_names() {
|
|
|
|
Playground::setup("rename_test_2", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"los_cuatro_mosqueteros.txt",
|
|
|
|
r#"
|
|
|
|
Andrés N. Robalino
|
2023-03-15 06:54:55 +01:00
|
|
|
JT Turner
|
2020-03-03 22:01:24 +01:00
|
|
|
Yehuda Katz
|
|
|
|
Jason Gedge
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
|
|
|
r#"
|
|
|
|
open los_cuatro_mosqueteros.txt
|
|
|
|
| lines
|
|
|
|
| wrap name
|
2022-03-09 14:46:28 +01:00
|
|
|
| default "arepa!" hit
|
2020-03-03 22:01:24 +01:00
|
|
|
| rename mosqueteros
|
|
|
|
| get hit
|
2021-03-13 22:46:40 +01:00
|
|
|
| length
|
2020-03-03 22:01:24 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "4");
|
2020-03-03 22:01:24 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn errors_if_no_columns_present() {
|
|
|
|
Playground::setup("rename_test_3", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"los_cuatro_mosqueteros.txt",
|
|
|
|
r#"
|
|
|
|
Andrés N. Robalino
|
2023-03-15 06:54:55 +01:00
|
|
|
JT Turner
|
2020-03-03 22:01:24 +01:00
|
|
|
Yehuda Katz
|
|
|
|
Jason Gedge
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
let actual = nu!(
|
2020-03-03 22:01:24 +01:00
|
|
|
cwd: dirs.test(), pipeline(
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2020-03-03 22:01:24 +01:00
|
|
|
open los_cuatro_mosqueteros.txt
|
|
|
|
| lines
|
|
|
|
| rename mosqueteros
|
2023-07-21 17:32:37 +02:00
|
|
|
"
|
2020-03-03 22:01:24 +01:00
|
|
|
));
|
|
|
|
|
2023-07-14 05:20:35 +02:00
|
|
|
assert!(actual.err.contains("command doesn't support"));
|
2020-03-03 22:01:24 +01:00
|
|
|
})
|
|
|
|
}
|
2023-02-15 22:47:27 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn errors_if_columns_param_is_empty() {
|
|
|
|
Playground::setup("rename_test_4", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"los_cuatro_mosqueteros.txt",
|
|
|
|
r#"
|
|
|
|
Andrés N. Robalino
|
2023-03-15 06:54:55 +01:00
|
|
|
JT Turner
|
2023-02-15 22:47:27 +01:00
|
|
|
Yehuda Katz
|
|
|
|
Jason Gedge
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
|
|
|
r#"
|
|
|
|
open los_cuatro_mosqueteros.txt
|
|
|
|
| lines
|
|
|
|
| wrap name
|
|
|
|
| default "arepa!" hit
|
|
|
|
| rename -c []
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.err.contains("The column list cannot be empty"));
|
|
|
|
})
|
|
|
|
}
|