mirror of
https://github.com/uutils/coreutils
synced 2024-11-17 02:08:09 +00:00
f307de22d0
Moved most of the argument parsing logic to `base32/base_common.rs` to allow for significant code reuse.
111 lines
2.6 KiB
Rust
111 lines
2.6 KiB
Rust
use crate::common::util::*;
|
||
|
||
#[test]
|
||
fn test_encode() {
|
||
let input = "hello, world!";
|
||
new_ucmd!()
|
||
.pipe_in(input)
|
||
.succeeds()
|
||
.stdout_only("aGVsbG8sIHdvcmxkIQ==\n");
|
||
|
||
// Using '-' as our file
|
||
new_ucmd!()
|
||
.arg("-")
|
||
.pipe_in(input)
|
||
.succeeds()
|
||
.stdout_only("aGVsbG8sIHdvcmxkIQ==\n");
|
||
}
|
||
|
||
#[test]
|
||
fn test_base64_encode_file() {
|
||
new_ucmd!()
|
||
.arg("input-simple.txt")
|
||
.succeeds()
|
||
.stdout_only("SGVsbG8sIFdvcmxkIQo=\n");
|
||
}
|
||
|
||
#[test]
|
||
fn test_decode() {
|
||
for decode_param in vec!["-d", "--decode"] {
|
||
let input = "aGVsbG8sIHdvcmxkIQ==";
|
||
new_ucmd!()
|
||
.arg(decode_param)
|
||
.pipe_in(input)
|
||
.succeeds()
|
||
.stdout_only("hello, world!");
|
||
}
|
||
}
|
||
|
||
#[test]
|
||
fn test_garbage() {
|
||
let input = "aGVsbG8sIHdvcmxkIQ==\0";
|
||
new_ucmd!()
|
||
.arg("-d")
|
||
.pipe_in(input)
|
||
.fails()
|
||
.stderr_only("base64: error: invalid input\n");
|
||
}
|
||
|
||
#[test]
|
||
fn test_ignore_garbage() {
|
||
for ignore_garbage_param in vec!["-i", "--ignore-garbage"] {
|
||
let input = "aGVsbG8sIHdvcmxkIQ==\0";
|
||
new_ucmd!()
|
||
.arg("-d")
|
||
.arg(ignore_garbage_param)
|
||
.pipe_in(input)
|
||
.succeeds()
|
||
.stdout_only("hello, world!");
|
||
}
|
||
}
|
||
|
||
#[test]
|
||
fn test_wrap() {
|
||
for wrap_param in vec!["-w", "--wrap"] {
|
||
let input = "The quick brown fox jumps over the lazy dog.";
|
||
new_ucmd!()
|
||
.arg(wrap_param)
|
||
.arg("20")
|
||
.pipe_in(input)
|
||
.succeeds()
|
||
.stdout_only("VGhlIHF1aWNrIGJyb3du\nIGZveCBqdW1wcyBvdmVy\nIHRoZSBsYXp5IGRvZy4=\n");
|
||
}
|
||
}
|
||
|
||
#[test]
|
||
fn test_wrap_no_arg() {
|
||
for wrap_param in vec!["-w", "--wrap"] {
|
||
new_ucmd!().arg(wrap_param).fails().stderr_contains(
|
||
&"The argument '--wrap <wrap>' requires a value but none was supplied",
|
||
);
|
||
}
|
||
}
|
||
|
||
#[test]
|
||
fn test_wrap_bad_arg() {
|
||
for wrap_param in vec!["-w", "--wrap"] {
|
||
new_ucmd!()
|
||
.arg(wrap_param)
|
||
.arg("b")
|
||
.fails()
|
||
.stderr_only("base64: error: Invalid wrap size: ‘b’: invalid digit found in string\n");
|
||
}
|
||
}
|
||
|
||
#[test]
|
||
fn test_base64_extra_operand() {
|
||
// Expect a failure when multiple files are specified.
|
||
new_ucmd!()
|
||
.arg("a.txt")
|
||
.arg("a.txt")
|
||
.fails()
|
||
.stderr_only("base64: error: extra operand ‘a.txt’");
|
||
}
|
||
|
||
#[test]
|
||
fn test_base64_file_not_found() {
|
||
new_ucmd!()
|
||
.arg("a.txt")
|
||
.fails()
|
||
.stderr_only("base64: error: a.txt: No such file or directory");
|
||
}
|