mirror of
https://github.com/uutils/coreutils
synced 2024-12-19 17:43:52 +00:00
569cd162d3
Updates to individual integration tests - use proposed conventional approach to beginning tests - use new convenience functions for using fixtures - use new names for TestScenario Updates to integration test modules - add proposed conventional module-level functions Updates to test/common/util.rs - rename TestSet, and its methods, for semantic clarity - create convenience functions for use of fixtures - delete convenience functions obsoleted by new conventions
85 lines
2.1 KiB
Rust
85 lines
2.1 KiB
Rust
use common::util::*;
|
|
|
|
static UTIL_NAME: &'static str = "base64";
|
|
fn new_ucmd() -> UCommand {
|
|
TestScenario::new(UTIL_NAME).ucmd()
|
|
}
|
|
|
|
#[test]
|
|
fn test_encode() {
|
|
let input = "hello, world!";
|
|
new_ucmd()
|
|
.pipe_in(input)
|
|
.succeeds()
|
|
.stdout_only("aGVsbG8sIHdvcmxkIQ==\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 character (Invalid character '0' at position 20)\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_only(
|
|
format!("base64: error: Argument to option '{}' missing.",
|
|
if wrap_param == "-w" { "w" } else { "wrap" }));
|
|
}
|
|
}
|
|
|
|
#[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: Argument to option 'wrap' improperly formatted: invalid digit found in string");
|
|
}
|
|
}
|