You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/tests/cli/client/fs_remove.rs

87 lines
2.2 KiB
Rust

use assert_fs::prelude::*;
use predicates::prelude::*;
use rstest::*;
use crate::common::fixtures::*;
#[rstest]
#[test_log::test]
fn should_support_removing_file(ctx: DistantManagerCtx) {
let temp = assert_fs::TempDir::new().unwrap();
let file = temp.child("file");
file.touch().unwrap();
// distant action remove {path}
ctx.new_assert_cmd(["fs", "remove"])
.args([file.to_str().unwrap()])
.assert()
.success()
.stdout("")
.stderr("");
file.assert(predicate::path::missing());
}
#[rstest]
#[test_log::test]
fn should_support_removing_empty_directory(ctx: DistantManagerCtx) {
let temp = assert_fs::TempDir::new().unwrap();
// Make an empty directory
let dir = temp.child("dir");
dir.create_dir_all().unwrap();
// distant action remove {path}
ctx.new_assert_cmd(["fs", "remove"])
.args([dir.to_str().unwrap()])
.assert()
.success()
.stdout("")
.stderr("");
dir.assert(predicate::path::missing());
}
#[rstest]
#[test_log::test]
fn should_support_removing_nonempty_directory_if_force_specified(ctx: DistantManagerCtx) {
let temp = assert_fs::TempDir::new().unwrap();
// Make a non-empty directory
let dir = temp.child("dir");
dir.create_dir_all().unwrap();
dir.child("file").touch().unwrap();
// distant action remove --force {path}
ctx.new_assert_cmd(["fs", "remove"])
.args(["--force", dir.to_str().unwrap()])
.assert()
.success()
.stdout("")
.stderr("");
dir.assert(predicate::path::missing());
}
#[rstest]
#[test_log::test]
fn yield_an_error_when_fails(ctx: DistantManagerCtx) {
let temp = assert_fs::TempDir::new().unwrap();
// Make a non-empty directory
let dir = temp.child("dir");
dir.create_dir_all().unwrap();
dir.child("file").touch().unwrap();
// distant action remove {path}
ctx.new_assert_cmd(["fs", "remove"])
.args([dir.to_str().unwrap()])
.assert()
.code(1)
.stdout("")
.stderr(predicates::str::is_empty().not());
dir.assert(predicate::path::exists());
dir.assert(predicate::path::is_dir());
}