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
d1795705
Kaydet (Commit)
d1795705
authored
Agu 17, 2001
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Test that uu.py will not override an existing file if out_file isn't
given and the path is gleaned from the uu header.
üst
59dae8ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
test_uu.py
Lib/test/test_uu.py
+34
-0
No files found.
Lib/test/test_uu.py
Dosyayı görüntüle @
d1795705
...
...
@@ -122,3 +122,37 @@ try:
raise
TestFailed
(
"No exception thrown"
)
except
uu
.
Error
,
e
:
verify
(
str
(
e
)
==
'No valid begin line found in input file'
)
# Test to verify that decode() will refuse to overwrite an existing file
import
tempfile
outfile
=
tempfile
.
mktemp
()
inp
=
StringIO
(
'Here is a message to be uuencoded'
)
out
=
StringIO
()
uu
.
encode
(
inp
,
out
,
outfile
)
out
.
seek
(
0
)
try
:
if
verbose
:
print
'9. decode w/file not exists is okay'
uu
.
decode
(
out
)
if
not
os
.
path
.
exists
(
outfile
):
raise
TestFailed
(
'uudecode w/ out_file=None failed'
)
fp
=
open
(
outfile
)
data
=
fp
.
read
()
fp
.
close
()
if
data
<>
inp
.
getvalue
():
raise
TestFailed
(
'uudecode stored something weird'
)
# Try to write it again, which should cause a failure
if
verbose
:
print
'10. uudecode w/file exists fails'
out
.
seek
(
0
)
try
:
uu
.
decode
(
out
)
except
uu
.
Error
:
pass
else
:
raise
TestFailed
(
'expected to get a "file exists" error'
)
finally
:
try
:
os
.
unlink
(
outfile
)
except
OSError
:
pass
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