1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

tests/cksum: test when the --length argument is 0 or >512

This commit is contained in:
Vardhan Patil 2023-12-30 20:14:30 +05:30
parent aec0cfa6e3
commit e1863ac64e
3 changed files with 28 additions and 0 deletions

View file

@ -262,3 +262,27 @@ fn test_length() {
.succeeds()
.stdout_is_fixture("supported_length.expected");
}
#[test]
fn test_length_greater_than_512() {
new_ucmd!()
.arg("--length=1024")
.arg("--algorithm=blake2b")
.arg("lorem_ipsum.txt")
.arg("alice_in_wonderland.txt")
.fails()
.no_stdout()
.stderr_is_fixture("length_larger_than_512.expected");
}
#[test]
fn test_length_is_zero() {
new_ucmd!()
.arg("--length=0")
.arg("--algorithm=blake2b")
.arg("lorem_ipsum.txt")
.arg("alice_in_wonderland.txt")
.succeeds()
.no_stderr()
.stdout_is_fixture("length_is_zero.expected");
}