nushell/tests/command_ls_tests.rs

88 lines
2.1 KiB
Rust
Raw Normal View History

2019-08-02 11:23:39 +02:00
mod helpers;
use helpers as h;
2019-08-29 08:31:56 +02:00
use helpers::{Playground, Stub::*};
2019-08-02 11:23:39 +02:00
#[test]
fn ls_lists_regular_files() {
2019-08-29 02:32:42 +02:00
Playground::setup("ls_test_1", |dirs, sandbox| {
2019-09-11 16:36:50 +02:00
sandbox.with_files(vec![
EmptyFile("yehuda.10.txt"),
EmptyFile("jonathan.10.txt"),
EmptyFile("andres.10.txt"),
2019-08-29 02:32:42 +02:00
]);
2019-08-02 11:23:39 +02:00
2019-08-29 02:32:42 +02:00
let actual = nu!(
2019-08-29 08:31:56 +02:00
cwd: dirs.test(), h::pipeline(
r#"
ls
| get name
| lines
| split-column "."
| get Column2
| str --to-int
| sum
2019-08-29 08:31:56 +02:00
| echo $it
"#
2019-08-29 02:32:42 +02:00
));
2019-08-02 11:23:39 +02:00
2019-08-29 02:32:42 +02:00
assert_eq!(actual, "30");
})
2019-08-02 11:23:39 +02:00
}
#[test]
fn ls_lists_regular_files_using_asterisk_wildcard() {
2019-08-29 02:32:42 +02:00
Playground::setup("ls_test_2", |dirs, sandbox| {
2019-09-11 16:36:50 +02:00
sandbox.with_files(vec![
EmptyFile("los.1.txt"),
EmptyFile("tres.1.txt"),
EmptyFile("amigos.1.txt"),
EmptyFile("arepas.1.clu"),
2019-08-29 02:32:42 +02:00
]);
2019-08-02 11:23:39 +02:00
2019-08-29 02:32:42 +02:00
let actual = nu!(
2019-08-29 08:31:56 +02:00
cwd: dirs.test(), h::pipeline(
r#"
ls *.txt
| get name
| lines
| split-column "."
| get Column2
| str --to-int
| sum
2019-08-29 08:31:56 +02:00
| echo $it
"#
2019-08-29 02:32:42 +02:00
));
2019-08-02 11:23:39 +02:00
2019-08-29 02:32:42 +02:00
assert_eq!(actual, "3");
})
2019-08-02 11:23:39 +02:00
}
#[test]
fn ls_lists_regular_files_using_question_mark_wildcard() {
2019-08-29 02:32:42 +02:00
Playground::setup("ls_test_3", |dirs, sandbox| {
2019-09-11 16:36:50 +02:00
sandbox.with_files(vec![
EmptyFile("yehuda.10.txt"),
EmptyFile("jonathan.10.txt"),
EmptyFile("andres.10.txt"),
EmptyFile("chicken_not_to_be_picked_up.100.txt"),
2019-08-29 02:32:42 +02:00
]);
2019-08-02 11:23:39 +02:00
2019-08-29 02:32:42 +02:00
let actual = nu!(
2019-08-29 08:31:56 +02:00
cwd: dirs.test(), h::pipeline(
r#"
ls *.??.txt
| get name
| lines
| split-column "."
| get Column2
| str --to-int
| sum
2019-08-29 08:31:56 +02:00
| echo $it
"#
2019-08-29 02:32:42 +02:00
));
2019-08-02 11:23:39 +02:00
2019-08-29 02:32:42 +02:00
assert_eq!(actual, "30");
})
2019-08-02 11:23:39 +02:00
}