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
3b287702
Kaydet (Commit)
3b287702
authored
Ara 15, 2005
tarafından
Walter Dörwald
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add two tests for the script interface.
üst
9235ea4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
5 deletions
+19
-5
test_quopri.py
Lib/test/test_quopri.py
+19
-5
No files found.
Lib/test/test_quopri.py
Dosyayı görüntüle @
3b287702
from
test
import
test_support
import
unittest
from
cStringIO
import
StringIO
import
sys
,
os
,
c
StringIO
import
quopri
...
...
@@ -145,16 +145,16 @@ zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz''')
@withpythonimplementation
def
test_encode
(
self
):
for
p
,
e
in
self
.
STRINGS
:
infp
=
StringIO
(
p
)
outfp
=
StringIO
()
infp
=
cStringIO
.
StringIO
(
p
)
outfp
=
cStringIO
.
StringIO
()
quopri
.
encode
(
infp
,
outfp
,
quotetabs
=
False
)
self
.
assert_
(
outfp
.
getvalue
()
==
e
)
@withpythonimplementation
def
test_decode
(
self
):
for
p
,
e
in
self
.
STRINGS
:
infp
=
StringIO
(
e
)
outfp
=
StringIO
()
infp
=
cStringIO
.
StringIO
(
e
)
outfp
=
cStringIO
.
StringIO
()
quopri
.
decode
(
infp
,
outfp
)
self
.
assert_
(
outfp
.
getvalue
()
==
p
)
...
...
@@ -174,6 +174,20 @@ zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz''')
for
p
,
e
in
self
.
HSTRINGS
:
self
.
assert_
(
quopri
.
decodestring
(
e
,
header
=
True
)
==
p
)
def
test_scriptencode
(
self
):
(
p
,
e
)
=
self
.
STRINGS
[
-
1
]
(
cin
,
cout
)
=
os
.
popen2
(
"
%
s -mquopri"
%
sys
.
executable
)
cin
.
write
(
p
)
cin
.
close
()
self
.
assert_
(
cout
.
read
()
==
e
)
def
test_scriptdecode
(
self
):
(
p
,
e
)
=
self
.
STRINGS
[
-
1
]
(
cin
,
cout
)
=
os
.
popen2
(
"
%
s -mquopri -d"
%
sys
.
executable
)
cin
.
write
(
e
)
cin
.
close
()
self
.
assert_
(
cout
.
read
()
==
p
)
def
test_main
():
test_support
.
run_unittest
(
QuopriTestCase
)
...
...
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