aboutsummaryrefslogtreecommitdiff
path: root/tests/uuencode.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/uuencode.test')
-rw-r--r--tests/uuencode.test26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/uuencode.test b/tests/uuencode.test
new file mode 100644
index 00000000..7c19faa3
--- /dev/null
+++ b/tests/uuencode.test
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+[ -f testing.sh ] && . testing.sh
+
+#testing "name" "command" "result" "infile" "stdin"
+
+testing "uuencode not enough args [fail]" "uuencode 2>/dev/null" "" "" ""
+
+testing "uuencode uu empty file" "uuencode test" \
+ "begin 744 test\nend\n" "" ""
+testing "uuencode uu 1-char" "uuencode test" \
+ "begin 744 test\n!80\`\`\nend\n" "" "a"
+testing "uuencode uu 2-char" "uuencode test" \
+ "begin 744 test\n\"86(\`\nend\n" "" "ab"
+testing "uuencode uu 3-char" "uuencode test" \
+ "begin 744 test\n#86)C\nend\n" "" "abc"
+
+testing "uuencode b64 empty file" "uuencode -m test" \
+ "begin-base64 744 test\n====\n" "" ""
+testing "uuencode b64 1-char" "uuencode -m test" \
+ "begin-base64 744 test\nYQ==\n====\n" "" "a"
+testing "uuencode b64 2-char" "uuencode -m test" \
+ "begin-base64 744 test\nYWI=\n====\n" "" "ab"
+testing "uuencode b64 3-char" "uuencode -m test" \
+ "begin-base64 744 test\nYWJj\n====\n" "" "abc"
+