2002-07-23 16:04:11 -03:00
|
|
|
from test.test_support import TestFailed
|
2000-09-30 14:03:19 -03:00
|
|
|
import mimetools
|
|
|
|
|
|
|
|
import string,StringIO
|
2001-07-20 16:05:50 -03:00
|
|
|
start = string.ascii_letters + "=" + string.digits + "\n"
|
2000-09-30 14:03:19 -03:00
|
|
|
for enc in ['7bit','8bit','base64','quoted-printable']:
|
|
|
|
print enc,
|
|
|
|
i = StringIO.StringIO(start)
|
|
|
|
o = StringIO.StringIO()
|
|
|
|
mimetools.encode(i,o,enc)
|
|
|
|
i = StringIO.StringIO(o.getvalue())
|
|
|
|
o = StringIO.StringIO()
|
|
|
|
mimetools.decode(i,o,enc)
|
|
|
|
if o.getvalue()==start:
|
|
|
|
print "PASS"
|
|
|
|
else:
|
|
|
|
print "FAIL"
|
|
|
|
print o.getvalue()
|