Files

162 lines
4.1 KiB
Rust
Raw Permalink Normal View History

2016-08-06 11:46:39 +08:00
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
2016-08-06 11:46:39 +08:00
//
2025-03-28 09:51:51 +01:00
use uutests::new_ucmd;
2016-08-06 11:46:39 +08:00
#[test]
fn test_encode() {
let input = "Hello, World!";
new_ucmd!()
2016-08-06 11:46:39 +08:00
.pipe_in(input)
.succeeds()
.stdout_only("JBSWY3DPFQQFO33SNRSCC===\n"); // spell-checker:disable-line
2021-04-26 08:00:55 -07:00
// Using '-' as our file
new_ucmd!()
.arg("-")
.pipe_in(input)
.succeeds()
.stdout_only("JBSWY3DPFQQFO33SNRSCC===\n"); // spell-checker:disable-line
2021-04-26 08:00:55 -07:00
}
#[test]
fn test_encode_repeat_flags_later_wrap_10() {
let input = "Hello, World!\n";
new_ucmd!()
.args(&["-ii", "-w17", "-w10"])
.pipe_in(input)
.succeeds()
.stdout_only("JBSWY3DPFQ\nQFO33SNRSC\nCCQ=\n"); // spell-checker:disable-line
}
#[test]
fn test_encode_repeat_flags_later_wrap_17() {
let input = "Hello, World!\n";
new_ucmd!()
.args(&["-ii", "-w10", "-w17"])
.pipe_in(input)
.succeeds()
.stdout_only("JBSWY3DPFQQFO33SN\nRSCCCQ=\n"); // spell-checker:disable-line
}
2021-04-26 08:00:55 -07:00
#[test]
fn test_base32_encode_file() {
new_ucmd!()
.arg("input-simple.txt")
.succeeds()
.stdout_only("JBSWY3DPFQQFO33SNRSCCCQ=\n"); // spell-checker:disable-line
2016-08-06 11:46:39 +08:00
}
#[test]
fn test_decode() {
2025-03-18 21:39:53 +08:00
for decode_param in ["-d", "--decode", "--dec", "-D"] {
let input = "JBSWY3DPFQQFO33SNRSCC===\n"; // spell-checker:disable-line
new_ucmd!()
2016-08-06 11:46:39 +08:00
.arg(decode_param)
.pipe_in(input)
.succeeds()
.stdout_only("Hello, World!");
}
}
#[test]
fn test_decode_repeat_flags() {
let input = "JBSWY3DPFQQFO33SNRSCC===\n"; // spell-checker:disable-line
new_ucmd!()
.args(&["-didiw80", "--wrap=17", "--wrap", "8"]) // spell-checker:disable-line
.pipe_in(input)
.succeeds()
.stdout_only("Hello, World!");
}
2016-08-06 11:46:39 +08:00
#[test]
fn test_garbage() {
let input = "aGVsbG8sIHdvcmxkIQ==\0"; // spell-checker:disable-line
new_ucmd!()
2016-08-06 11:46:39 +08:00
.arg("-d")
.pipe_in(input)
.fails()
.stderr_only("base32: error: invalid input\n");
}
#[test]
fn test_ignore_garbage() {
2022-04-02 10:47:37 +02:00
for ignore_garbage_param in ["-i", "--ignore-garbage", "--ig"] {
let input = "JBSWY\x013DPFQ\x02QFO33SNRSCC===\n"; // spell-checker:disable-line
new_ucmd!()
2016-08-06 11:46:39 +08:00
.arg("-d")
.arg(ignore_garbage_param)
.pipe_in(input)
.succeeds()
.stdout_only("Hello, World!");
}
}
#[test]
fn test_wrap() {
2022-04-02 10:47:37 +02:00
for wrap_param in ["-w", "--wrap", "--wr"] {
2016-08-06 11:46:39 +08:00
let input = "The quick brown fox jumps over the lazy dog.";
new_ucmd!()
2016-08-06 11:46:39 +08:00
.arg(wrap_param)
.arg("20")
.pipe_in(input)
.succeeds()
2020-04-13 20:36:03 +02:00
.stdout_only(
"KRUGKIDROVUWG2ZAMJZG\n653OEBTG66BANJ2W24DT\nEBXXMZLSEB2GQZJANRQX\nU6JAMRXWOLQ=\n", // spell-checker:disable-line
2020-04-13 20:36:03 +02:00
);
2016-08-06 11:46:39 +08:00
}
}
#[test]
fn test_wrap_no_arg() {
2022-04-02 10:47:37 +02:00
for wrap_param in ["-w", "--wrap"] {
2025-07-01 01:52:57 +02:00
new_ucmd!()
2021-05-29 14:32:35 +02:00
.arg(wrap_param)
.fails()
2025-08-11 23:26:13 +02:00
.stderr_contains("error: a value is required for '--wrap <COLS>' but none was supplied")
.stderr_contains("For more information, try '--help'.")
2022-09-29 15:21:29 +02:00
.no_stdout();
2016-08-06 11:46:39 +08:00
}
}
#[test]
fn test_wrap_bad_arg() {
2022-04-02 10:47:37 +02:00
for wrap_param in ["-w", "--wrap"] {
new_ucmd!()
2020-04-13 20:36:03 +02:00
.arg(wrap_param)
.arg("b")
2016-08-06 11:46:39 +08:00
.fails()
.stderr_only("base32: invalid wrap size: 'b'\n");
2016-08-06 11:46:39 +08:00
}
}
2021-04-25 22:24:55 -07:00
#[test]
fn test_base32_extra_operand() {
// Expect a failure when multiple files are specified.
2021-11-09 17:23:41 -03:00
new_ucmd!()
2021-04-25 22:24:55 -07:00
.arg("a.txt")
.arg("b.txt")
2021-04-25 22:24:55 -07:00
.fails()
2021-11-09 17:23:41 -03:00
.usage_error("extra operand 'b.txt'");
2021-04-25 22:24:55 -07:00
}
#[test]
fn test_base32_file_not_found() {
new_ucmd!()
.arg("a.txt")
.fails()
.stderr_only("base32: a.txt: No such file or directory\n");
2021-04-25 22:24:55 -07:00
}
#[test]
fn test_encode_large_input_is_buffered() {
let input = "A".repeat(6000);
new_ucmd!()
.pipe_in(input)
.succeeds()
.stdout_contains("BIFAUCQK"); // spell-checker:disable-line
}