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
64 lines
2 KiB
Rust
64 lines
2 KiB
Rust
use common::util::*;
|
|
static UTIL_NAME: &'static str = "cp";
|
|
fn at_and_ucmd() -> (AtPath, UCommand) {
|
|
let ts = TestScenario::new(UTIL_NAME);
|
|
let ucmd = ts.ucmd();
|
|
(ts.fixtures, ucmd)
|
|
}
|
|
|
|
static TEST_HELLO_WORLD_SOURCE: &'static str = "hello_world.txt";
|
|
static TEST_HELLO_WORLD_DEST: &'static str = "copy_of_hello_world.txt";
|
|
static TEST_COPY_TO_FOLDER: &'static str = "hello_dir/";
|
|
static TEST_COPY_TO_FOLDER_FILE: &'static str = "hello_dir/hello_world.txt";
|
|
static TEST_COPY_FROM_FOLDER_FILE: &'static str = "hello_dir_with_file/hello_world.txt";
|
|
|
|
#[test]
|
|
fn test_cp_cp() {
|
|
let (at, mut ucmd) = at_and_ucmd();
|
|
// Invoke our binary to make the copy.
|
|
let result = ucmd.arg(TEST_HELLO_WORLD_SOURCE)
|
|
.arg(TEST_HELLO_WORLD_DEST)
|
|
.run();
|
|
|
|
// Check that the exit code represents a successful copy.
|
|
let exit_success = result.success;
|
|
assert!(exit_success);
|
|
|
|
// Check the content of the destination file that was copied.
|
|
assert_eq!(at.read(TEST_HELLO_WORLD_DEST), "Hello, World!\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_cp_with_dirs_t() {
|
|
let (at, mut ucmd) = at_and_ucmd();
|
|
|
|
//using -t option
|
|
let result_to_dir_t = ucmd
|
|
.arg("-t")
|
|
.arg(TEST_COPY_TO_FOLDER)
|
|
.arg(TEST_HELLO_WORLD_SOURCE)
|
|
.run();
|
|
assert!(result_to_dir_t.success);
|
|
assert_eq!(at.read(TEST_COPY_TO_FOLDER_FILE), "Hello, World!\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_cp_with_dirs() {
|
|
let scene = TestScenario::new(UTIL_NAME);
|
|
let at = &scene.fixtures;
|
|
|
|
//using -t option
|
|
let result_to_dir = scene.ucmd()
|
|
.arg(TEST_HELLO_WORLD_SOURCE)
|
|
.arg(TEST_COPY_TO_FOLDER)
|
|
.run();
|
|
assert!(result_to_dir.success);
|
|
assert_eq!(at.read(TEST_COPY_TO_FOLDER_FILE), "Hello, World!\n");
|
|
|
|
let result_from_dir = scene.ucmd()
|
|
.arg(TEST_COPY_FROM_FOLDER_FILE)
|
|
.arg(TEST_HELLO_WORLD_DEST)
|
|
.run();
|
|
assert!(result_from_dir.success);
|
|
assert_eq!(at.read(TEST_HELLO_WORLD_DEST), "Hello, World!\n");
|
|
}
|