diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-03 15:49:40 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-03 15:49:40 +0000 |
commit | 21afc7dc291f1cb11feec7a9766bf3542545f581 (patch) | |
tree | 5cf8056965bf44d78ef9937fe1f529fa2915e772 /testsuite | |
parent | 22dca23d52c836e40c79cb4042b867fdc06f6ca3 (diff) | |
download | busybox-21afc7dc291f1cb11feec7a9766bf3542545f581.tar.gz |
uuencode: common implementation for wget and uuencode (closing bug 694)
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/uuencode.tests | 28 | ||||
-rw-r--r-- | testsuite/uuencode/uuencode-sets-standard-input-mode-correctly | 4 |
2 files changed, 28 insertions, 4 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 @@ +#!/bin/sh + +# unit test for uuencode to test functionality. +# Copyright 2006 by Erik Hovland <erik@hovland.org> +# Licensed under GPL v2, see file LICENSE for details. + +# AUDIT: Unit tests for uuencode + +. testing.sh + +# testing "test name" "options" "expected result" "file input" "stdin" +# file input will be file called "input" +# test can create a file "actual" instead of writing to stdout + +# Test setup of standard input +saved_umask=$(umask) +umask 0 +testing "uuencode sets standard input mode correctly" \ + "uuencode foo </dev/null | head -n 1 | grep -q 666 && echo yes" "yes\n" "" "" +umask $saved_umask + +testing "uuencode correct encoding" "uuencode bb_uuenc_test.out" \ +"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" \ + "" "The fast grey fox jumped over the lazy brown dog.\n" +testing "uuencode correct base64 encoding" "uuencode -m bb_uuenc_test.out" \ +"begin-base64 644 bb_uuenc_test.out\nVGhlIGZhc3QgZ3JleSBmb3gganVtcGVkIG92ZXIgdGhlIGxhenkgYnJvd24g\nZG9nLgo=\n====\n" \ + "" "The fast grey fox jumped over the lazy brown dog.\n" +exit $FAILCOUNT diff --git a/testsuite/uuencode/uuencode-sets-standard-input-mode-correctly b/testsuite/uuencode/uuencode-sets-standard-input-mode-correctly deleted file mode 100644 index 1a48a6656..000000000 --- a/testsuite/uuencode/uuencode-sets-standard-input-mode-correctly +++ /dev/null @@ -1,4 +0,0 @@ -saved_umask=$(umask) -umask 0 -busybox uuencode foo </dev/null | head -n 1 | grep -q 666 -umask $saved_umask |