2019-08-15 09:10:33 +02:00
|
|
|
mod helpers;
|
|
|
|
|
2019-08-29 02:32:42 +02:00
|
|
|
use h::{in_directory as cwd, Playground, Stub::*};
|
2019-08-15 09:10:33 +02:00
|
|
|
use helpers as h;
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn knows_the_filesystems_entered() {
|
2019-08-29 02:32:42 +02:00
|
|
|
Playground::setup("enter_test_1", |dirs, sandbox| {
|
|
|
|
sandbox
|
2019-08-28 19:01:16 +02:00
|
|
|
.within("red_pill")
|
|
|
|
.with_files(vec![
|
|
|
|
EmptyFile("andres.nu"),
|
|
|
|
EmptyFile("jonathan.nu"),
|
|
|
|
EmptyFile("yehuda.nu"),
|
|
|
|
])
|
|
|
|
.within("blue_pill")
|
|
|
|
.with_files(vec![
|
|
|
|
EmptyFile("bash.nxt"),
|
|
|
|
EmptyFile("korn.nxt"),
|
|
|
|
EmptyFile("powedsh.nxt"),
|
|
|
|
])
|
2019-08-29 02:32:42 +02:00
|
|
|
.mkdir("expected");
|
2019-08-15 09:10:33 +02:00
|
|
|
|
2019-08-28 19:01:16 +02:00
|
|
|
let red_pill_dir = dirs.test().join("red_pill");
|
|
|
|
let blue_pill_dir = dirs.test().join("blue_pill");
|
|
|
|
let expected = dirs.test().join("expected");
|
|
|
|
let expected_recycled = expected.join("recycled");
|
2019-08-15 09:10:33 +02:00
|
|
|
|
2019-08-28 19:01:16 +02:00
|
|
|
nu!(
|
2019-08-29 02:32:42 +02:00
|
|
|
cwd(dirs.test()),
|
2019-08-28 19:01:16 +02:00
|
|
|
r#"
|
2019-08-15 09:10:33 +02:00
|
|
|
enter expected
|
|
|
|
mkdir recycled
|
|
|
|
enter ../red_pill
|
|
|
|
mv jonathan.nu ../expected
|
|
|
|
enter ../blue_pill
|
|
|
|
cp *.nxt ../expected/recycled
|
|
|
|
p
|
|
|
|
p
|
|
|
|
mv ../red_pill/yehuda.nu .
|
|
|
|
n
|
|
|
|
mv andres.nu ../expected/andres.nu
|
|
|
|
exit
|
|
|
|
cd ..
|
|
|
|
rm red_pill --recursive
|
|
|
|
exit
|
2019-08-19 10:07:55 +02:00
|
|
|
n
|
2019-08-15 09:10:33 +02:00
|
|
|
rm blue_pill --recursive
|
|
|
|
exit
|
|
|
|
"#
|
2019-08-28 19:01:16 +02:00
|
|
|
);
|
2019-08-15 09:10:33 +02:00
|
|
|
|
2019-08-28 19:01:16 +02:00
|
|
|
assert!(!h::dir_exists_at(PathBuf::from(red_pill_dir)));
|
|
|
|
assert!(h::files_exist_at(
|
|
|
|
vec![
|
|
|
|
Path::new("andres.nu"),
|
|
|
|
Path::new("jonathan.nu"),
|
|
|
|
Path::new("yehuda.nu"),
|
|
|
|
],
|
|
|
|
PathBuf::from(&expected)
|
|
|
|
));
|
2019-08-15 09:10:33 +02:00
|
|
|
|
2019-08-28 19:01:16 +02:00
|
|
|
assert!(!h::dir_exists_at(PathBuf::from(blue_pill_dir)));
|
|
|
|
assert!(h::files_exist_at(
|
|
|
|
vec![
|
|
|
|
Path::new("bash.nxt"),
|
|
|
|
Path::new("korn.nxt"),
|
|
|
|
Path::new("powedsh.nxt"),
|
|
|
|
],
|
|
|
|
PathBuf::from(&expected_recycled)
|
|
|
|
));
|
|
|
|
})
|
2019-08-15 09:10:33 +02:00
|
|
|
}
|