Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
88910212
Commit
88910212
authored
May 22, 2003
by
Walter Dörwald
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Port test_mimetools.py to PyUnit and add various tests.
From SF patch #736962.
parent
fee10040
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
23 deletions
+51
-23
Lib/test/output/test_mimetools
Lib/test/output/test_mimetools
+0
-5
Lib/test/test_mimetools.py
Lib/test/test_mimetools.py
+51
-18
No files found.
Lib/test/output/test_mimetools
deleted
100644 → 0
View file @
fee10040
test_mimetools
7bit PASS
8bit PASS
base64 PASS
quoted-printable PASS
Lib/test/test_mimetools.py
View file @
88910212
from
test.test_support
import
TestFailed
import
unittest
import
mimetools
from
test
import
test_support
import
string
,
StringIO
import
string
,
StringIO
,
mimetools
,
sets
start
=
string
.
ascii_letters
+
"="
+
string
.
digits
+
"
\
n
"
for
enc
in
[
'7bit'
,
'8bit'
,
'base64'
,
'quoted-printable'
]:
msgtext1
=
mimetools
.
Message
(
StringIO
.
StringIO
(
print
enc
,
"""Content-Type: text/plain; charset=iso-8859-1; format=flowed
i
=
StringIO
.
StringIO
(
start
)
Content-Transfer-Encoding: 8bit
o
=
StringIO
.
StringIO
()
mimetools
.
encode
(
i
,
o
,
enc
)
Foo!
i
=
StringIO
.
StringIO
(
o
.
getvalue
())
"""
))
o
=
StringIO
.
StringIO
()
mimetools
.
decode
(
i
,
o
,
enc
)
class
MimeToolsTest
(
unittest
.
TestCase
):
if
o
.
getvalue
()
==
start
:
print
"PASS"
def
test_decodeencode
(
self
):
else
:
start
=
string
.
ascii_letters
+
"="
+
string
.
digits
+
"
\
n
"
print
"FAIL"
for
enc
in
[
'7bit'
,
'8bit'
,
'base64'
,
'quoted-printable'
,
print
o
.
getvalue
()
'uuencode'
,
'x-uuencode'
,
'uue'
,
'x-uue'
]:
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
)
self
.
assertEqual
(
o
.
getvalue
(),
start
)
def
test_boundary
(
self
):
s
=
sets
.
Set
([
""
])
for
i
in
xrange
(
100
):
nb
=
mimetools
.
choose_boundary
()
self
.
assert_
(
nb
not
in
s
)
s
.
add
(
nb
)
def
test_message
(
self
):
msg
=
mimetools
.
Message
(
StringIO
.
StringIO
(
msgtext1
))
self
.
assertEqual
(
msg
.
gettype
(),
"text/plain"
)
self
.
assertEqual
(
msg
.
getmaintype
(),
"text"
)
self
.
assertEqual
(
msg
.
getsubtype
(),
"plain"
)
self
.
assertEqual
(
msg
.
getplist
(),
[
"charset=iso-8859-1"
,
"format=flowed"
])
self
.
assertEqual
(
msg
.
getparamnames
(),
[
"charset"
,
"format"
])
self
.
assertEqual
(
msg
.
getparam
(
"charset"
),
"iso-8859-1"
)
self
.
assertEqual
(
msg
.
getparam
(
"format"
),
"flowed"
)
self
.
assertEqual
(
msg
.
getparam
(
"spam"
),
None
)
self
.
assertEqual
(
msg
.
getencoding
(),
"8bit"
)
def
test_main
():
test_support
.
run_unittest
(
MimeToolsTest
)
if
__name__
==
"__main__"
:
test_main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment