coreutils/tests/hashsum.rs

44 lines
1.2 KiB
Rust
Raw Normal View History

#[macro_use]
mod common;
2015-05-16 22:03:09 +00:00
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";
2015-05-16 22:03:09 +00:00
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();
2015-05-16 22:03:09 +00:00
assert_empty_stderr!(result);
assert!(result.success);
assert_eq!(get_hash!(result.stdout), at.read(EXPECTED_FILE));
2015-05-16 22:03:09 +00:00
}
#[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);
2015-05-16 22:03:09 +00:00
assert_empty_stderr!(result);
assert!(result.success);
assert_eq!(get_hash!(result.stdout), at.read(EXPECTED_FILE));
2015-05-16 22:03:09 +00:00
}
}
)*)
}
test_digest! { md5 sha1 sha224 sha256 sha384 sha512 }