2021-08-23 16:35:19 +00:00
|
|
|
// spell-checker:ignore checkfile
|
2015-05-16 22:03:09 +00:00
|
|
|
macro_rules! get_hash(
|
|
|
|
($str:expr) => (
|
|
|
|
$str.split(' ').collect::<Vec<&str>>()[0]
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|
|
|
|
macro_rules! test_digest {
|
2016-08-30 22:55:28 +00:00
|
|
|
($($id:ident $t:ident $size:expr)*) => ($(
|
2015-05-16 22:03:09 +00:00
|
|
|
|
2016-08-30 22:55:28 +00:00
|
|
|
mod $id {
|
2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2015-05-16 22:03:09 +00:00
|
|
|
static DIGEST_ARG: &'static str = concat!("--", stringify!($t));
|
2016-08-30 22:55:28 +00:00
|
|
|
static BITS_ARG: &'static str = concat!("--bits=", stringify!($size));
|
|
|
|
static EXPECTED_FILE: &'static str = concat!(stringify!($id), ".expected");
|
2021-08-23 16:35:19 +00:00
|
|
|
static CHECK_FILE: &'static str = concat!(stringify!($id), ".checkfile");
|
2015-05-16 22:03:09 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single_file() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let ts = TestScenario::new("hashsum");
|
|
|
|
assert_eq!(ts.fixtures.read(EXPECTED_FILE),
|
2021-04-05 20:03:43 +00:00
|
|
|
get_hash!(ts.ucmd().arg(DIGEST_ARG).arg(BITS_ARG).arg("input.txt").succeeds().no_stderr().stdout_str()));
|
2015-05-16 22:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_stdin() {
|
2016-08-23 11:52:43 +00:00
|
|
|
let ts = TestScenario::new("hashsum");
|
|
|
|
assert_eq!(ts.fixtures.read(EXPECTED_FILE),
|
2021-04-05 20:03:43 +00:00
|
|
|
get_hash!(ts.ucmd().arg(DIGEST_ARG).arg(BITS_ARG).pipe_in_fixture("input.txt").succeeds().no_stderr().stdout_str()));
|
2015-05-16 22:03:09 +00:00
|
|
|
}
|
2021-08-23 16:35:19 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_check() {
|
|
|
|
let ts = TestScenario::new("hashsum");
|
|
|
|
ts.ucmd()
|
|
|
|
.args(&[DIGEST_ARG, BITS_ARG, "--check", CHECK_FILE])
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr()
|
|
|
|
.stdout_is("input.txt: OK\n");
|
|
|
|
}
|
2015-05-16 22:03:09 +00:00
|
|
|
}
|
|
|
|
)*)
|
|
|
|
}
|
|
|
|
|
2016-08-30 22:55:28 +00:00
|
|
|
test_digest! {
|
|
|
|
md5 md5 128
|
|
|
|
sha1 sha1 160
|
|
|
|
sha224 sha224 224
|
|
|
|
sha256 sha256 256
|
|
|
|
sha384 sha384 384
|
|
|
|
sha512 sha512 512
|
|
|
|
sha3_224 sha3 224
|
|
|
|
sha3_256 sha3 256
|
|
|
|
sha3_384 sha3 384
|
|
|
|
sha3_512 sha3 512
|
|
|
|
shake128_256 shake128 256
|
|
|
|
shake256_512 shake256 512
|
2020-12-08 22:32:02 +00:00
|
|
|
b2sum b2sum 512
|
2016-08-30 22:55:28 +00:00
|
|
|
}
|