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()
|
2021-05-30 05:10:54 +00:00
|
|
|
.stdout_only("aGVsbG8sIHdvcmxkIQ==\n"); // spell-checker:disable-line
|
2021-04-28 07:36:27 +00:00
|
|
|
|
|
|
|
// Using '-' as our file
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("-")
|
|
|
|
.pipe_in(input)
|
|
|
|
.succeeds()
|
2021-05-30 05:10:54 +00:00
|
|
|
.stdout_only("aGVsbG8sIHdvcmxkIQ==\n"); // spell-checker:disable-line
|
2021-04-28 07:36:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_base64_encode_file() {
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("input-simple.txt")
|
|
|
|
.succeeds()
|
2021-05-30 05:10:54 +00:00
|
|
|
.stdout_only("SGVsbG8sIFdvcmxkIQo=\n"); // spell-checker:disable-line
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_decode() {
|
2021-05-29 12:32:35 +00:00
|
|
|
for decode_param in &["-d", "--decode"] {
|
2021-05-30 05:10:54 +00:00
|
|
|
let input = "aGVsbG8sIHdvcmxkIQ=="; // spell-checker:disable-line
|
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() {
|
2021-05-31 03:55:28 +00:00
|
|
|
let input = "aGVsbG8sIHdvcmxkIQ==\0"; // spell-checker:disable-line
|
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() {
|
2021-05-29 12:32:35 +00:00
|
|
|
for ignore_garbage_param in &["-i", "--ignore-garbage"] {
|
2021-05-31 03:55:28 +00:00
|
|
|
let input = "aGVsbG8sIHdvcmxkIQ==\0"; // spell-checker:disable-line
|
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() {
|
2021-05-29 12:32:35 +00:00
|
|
|
for wrap_param in &["-w", "--wrap"] {
|
2016-02-16 00:06:30 +00:00
|
|
|
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()
|
2021-05-30 05:10:54 +00:00
|
|
|
// spell-checker:disable-next-line
|
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() {
|
2021-05-29 12:32:35 +00:00
|
|
|
for wrap_param in &["-w", "--wrap"] {
|
2021-04-28 07:36:27 +00:00
|
|
|
new_ucmd!().arg(wrap_param).fails().stderr_contains(
|
|
|
|
&"The argument '--wrap <wrap>' requires a value but none was supplied",
|
|
|
|
);
|
2016-02-16 01:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_wrap_bad_arg() {
|
2021-05-29 12:32:35 +00:00
|
|
|
for wrap_param in &["-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()
|
2021-06-21 22:22:30 +00:00
|
|
|
.stderr_only("base64: Invalid wrap size: 'b': invalid digit found in string\n");
|
2016-02-16 01:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-28 07:36:27 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_base64_extra_operand() {
|
|
|
|
// Expect a failure when multiple files are specified.
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("a.txt")
|
|
|
|
.arg("a.txt")
|
|
|
|
.fails()
|
2021-06-21 22:22:30 +00:00
|
|
|
.stderr_only("base64: extra operand 'a.txt'");
|
2021-04-28 07:36:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_base64_file_not_found() {
|
|
|
|
new_ucmd!()
|
|
|
|
.arg("a.txt")
|
|
|
|
.fails()
|
2021-05-25 23:45:53 +00:00
|
|
|
.stderr_only("base64: a.txt: No such file or directory");
|
2021-04-28 07:36:27 +00:00
|
|
|
}
|