1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
"""
Tests for uu module.
Nick Mathewson
"""
from test_support import verify, TestFailed, verbose, TESTFN
import sys, os
import uu
from StringIO import StringIO
teststr = "The smooth-scaled python crept over the sleeping dog\n"
expected = """\
M5&AE('-M;V]T:\"US8V%L960@<'ET:&]N(&-R97!T(&]V97(@=&AE('-L965P
(:6YG(&1O9PH """
encoded1 = "begin 666 t1\n"+expected+"\n \nend\n"
if verbose:
print '1. encode file->file'
inp = StringIO(teststr)
out = StringIO()
uu.encode(inp, out, "t1")
verify(out.getvalue() == encoded1)
inp = StringIO(teststr)
out = StringIO()
uu.encode(inp, out, "t1", 0644)
verify(out.getvalue() == "begin 644 t1\n"+expected+"\n \nend\n")
if verbose:
print '2. decode file->file'
inp = StringIO(encoded1)
out = StringIO()
uu.decode(inp, out)
verify(out.getvalue() == teststr)
inp = StringIO("""UUencoded files may contain many lines,
even some that have 'begin' in them.\n"""+encoded1)
out = StringIO()
uu.decode(inp, out)
verify(out.getvalue() == teststr)
stdinsave = sys.stdin
stdoutsave = sys.stdout
try:
if verbose:
print '3. encode stdin->stdout'
sys.stdin = StringIO(teststr)
sys.stdout = StringIO()
uu.encode("-", "-", "t1", 0666)
verify(sys.stdout.getvalue() == encoded1)
if verbose:
print >>stdoutsave, '4. decode stdin->stdout'
sys.stdin = StringIO(encoded1)
sys.stdout = StringIO()
uu.decode("-", "-")
verify(sys.stdout.getvalue() == teststr)
finally:
sys.stdin = stdinsave
sys.stdout = stdoutsave
if verbose:
print '5. encode file->file'
tmpIn = TESTFN + "i"
tmpOut = TESTFN + "o"
try:
fin = open(tmpIn, 'wb')
fin.write(teststr)
fin.close()
fin = open(tmpIn, 'rb')
fout = open(tmpOut, 'w')
uu.encode(fin, fout, tmpIn, mode=0644)
fin.close()
fout.close()
fout = open(tmpOut, 'r')
s = fout.read()
fout.close()
verify(s == 'begin 644 ' + tmpIn + '\n' + expected + '\n \nend\n')
os.unlink(tmpIn)
if verbose:
print '6. decode file-> file'
uu.decode(tmpOut)
fin = open(tmpIn, 'rb')
s = fin.read()
fin.close()
verify(s == teststr)
# XXX is there an xp way to verify the mode?
finally:
try:
fin.close()
except:
pass
try:
fout.close()
except:
pass
try:
os.unlink(tmpIn)
except:
pass
try:
os.unlink(tmpOut)
except:
pass
if verbose:
print '7. error: truncated input'
inp = StringIO("begin 644 t1\n"+expected)
out = StringIO()
try:
uu.decode(inp, out)
raise TestFailed("No exception thrown")
except uu.Error, e:
verify(str(e) == 'Truncated input file')
if verbose:
print '8. error: missing begin'
inp = StringIO("")
out = StringIO()
try:
uu.decode(inp, out)
raise TestFailed("No exception thrown")
except uu.Error, e:
verify(str(e) == 'No valid begin line found in input file')
# Test to verify that decode() will refuse to overwrite an existing file
import tempfile
outfile = tempfile.mktemp()
inp = StringIO('Here is a message to be uuencoded')
out = StringIO()
uu.encode(inp, out, outfile)
out.seek(0)
try:
if verbose:
print '9. decode w/file not exists is okay'
uu.decode(out)
if not os.path.exists(outfile):
raise TestFailed('uudecode w/ out_file=None failed')
fp = open(outfile)
data = fp.read()
fp.close()
if data <> inp.getvalue():
raise TestFailed('uudecode stored something weird')
# Try to write it again, which should cause a failure
if verbose:
print '10. uudecode w/file exists fails'
out.seek(0)
try:
uu.decode(out)
except uu.Error:
pass
else:
raise TestFailed('expected to get a "file exists" error')
finally:
try:
os.unlink(outfile)
except OSError:
pass
|