mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
3f332bef35
Mistakes have been made. I forgot about a bunch of `todo`s in the helper functions. So, this PR replaces them with proper errors. It also adds tests for parse-time evaluation, because one `todo` I missed was in a `run_const` function.
57 lines
1.7 KiB
Rust
57 lines
1.7 KiB
Rust
use nu_test_support::nu;
|
||
|
||
#[test]
|
||
fn canonical() {
|
||
super::test_canonical("base32");
|
||
super::test_canonical("base32 --nopad");
|
||
}
|
||
|
||
#[test]
|
||
fn const_() {
|
||
super::test_const("base32");
|
||
super::test_const("base32 --nopad");
|
||
}
|
||
|
||
#[test]
|
||
fn encode() {
|
||
let text = "Ș̗͙̂̏o̲̲̗͗̌͊m̝̊̓́͂ë̡̦̞̤́̌̈́̀ ̥̝̪̎̿ͅf̧̪̻͉͗̈́̍̆u̮̝͌̈́ͅn̹̞̈́̊k̮͇̟͎̂͘y̧̲̠̾̆̕ͅ ̙͖̭͔̂̐t̞́́͘e̢̨͕̽x̥͋t͍̑̔͝";
|
||
let encoded = "KPGIFTEPZSTMZF6NTFX43F6MRTGYVTFSZSZMZF3NZSFMZE6MQHGYFTE5MXGYJTEMZWCMZAGMU3GKDTE6ZSSCBTEOZS743BOMUXGJ3TFKM3GZPTMEZSG4ZBWMVLGLXTFHZWEXLTMMZWCMZLWMTXGYK3WNQTGIVTFZZSPGXTMYZSBMZLWNQ7GJ7TMOPHGL5TEVZSDM3BOMWLGKPTFAEDGIFTEQZSM43FWMVXGZI5GMQHGZRTEBZSPGLTF5ZSRM3FOMVB4M3C6MUV2MZEOMSTGZ3TMN";
|
||
|
||
let outcome = nu!("'{}' | encode base32 --nopad", text);
|
||
assert_eq!(outcome.out, encoded);
|
||
}
|
||
|
||
#[test]
|
||
fn decode_string() {
|
||
let text = "Very important data";
|
||
let encoded = "KZSXE6JANFWXA33SORQW45BAMRQXIYI=";
|
||
|
||
let outcome = nu!("'{}' | decode base32 | decode", encoded);
|
||
assert_eq!(outcome.out, text);
|
||
}
|
||
|
||
#[test]
|
||
fn decode_pad_nopad() {
|
||
let text = "®lnnE¾ˆë";
|
||
let encoded_pad = "YKXGY3TOIXBL5S4GYOVQ====";
|
||
let encoded_nopad = "YKXGY3TOIXBL5S4GYOVQ";
|
||
|
||
let outcome = nu!("'{}' | decode base32 | decode", encoded_pad);
|
||
assert_eq!(outcome.out, text);
|
||
|
||
let outcome = nu!("'{}' | decode base32 --nopad | decode", encoded_nopad);
|
||
assert_eq!(outcome.out, text);
|
||
}
|
||
|
||
#[test]
|
||
fn reject_pad_nopad() {
|
||
let encoded_nopad = "ME";
|
||
let encoded_pad = "ME======";
|
||
|
||
let outcome = nu!("'{}' | decode base32", encoded_nopad);
|
||
assert!(!outcome.err.is_empty());
|
||
|
||
let outcome = nu!("'{}' | decode base32 --nopad", encoded_pad);
|
||
assert!(!outcome.err.is_empty())
|
||
}
|