aboutsummaryrefslogtreecommitdiff
path: root/testsuite/uuencode.tests
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 15:49:40 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 15:49:40 +0000
commit21afc7dc291f1cb11feec7a9766bf3542545f581 (patch)
tree5cf8056965bf44d78ef9937fe1f529fa2915e772 /testsuite/uuencode.tests
parent22dca23d52c836e40c79cb4042b867fdc06f6ca3 (diff)
downloadbusybox-w32-21afc7dc291f1cb11feec7a9766bf3542545f581.tar.gz
busybox-w32-21afc7dc291f1cb11feec7a9766bf3542545f581.tar.bz2
busybox-w32-21afc7dc291f1cb11feec7a9766bf3542545f581.zip
uuencode: common implementation for wget and uuencode (closing bug 694)
Diffstat (limited to 'testsuite/uuencode.tests')
-rwxr-xr-xtestsuite/uuencode.tests28
1 files changed, 28 insertions, 0 deletions
diff --git a/testsuite/uuencode.tests b/testsuite/uuencode.tests
new file mode 100755
index 000000000..cb658db3b
--- /dev/null
+++ b/testsuite/uuencode.tests
@@ -0,0 +1,28 @@
1#!/bin/sh
2
3# unit test for uuencode to test functionality.
4# Copyright 2006 by Erik Hovland <erik@hovland.org>
5# Licensed under GPL v2, see file LICENSE for details.
6
7# AUDIT: Unit tests for uuencode
8
9. testing.sh
10
11# testing "test name" "options" "expected result" "file input" "stdin"
12# file input will be file called "input"
13# test can create a file "actual" instead of writing to stdout
14
15# Test setup of standard input
16saved_umask=$(umask)
17umask 0
18testing "uuencode sets standard input mode correctly" \
19 "uuencode foo </dev/null | head -n 1 | grep -q 666 && echo yes" "yes\n" "" ""
20umask $saved_umask
21
22testing "uuencode correct encoding" "uuencode bb_uuenc_test.out" \
23"begin 644 bb_uuenc_test.out\nM5&AE(&9A<W0@9W)E>2!F;W@@:G5M<&5D(&]V97(@=&AE(&QA>GD@8G)O=VX@\n%9&]G+@H\`\n\`\nend\n" \
24 "" "The fast grey fox jumped over the lazy brown dog.\n"
25testing "uuencode correct base64 encoding" "uuencode -m bb_uuenc_test.out" \
26"begin-base64 644 bb_uuenc_test.out\nVGhlIGZhc3QgZ3JleSBmb3gganVtcGVkIG92ZXIgdGhlIGxhenkgYnJvd24g\nZG9nLgo=\n====\n" \
27 "" "The fast grey fox jumped over the lazy brown dog.\n"
28exit $FAILCOUNT