2020-05-25 17:05:26 +00:00
|
|
|
|
use crate::common::util::*;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_encode() {
|
|
|
|
|
let input = "hello, world!";
|
2016-08-23 11:52:43 +00:00
|
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
|
.pipe_in(input)
|
2016-07-17 16:56:11 +00:00
|
|
|
|
.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 input = "aGVsbG8sIHdvcmxkIQ==";
|
2016-08-23 11:52:43 +00:00
|
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
|
.arg(decode_param)
|
2016-07-17 16:56:11 +00:00
|
|
|
|
.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 input = "aGVsbG8sIHdvcmxkIQ==\0";
|
2016-08-23 11:52:43 +00:00
|
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
|
.arg("-d")
|
2016-07-17 16:56:11 +00:00
|
|
|
|
.pipe_in(input)
|
|
|
|
|
.fails()
|
2016-08-06 03:47:09 +00:00
|
|
|
|
.stderr_only("base64: error: invalid input\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 input = "aGVsbG8sIHdvcmxkIQ==\0";
|
2016-08-23 11:52:43 +00:00
|
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
|
.arg("-d")
|
|
|
|
|
.arg(ignore_garbage_param)
|
2016-07-17 16:56:11 +00:00
|
|
|
|
.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 input = "The quick brown fox jumps over the lazy dog.";
|
2016-08-23 11:52:43 +00:00
|
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
|
.arg(wrap_param)
|
|
|
|
|
.arg("20")
|
2016-07-17 16:56:11 +00:00
|
|
|
|
.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"] {
|
2020-04-13 18:36:03 +00:00
|
|
|
|
new_ucmd!().arg(wrap_param).fails().stderr_only(format!(
|
|
|
|
|
"base64: error: Argument to option '{}' missing\n",
|
|
|
|
|
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"] {
|
2016-08-23 11:52:43 +00:00
|
|
|
|
new_ucmd!()
|
2016-08-06 03:47:09 +00:00
|
|
|
|
.arg(wrap_param)
|
|
|
|
|
.arg("b")
|
2016-07-17 16:56:11 +00:00
|
|
|
|
.fails()
|
2016-08-06 03:47:09 +00:00
|
|
|
|
.stderr_only("base64: error: invalid wrap size: ‘b’: invalid digit found in string\n");
|
2016-02-16 01:38:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|