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
b067e628
Kaydet (Commit)
b067e628
authored
May 11, 2004
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More boiled down tests from Anthony's big torture suite.
üst
769f14a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
2 deletions
+26
-2
test_email.py
Lib/email/test/test_email.py
+26
-2
No files found.
Lib/email/test/test_email.py
Dosyayı görüntüle @
b067e628
...
...
@@ -1032,8 +1032,8 @@ class TestMIMEText(unittest.TestCase):
# Test
a more complicated multipart/mixed type message
class
TestMultipart
Mixed
(
TestEmailBase
):
# Test
complicated multipart/* messages
class
TestMultipart
(
TestEmailBase
):
def
setUp
(
self
):
fp
=
openfile
(
'PyBanner048.gif'
)
try
:
...
...
@@ -1305,6 +1305,26 @@ hello world
'''
)
def
test_message_external_body
(
self
):
eq
=
self
.
assertEqual
msg
=
self
.
_msgobj
(
'msg_36.txt'
)
eq
(
len
(
msg
.
get_payload
()),
2
)
msg1
=
msg
.
get_payload
(
1
)
eq
(
msg1
.
get_content_type
(),
'multipart/alternative'
)
eq
(
len
(
msg1
.
get_payload
()),
2
)
for
subpart
in
msg1
.
get_payload
():
eq
(
subpart
.
get_content_type
(),
'message/external-body'
)
eq
(
len
(
subpart
.
get_payload
()),
1
)
subsubpart
=
subpart
.
get_payload
(
0
)
eq
(
subsubpart
.
get_content_type
(),
'text/plain'
)
def
test_double_boundary
(
self
):
# msg_37.txt is a multipart that contains two dash-boundary's in a
# row. Our interpretation of RFC 2046 calls for ignoring the second
# and subsequent boundaries.
msg
=
self
.
_msgobj
(
'msg_37.txt'
)
self
.
assertEqual
(
len
(
msg
.
get_payload
()),
3
)
# Test some badly formatted messages
...
...
@@ -1863,6 +1883,10 @@ class TestIdempotent(TestEmailBase):
msg
,
text
=
self
.
_msgobj
(
'msg_12a.txt'
)
self
.
_idempotent
(
msg
,
text
)
def
test_message_external_body_idempotent
(
self
):
msg
,
text
=
self
.
_msgobj
(
'msg_36.txt'
)
self
.
_idempotent
(
msg
,
text
)
def
test_content_type
(
self
):
eq
=
self
.
assertEquals
unless
=
self
.
failUnless
...
...
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