diff options
author | Rob Landley <rob@landley.net> | 2016-03-15 15:02:21 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-03-15 15:02:21 -0500 |
commit | 2665cd0cf0d1116fae397d5b598a5ae1bd055afa (patch) | |
tree | 56d6513c6116fbb4ce846cfa2fd08473bb99267b /tests | |
parent | 2b999e614c48f084f6a14d589d434904aec6d491 (diff) | |
download | toybox-2665cd0cf0d1116fae397d5b598a5ae1bd055afa.tar.gz |
Add base64.test, and Izabera pointed out that -w0 should disable wrapping.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/base64.test | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/base64.test b/tests/base64.test new file mode 100755 index 00000000..2058198b --- /dev/null +++ b/tests/base64.test @@ -0,0 +1,24 @@ +#!/bin/bash + +[ -f testing.sh ] && . testing.sh + +#testing "name" "command" "result" "infile" "stdin" + +testing "simple" "base64" "c2ltcGxlCg==\n" "" "simple\n" +testing "file" "base64 input" "c2ltcGxlCg==\n" "simple\n" "" +testing "simple -d" "base64 -d" "simple\n" "" "c2ltcGxlCg==\n" +testing "simple -d" "base64 -d input" "simple\n" "c2ltcGxlCg==" "" +testing "default wrap" "base64" \ + "V2UndmUgcmVwbGFjZWQgdGhlIGRpbGl0aGl1bSB0aGV5IG5vcm1hbGx5IHVzZSB3aXRoIEZvbGdl\ncidzIENyeXN0YWxzLg==\n" \ + "" "We've replaced the dilithium they normally use with Folger's Crystals." +testing "multiline -d " "base64 -d" \ + "We've replaced the dilithium they normally use with Folger's Crystals." "" \ + "V2UndmUgcmVwbGFjZWQgdGhlIGRpbGl0aGl1bSB0aGV5IG5vcm1hbGx5IHVzZSB3aXRoIEZvbGdl\ncidzIENyeXN0YWxzLg==\n" + +testing "-w" "base64 -w 10" \ + "TWFyY2hpbm\ncgdG8gdGhl\nIGJlYXQgb2\nYgYSBkaWZm\nZXJlbnQga2\nV0dGxlIG9m\nIGZpc2guCg\n==\n" \ + "" "Marching to the beat of a different kettle of fish.\n" + +testing "-w0" "base64 -w0 input" \ + "VmlraW5ncz8gVGhlcmUgYWluJ3Qgbm8gdmlraW5ncyBoZXJlLiBKdXN0IHVzIGhvbmVzdCBmYXJtZXJzLiBUaGUgdG93biB3YXMgYnVybmluZywgdGhlIHZpbGxhZ2VycyB3ZXJlIGRlYWQuIFRoZXkgZGlkbid0IG5lZWQgdGhvc2Ugc2hlZXAgYW55d2F5LiBUaGF0J3Mgb3VyIHN0b3J5IGFuZCB3ZSdyZSBzdGlja2luZyB0byBpdC4K" \ + "Vikings? There ain't no vikings here. Just us honest farmers. The town was burning, the villagers were dead. They didn't need those sheep anyway. That's our story and we're sticking to it.\n" "" |