mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 01:38:04 +00:00
569cd162d3
Updates to individual integration tests - use proposed conventional approach to beginning tests - use new convenience functions for using fixtures - use new names for TestScenario Updates to integration test modules - add proposed conventional module-level functions Updates to test/common/util.rs - rename TestSet, and its methods, for semantic clarity - create convenience functions for use of fixtures - delete convenience functions obsoleted by new conventions
53 lines
1.4 KiB
Rust
53 lines
1.4 KiB
Rust
use common::util::*;
|
|
|
|
static UTIL_NAME: &'static str = "mkdir";
|
|
fn new_ucmd() -> UCommand {
|
|
TestScenario::new(UTIL_NAME).ucmd()
|
|
}
|
|
|
|
static TEST_DIR1: &'static str = "mkdir_test1";
|
|
static TEST_DIR2: &'static str = "mkdir_test2";
|
|
static TEST_DIR3: &'static str = "mkdir_test3";
|
|
static TEST_DIR4: &'static str = "mkdir_test4/mkdir_test4_1";
|
|
static TEST_DIR5: &'static str = "mkdir_test5/mkdir_test5_1";
|
|
|
|
#[test]
|
|
fn test_mkdir_mkdir() {
|
|
let exit_success = new_ucmd()
|
|
.arg(TEST_DIR1).run().success;
|
|
assert_eq!(exit_success, true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_mkdir_dup_dir() {
|
|
let scene = TestScenario::new(UTIL_NAME);
|
|
let exit_success = scene.ucmd().arg(TEST_DIR2).run().success;
|
|
let exit_success2 = scene.ucmd().arg(TEST_DIR2).run().success;
|
|
assert!(exit_success);
|
|
assert!(!exit_success2);
|
|
}
|
|
|
|
#[test]
|
|
fn test_mkdir_mode() {
|
|
let exit_success = new_ucmd()
|
|
.arg("-m")
|
|
.arg("755")
|
|
.arg(TEST_DIR3)
|
|
.run()
|
|
.success;
|
|
assert!(exit_success);
|
|
}
|
|
|
|
#[test]
|
|
fn test_mkdir_parent() {
|
|
let exit_success = new_ucmd()
|
|
.arg("-p").arg(TEST_DIR4).run().success;
|
|
assert!(exit_success);
|
|
}
|
|
|
|
#[test]
|
|
fn test_mkdir_no_parent() {
|
|
let exit_success = new_ucmd()
|
|
.arg(TEST_DIR5).run().success;
|
|
assert!(!exit_success);
|
|
}
|