Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
88910212
Kaydet (Commit)
88910212
authored
May 22, 2003
tarafından
Walter Dörwald
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Port test_mimetools.py to PyUnit and add various tests.
From SF patch #736962.
üst
fee10040
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
23 deletions
+51
-23
test_mimetools
Lib/test/output/test_mimetools
+0
-5
test_mimetools.py
Lib/test/test_mimetools.py
+51
-18
No files found.
Lib/test/output/test_mimetools
deleted
100644 → 0
Dosyayı görüntüle @
fee10040
test_mimetools
7bit PASS
8bit PASS
base64 PASS
quoted-printable PASS
Lib/test/test_mimetools.py
Dosyayı görüntüle @
88910212
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
()
import
unittest
from
test
import
test_support
import
string
,
StringIO
,
mimetools
,
sets
msgtext1
=
mimetools
.
Message
(
StringIO
.
StringIO
(
"""Content-Type: text/plain; charset=iso-8859-1; format=flowed
Content-Transfer-Encoding: 8bit
Foo!
"""
))
class
MimeToolsTest
(
unittest
.
TestCase
):
def
test_decodeencode
(
self
):
start
=
string
.
ascii_letters
+
"="
+
string
.
digits
+
"
\n
"
for
enc
in
[
'7bit'
,
'8bit'
,
'base64'
,
'quoted-printable'
,
'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