mirror of
https://github.com/nushell/nushell.git
synced 2024-11-27 02:44:01 +01:00
d06f457b2a
* move commands, futures.rs, script.rs, utils * move over maybe_print_errors * add nu_command crate references to nu_cli * in commands.rs open up to pub mod from pub(crate) * nu-cli, nu-command, and nu tests are now passing * cargo fmt * clean up nu-cli/src/prelude.rs * code cleanup * for some reason lex.rs was not formatted, may be causing my error * remove mod completion from lib.rs which was not being used along with quickcheck macros * add in allow unused imports * comment out one failing external test; comment out one failing internal test * revert commenting out failing tests; something else might be going on; someone with a windows machine should check and see what is going on with these failing windows tests * Update Cargo.toml Extend the optional features to nu-command Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
138 lines
5.0 KiB
Rust
138 lines
5.0 KiB
Rust
use nu_test_support::fs::Stub::FileWithContentToBeTrimmed;
|
|
use nu_test_support::playground::Playground;
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn moves_a_column_before() {
|
|
Playground::setup("move_column_test_1", |dirs, sandbox| {
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
"sample.csv",
|
|
r#"
|
|
column1,column2,column3,...,column98,column99,column100
|
|
-------,-------,-------,---,--------, A ,---------
|
|
-------,-------,-------,---,--------, N ,---------
|
|
-------,-------,-------,---,--------, D ,---------
|
|
-------,-------,-------,---,--------, R ,---------
|
|
-------,-------,-------,---,--------, E ,---------
|
|
-------,-------,-------,---,--------, S ,---------
|
|
"#,
|
|
)]);
|
|
|
|
let actual = nu!(
|
|
cwd: dirs.test(), pipeline(
|
|
r#"
|
|
open sample.csv
|
|
| move column99 --before column1
|
|
| rename chars
|
|
| get chars
|
|
| str trim
|
|
| str collect
|
|
"#
|
|
));
|
|
|
|
assert!(actual.out.contains("ANDRES"));
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn moves_columns_before() {
|
|
Playground::setup("move_column_test_2", |dirs, sandbox| {
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
"sample.csv",
|
|
r#"
|
|
column1,column2,column3,...,column98,column99,column100
|
|
-------,-------, A ,---,--------, N ,---------
|
|
-------,-------, D ,---,--------, R ,---------
|
|
-------,-------, E ,---,--------, S ,---------
|
|
-------,-------, : ,---,--------, : ,---------
|
|
-------,-------, J ,---,--------, O ,---------
|
|
-------,-------, N ,---,--------, A ,---------
|
|
-------,-------, T ,---,--------, H ,---------
|
|
-------,-------, A ,---,--------, N ,---------
|
|
"#,
|
|
)]);
|
|
|
|
let actual = nu!(
|
|
cwd: dirs.test(), pipeline(
|
|
r#"
|
|
open sample.csv
|
|
| move column99 column3 --before column2
|
|
| rename _ chars_1 chars_2
|
|
| get chars_2 chars_1
|
|
| str trim
|
|
| str collect
|
|
"#
|
|
));
|
|
|
|
assert!(actual.out.contains("ANDRES::JONATHAN"));
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn moves_a_column_after() {
|
|
Playground::setup("move_column_test_3", |dirs, sandbox| {
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
"sample.csv",
|
|
r#"
|
|
column1,column2,letters,...,column98,and_more,column100
|
|
-------,-------, A ,---,--------, N ,---------
|
|
-------,-------, D ,---,--------, R ,---------
|
|
-------,-------, E ,---,--------, S ,---------
|
|
-------,-------, : ,---,--------, : ,---------
|
|
-------,-------, J ,---,--------, O ,---------
|
|
-------,-------, N ,---,--------, A ,---------
|
|
-------,-------, T ,---,--------, H ,---------
|
|
-------,-------, A ,---,--------, N ,---------
|
|
"#,
|
|
)]);
|
|
|
|
let actual = nu!(
|
|
cwd: dirs.test(), pipeline(
|
|
r#"
|
|
open sample.csv
|
|
| move letters --after and_more
|
|
| move letters and_more --before column2
|
|
| rename _ chars_1 chars_2
|
|
| get chars_1 chars_2
|
|
| str trim
|
|
| str collect
|
|
"#
|
|
));
|
|
|
|
assert!(actual.out.contains("ANDRES::JONATHAN"));
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn moves_columns_after() {
|
|
Playground::setup("move_column_test_4", |dirs, sandbox| {
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
"sample.csv",
|
|
r#"
|
|
column1,column2,letters,...,column98,and_more,column100
|
|
-------,-------, A ,---,--------, N ,---------
|
|
-------,-------, D ,---,--------, R ,---------
|
|
-------,-------, E ,---,--------, S ,---------
|
|
-------,-------, : ,---,--------, : ,---------
|
|
-------,-------, J ,---,--------, O ,---------
|
|
-------,-------, N ,---,--------, A ,---------
|
|
-------,-------, T ,---,--------, H ,---------
|
|
-------,-------, A ,---,--------, N ,---------
|
|
"#,
|
|
)]);
|
|
|
|
let actual = nu!(
|
|
cwd: dirs.test(), pipeline(
|
|
r#"
|
|
open sample.csv
|
|
| move letters and_more --after column1
|
|
| get
|
|
| nth 1 2
|
|
| str collect
|
|
"#
|
|
));
|
|
|
|
assert!(actual.out.contains("lettersand_more"));
|
|
})
|
|
}
|