2015-11-16 05:25:01 +00:00
|
|
|
use common::util::*;
|
|
|
|
|
|
|
|
static UTIL_NAME: &'static str = "base64";
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_encode() {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
|
|
|
let input = "hello, world!";
|
2016-07-17 16:56:11 +00:00
|
|
|
ucmd.pipe_in(input)
|
|
|
|
.succeeds()
|
2016-07-17 06:44:16 +00:00
|
|
|
.stdout_only("aGVsbG8sIHdvcmxkIQ==\n");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_decode() {
|
2016-02-16 00:06:30 +00:00
|
|
|
for decode_param in vec!["-d", "--decode"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
|
|
|
let input = "aGVsbG8sIHdvcmxkIQ==";
|
2016-07-17 16:56:11 +00:00
|
|
|
ucmd.arg(decode_param)
|
|
|
|
.pipe_in(input)
|
|
|
|
.succeeds()
|
2016-07-17 06:44:16 +00:00
|
|
|
.stdout_only("hello, world!");
|
2016-02-16 00:06:30 +00:00
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_garbage() {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
|
|
|
let input = "aGVsbG8sIHdvcmxkIQ==\0";
|
2016-07-17 16:56:11 +00:00
|
|
|
ucmd.arg("-d")
|
|
|
|
.pipe_in(input)
|
|
|
|
.fails()
|
2016-07-17 06:44:16 +00:00
|
|
|
.stderr_only("base64: error: invalid character (Invalid character '0' at position 20)\n");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ignore_garbage() {
|
2016-02-16 00:06:30 +00:00
|
|
|
for ignore_garbage_param in vec!["-i", "--ignore-garbage"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
|
|
|
let input = "aGVsbG8sIHdvcmxkIQ==\0";
|
2016-07-17 16:56:11 +00:00
|
|
|
ucmd.arg("-d").arg(ignore_garbage_param)
|
|
|
|
.pipe_in(input)
|
|
|
|
.succeeds()
|
2016-07-17 06:44:16 +00:00
|
|
|
.stdout_only("hello, world!");
|
2016-02-16 00:06:30 +00:00
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_wrap() {
|
2016-02-16 00:06:30 +00:00
|
|
|
for wrap_param in vec!["-w", "--wrap"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
|
|
|
let input = "The quick brown fox jumps over the lazy dog.";
|
2016-07-17 16:56:11 +00:00
|
|
|
ucmd.arg(wrap_param).arg("20")
|
|
|
|
.pipe_in(input)
|
|
|
|
.succeeds()
|
2016-07-17 06:44:16 +00:00
|
|
|
.stdout_only("VGhlIHF1aWNrIGJyb3du\nIGZveCBqdW1wcyBvdmVy\nIHRoZSBsYXp5IGRvZy4=\n");
|
2016-02-16 00:06:30 +00:00
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
2016-02-16 01:38:03 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_wrap_no_arg() {
|
|
|
|
for wrap_param in vec!["-w", "--wrap"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 16:56:11 +00:00
|
|
|
ucmd.arg(wrap_param)
|
|
|
|
.fails()
|
2016-07-17 06:44:16 +00:00
|
|
|
.stderr_only(
|
|
|
|
format!("base64: error: Argument to option '{}' missing.",
|
|
|
|
if wrap_param == "-w" { "w" } else { "wrap" }));
|
2016-02-16 01:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_wrap_bad_arg() {
|
|
|
|
for wrap_param in vec!["-w", "--wrap"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 16:56:11 +00:00
|
|
|
ucmd.arg(wrap_param).arg("b")
|
|
|
|
.fails()
|
2016-07-17 06:44:16 +00:00
|
|
|
.stderr_only("base64: error: Argument to option 'wrap' improperly formatted: invalid digit found in string");
|
2016-02-16 01:38:03 +00:00
|
|
|
}
|
|
|
|
}
|