view tests/uuencode.test @ 1650:a740a876c76c draft

Cleanup pass on printf. Alas, passing a union as the last argument to printf does not appear to work reliably, and there's no obvious way to manually assemble varargs in a portable manner. So I have to repeat the printf once for each data type. Oh well.
author Rob Landley <rob@landley.net>
date Sun, 11 Jan 2015 01:22:36 -0600
parents 8700cbe1cb29
children
line wrap: on
line source

#!/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"