mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
7ef4bb37a8
The main motivation is to move toward running those tests for a specific target, that is, if a test won't run on Windows, then we shouldn't build it. This was previously the default behavior and prevented a successful run on AppVeyor. I borrowed this pattern from the tests in the Cargo project.
117 lines
3.1 KiB
Rust
117 lines
3.1 KiB
Rust
extern crate libc;
|
|
|
|
use common::util::*;
|
|
|
|
static UTIL_NAME: &'static str = "rmdir";
|
|
|
|
#[test]
|
|
fn test_rmdir_empty_directory_no_parents() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let dir = "test_rmdir_empty_no_parents";
|
|
|
|
at.mkdir(dir);
|
|
assert!(at.dir_exists(dir));
|
|
|
|
let result = ucmd.arg(dir).run();
|
|
assert_empty_stderr!(result);
|
|
assert!(result.success);
|
|
|
|
assert!(!at.dir_exists(dir));
|
|
}
|
|
|
|
#[test]
|
|
fn test_rmdir_empty_directory_with_parents() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let dir = "test_rmdir_empty/with/parents";
|
|
|
|
at.mkdir_all(dir);
|
|
assert!(at.dir_exists(dir));
|
|
|
|
let result = ucmd.arg("-p").arg(dir).run();
|
|
assert_empty_stderr!(result);
|
|
assert!(result.success);
|
|
|
|
assert!(!at.dir_exists(dir));
|
|
}
|
|
|
|
#[test]
|
|
fn test_rmdir_nonempty_directory_no_parents() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let dir = "test_rmdir_nonempty_no_parents";
|
|
let file = "test_rmdir_nonempty_no_parents/foo";
|
|
|
|
at.mkdir(dir);
|
|
assert!(at.dir_exists(dir));
|
|
|
|
at.touch(file);
|
|
assert!(at.file_exists(file));
|
|
|
|
let result = ucmd.arg(dir).run();
|
|
assert_eq!(result.stderr,
|
|
"rmdir: error: failed to remove 'test_rmdir_nonempty_no_parents': Directory not \
|
|
empty\n");
|
|
assert!(!result.success);
|
|
|
|
assert!(at.dir_exists(dir));
|
|
}
|
|
|
|
#[test]
|
|
fn test_rmdir_nonempty_directory_with_parents() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let dir = "test_rmdir_nonempty/with/parents";
|
|
let file = "test_rmdir_nonempty/with/parents/foo";
|
|
|
|
at.mkdir_all(dir);
|
|
assert!(at.dir_exists(dir));
|
|
|
|
at.touch(file);
|
|
assert!(at.file_exists(file));
|
|
|
|
let result = ucmd.arg("-p").arg(dir).run();
|
|
assert_eq!(result.stderr,
|
|
"rmdir: error: failed to remove 'test_rmdir_nonempty/with/parents': Directory not \
|
|
empty\nrmdir: error: failed to remove 'test_rmdir_nonempty/with': Directory not \
|
|
empty\nrmdir: error: failed to remove 'test_rmdir_nonempty': Directory not \
|
|
empty\n");
|
|
assert!(!result.success);
|
|
|
|
assert!(at.dir_exists(dir));
|
|
}
|
|
|
|
#[test]
|
|
fn test_rmdir_ignore_nonempty_directory_no_parents() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let dir = "test_rmdir_ignore_nonempty_no_parents";
|
|
let file = "test_rmdir_ignore_nonempty_no_parents/foo";
|
|
|
|
at.mkdir(dir);
|
|
assert!(at.dir_exists(dir));
|
|
|
|
at.touch(file);
|
|
assert!(at.file_exists(file));
|
|
|
|
let result = ucmd.arg("--ignore-fail-on-non-empty").arg(dir).run();
|
|
assert_empty_stderr!(result);
|
|
assert!(result.success);
|
|
|
|
assert!(at.dir_exists(dir));
|
|
}
|
|
|
|
#[test]
|
|
fn test_rmdir_ignore_nonempty_directory_with_parents() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let dir = "test_rmdir_ignore_nonempty/with/parents";
|
|
let file = "test_rmdir_ignore_nonempty/with/parents/foo";
|
|
|
|
at.mkdir_all(dir);
|
|
assert!(at.dir_exists(dir));
|
|
|
|
at.touch(file);
|
|
assert!(at.file_exists(file));
|
|
|
|
let result = ucmd.arg("--ignore-fail-on-non-empty").arg("-p").arg(dir).run();
|
|
assert_empty_stderr!(result);
|
|
assert!(result.success);
|
|
|
|
assert!(at.dir_exists(dir));
|
|
}
|