coreutils/tests/by-util/test_base32.rs

131 lines
3.4 KiB
Rust
Raw Normal View History

2016-08-06 03:46:39 +00:00
// This file is part of the uutils coreutils package.
//
// (c) Jian Zeng <anonymousknight96@gmail.com>
//
// For the full copyright and license information, please view the LICENSE file
// that was distributed with this source code.
//
use crate::common::util::*;
2016-08-06 03:46:39 +00:00
#[test]
fn test_encode() {
let input = "Hello, World!";
new_ucmd!()
2016-08-06 03:46:39 +00:00
.pipe_in(input)
.succeeds()
.stdout_only("JBSWY3DPFQQFO33SNRSCC===\n"); // spell-checker:disable-line
// Using '-' as our file
new_ucmd!()
.arg("-")
.pipe_in(input)
.succeeds()
.stdout_only("JBSWY3DPFQQFO33SNRSCC===\n"); // spell-checker:disable-line
}
#[test]
fn test_base32_encode_file() {
new_ucmd!()
.arg("input-simple.txt")
.succeeds()
.stdout_only("JBSWY3DPFQQFO33SNRSCCCQ=\n"); // spell-checker:disable-line
2016-08-06 03:46:39 +00:00
}
#[test]
fn test_decode() {
2021-05-29 12:32:35 +00:00
for decode_param in &["-d", "--decode"] {
let input = "JBSWY3DPFQQFO33SNRSCC===\n"; // spell-checker:disable-line
new_ucmd!()
2016-08-06 03:46:39 +00:00
.arg(decode_param)
.pipe_in(input)
.succeeds()
.stdout_only("Hello, World!");
}
}
#[test]
fn test_garbage() {
let input = "aGVsbG8sIHdvcmxkIQ==\0"; // spell-checker:disable-line
new_ucmd!()
2016-08-06 03:46:39 +00:00
.arg("-d")
.pipe_in(input)
.fails()
.stderr_only("base32: error: invalid input\n");
}
#[test]
fn test_ignore_garbage() {
2021-05-29 12:32:35 +00:00
for ignore_garbage_param in &["-i", "--ignore-garbage"] {
let input = "JBSWY\x013DPFQ\x02QFO33SNRSCC===\n"; // spell-checker:disable-line
new_ucmd!()
2016-08-06 03:46:39 +00:00
.arg("-d")
.arg(ignore_garbage_param)
.pipe_in(input)
.succeeds()
.stdout_only("Hello, World!");
}
}
#[test]
fn test_wrap() {
2021-05-29 12:32:35 +00:00
for wrap_param in &["-w", "--wrap"] {
2016-08-06 03:46:39 +00:00
let input = "The quick brown fox jumps over the lazy dog.";
new_ucmd!()
2016-08-06 03:46:39 +00:00
.arg(wrap_param)
.arg("20")
.pipe_in(input)
.succeeds()
2020-04-13 18:36:03 +00:00
.stdout_only(
"KRUGKIDROVUWG2ZAMJZG\n653OEBTG66BANJ2W24DT\nEBXXMZLSEB2GQZJANRQX\nU6JAMRXWOLQ=\n", // spell-checker:disable-line
2020-04-13 18:36:03 +00:00
);
2016-08-06 03:46:39 +00:00
}
}
#[test]
fn test_wrap_no_arg() {
2021-05-29 12:32:35 +00:00
for wrap_param in &["-w", "--wrap"] {
let ts = TestScenario::new(util_name!());
let expected_stderr = &format!(
"error: The argument '--wrap <wrap>\' requires a value but none was \
supplied\n\nUSAGE:\n {1} {0} [OPTION]... [FILE]\n\nFor more \
information try --help",
ts.util_name,
ts.bin_path.to_string_lossy()
);
ts.ucmd()
2021-05-29 12:32:35 +00:00
.arg(wrap_param)
.fails()
.stderr_only(expected_stderr);
2016-08-06 03:46:39 +00:00
}
}
#[test]
fn test_wrap_bad_arg() {
2021-05-29 12:32:35 +00:00
for wrap_param in &["-w", "--wrap"] {
new_ucmd!()
2020-04-13 18:36:03 +00:00
.arg(wrap_param)
.arg("b")
2016-08-06 03:46:39 +00:00
.fails()
.stderr_only("base32: invalid wrap size: 'b'\n");
2016-08-06 03:46:39 +00:00
}
}
#[test]
fn test_base32_extra_operand() {
// Expect a failure when multiple files are specified.
new_ucmd!()
.arg("a.txt")
.arg("b.txt")
.fails()
.stderr_only("base32: extra operand 'b.txt'\nTry 'base32 --help' for more information.");
}
#[test]
fn test_base32_file_not_found() {
new_ucmd!()
.arg("a.txt")
.fails()
.stderr_only("base32: a.txt: No such file or directory");
}