summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_mimetools.py
blob: 79464a2eaf20a35cd05e15a9bb67c5b05d2153a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from test.test_support import TestFailed
import mimetools

import string,StringIO
start = string.ascii_letters + "=" + string.digits + "\n"
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()