mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 01:38:04 +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.
40 lines
1.2 KiB
Rust
40 lines
1.2 KiB
Rust
macro_rules! get_hash(
|
|
($str:expr) => (
|
|
$str.split(' ').collect::<Vec<&str>>()[0]
|
|
);
|
|
);
|
|
|
|
macro_rules! test_digest {
|
|
($($t:ident)*) => ($(
|
|
|
|
mod $t {
|
|
use common::util::*;
|
|
static UTIL_NAME: &'static str = "hashsum";
|
|
static DIGEST_ARG: &'static str = concat!("--", stringify!($t));
|
|
static EXPECTED_FILE: &'static str = concat!(stringify!($t), ".expected");
|
|
|
|
#[test]
|
|
fn test_single_file() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let result = ucmd.arg(DIGEST_ARG).arg("input.txt").run();
|
|
|
|
assert_empty_stderr!(result);
|
|
assert!(result.success);
|
|
assert_eq!(get_hash!(result.stdout), at.read(EXPECTED_FILE));
|
|
}
|
|
|
|
#[test]
|
|
fn test_stdin() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let input = at.read("input.txt");
|
|
let result = ucmd.arg(DIGEST_ARG).run_piped_stdin(input);
|
|
|
|
assert_empty_stderr!(result);
|
|
assert!(result.success);
|
|
assert_eq!(get_hash!(result.stdout), at.read(EXPECTED_FILE));
|
|
}
|
|
}
|
|
)*)
|
|
}
|
|
|
|
test_digest! { md5 sha1 sha224 sha256 sha384 sha512 }
|