mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 18:03:51 +01:00
1e71cd4777
# Description Bumps `base64` to 0.22.1 which fixes the alphabet used for binhex encoding and decoding. This required updating some test expected output. Related to PR #12469 where `base64` was also bumped and ran into the failing tests. # User-Facing Changes Bug fix, but still changes binhex encoding and decoding output. # Tests + Formatting Updated test expected output.
80 lines
1.8 KiB
Rust
80 lines
1.8 KiB
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn base64_defaults_to_encoding_with_standard_character_type() {
|
|
let actual = nu!(r#"
|
|
echo 'username:password' | encode base64
|
|
"#);
|
|
|
|
assert_eq!(actual.out, "dXNlcm5hbWU6cGFzc3dvcmQ=");
|
|
}
|
|
|
|
#[test]
|
|
fn base64_encode_characterset_binhex() {
|
|
let actual = nu!(r#"
|
|
echo 'username:password' | encode base64 --character-set binhex
|
|
"#);
|
|
|
|
assert_eq!(actual.out, "GA0PFQjKE@8kF'&cFhG[FQ3");
|
|
}
|
|
|
|
#[test]
|
|
fn error_when_invalid_character_set_given() {
|
|
let actual = nu!(r#"
|
|
echo 'username:password' | encode base64 --character-set 'this is invalid'
|
|
"#);
|
|
|
|
assert!(actual
|
|
.err
|
|
.contains("this is invalid is not a valid character-set"));
|
|
}
|
|
|
|
#[test]
|
|
fn base64_decode_characterset_binhex() {
|
|
let actual = nu!(
|
|
r#""GA0PFQjKE@8kF'&cFhG[FQ3" | decode base64 --character-set binhex --binary | decode utf-8"#
|
|
);
|
|
|
|
assert_eq!(actual.out, "username:password");
|
|
}
|
|
|
|
#[test]
|
|
fn error_invalid_decode_value() {
|
|
let actual = nu!(r#"
|
|
echo "this should not be a valid encoded value" | decode base64 --character-set url-safe
|
|
"#);
|
|
|
|
assert!(actual
|
|
.err
|
|
.contains("invalid base64 input for character set url-safe"));
|
|
}
|
|
|
|
#[test]
|
|
fn md5_works_with_file() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open sample.db --raw | hash md5
|
|
"#
|
|
)
|
|
);
|
|
|
|
assert_eq!(actual.out, "4de97601d232c427977ef11db396c951");
|
|
}
|
|
|
|
#[test]
|
|
fn sha256_works_with_file() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open sample.db --raw | hash sha256
|
|
"#
|
|
)
|
|
);
|
|
|
|
assert_eq!(
|
|
actual.out,
|
|
"2f5050e7eea415c1f3d80b5d93355efd15043ec9157a2bb167a9e73f2ae651f2"
|
|
);
|
|
}
|