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
f387e967
Kaydet (Commit)
f387e967
authored
Şub 16, 2014
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove tests for #19081
üst
384e9cb3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
84 deletions
+21
-84
test_zipimport.py
Lib/test/test_zipimport.py
+21
-84
No files found.
Lib/test/test_zipimport.py
Dosyayı görüntüle @
f387e967
import
io
import
sys
import
os
import
marshal
...
...
@@ -56,27 +55,6 @@ TESTPACK2 = "ziptestpackage2"
TEMP_ZIP
=
os
.
path
.
abspath
(
"junk95142"
+
os
.
extsep
+
"zip"
)
def
_write_zip_package
(
zipname
,
files
,
data_to_prepend
=
b
""
,
compression
=
ZIP_STORED
):
z
=
ZipFile
(
zipname
,
"w"
)
try
:
for
name
,
(
mtime
,
data
)
in
files
.
items
():
zinfo
=
ZipInfo
(
name
,
time
.
localtime
(
mtime
))
zinfo
.
compress_type
=
compression
z
.
writestr
(
zinfo
,
data
)
finally
:
z
.
close
()
if
data_to_prepend
:
# Prepend data to the start of the zipfile
with
open
(
zipname
,
"rb"
)
as
f
:
zip_data
=
f
.
read
()
with
open
(
zipname
,
"wb"
)
as
f
:
f
.
write
(
data_to_prepend
)
f
.
write
(
zip_data
)
class
UncompressedZipImportTestCase
(
ImportHooksBaseTestCase
):
compression
=
ZIP_STORED
...
...
@@ -89,9 +67,26 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase):
ImportHooksBaseTestCase
.
setUp
(
self
)
def
doTest
(
self
,
expected_ext
,
files
,
*
modules
,
**
kw
):
_write_zip_package
(
TEMP_ZIP
,
files
,
data_to_prepend
=
kw
.
get
(
"stuff"
),
compression
=
self
.
compression
)
z
=
ZipFile
(
TEMP_ZIP
,
"w"
)
try
:
for
name
,
(
mtime
,
data
)
in
files
.
items
():
zinfo
=
ZipInfo
(
name
,
time
.
localtime
(
mtime
))
zinfo
.
compress_type
=
self
.
compression
z
.
writestr
(
zinfo
,
data
)
z
.
close
()
stuff
=
kw
.
get
(
"stuff"
,
None
)
if
stuff
is
not
None
:
# Prepend 'stuff' to the start of the zipfile
f
=
open
(
TEMP_ZIP
,
"rb"
)
data
=
f
.
read
()
f
.
close
()
f
=
open
(
TEMP_ZIP
,
"wb"
)
f
.
write
(
stuff
)
f
.
write
(
data
)
f
.
close
()
sys
.
path
.
insert
(
0
,
TEMP_ZIP
)
mod
=
__import__
(
"."
.
join
(
modules
),
globals
(),
locals
(),
...
...
@@ -106,6 +101,7 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase):
self
.
assertEqual
(
file
,
os
.
path
.
join
(
TEMP_ZIP
,
*
modules
)
+
expected_ext
)
finally
:
z
.
close
()
os
.
remove
(
TEMP_ZIP
)
def
testAFakeZlib
(
self
):
...
...
@@ -127,7 +123,7 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase):
# so we'll simply skip it then. Bug #765456.
#
if
"zlib"
in
sys
.
builtin_module_names
:
self
.
skipTest
(
'zlib is a builtin module'
)
return
if
"zlib"
in
sys
.
modules
:
del
sys
.
modules
[
"zlib"
]
files
=
{
"zlib.py"
:
(
NOW
,
test_src
)}
...
...
@@ -391,64 +387,6 @@ class CompressedZipImportTestCase(UncompressedZipImportTestCase):
compression
=
ZIP_DEFLATED
class
ZipFileModifiedAfterImportTestCase
(
ImportHooksBaseTestCase
):
def
setUp
(
self
):
zipimport
.
_zip_directory_cache
.
clear
()
zipimport
.
_zip_stat_cache
.
clear
()
ImportHooksBaseTestCase
.
setUp
(
self
)
def
tearDown
(
self
):
ImportHooksBaseTestCase
.
tearDown
(
self
)
if
os
.
path
.
exists
(
TEMP_ZIP
):
os
.
remove
(
TEMP_ZIP
)
def
testZipFileChangesAfterFirstImport
(
self
):
"""Alter the zip file after caching its index and try an import."""
packdir
=
TESTPACK
+
os
.
sep
files
=
{
packdir
+
"__init__"
+
pyc_ext
:
(
NOW
,
test_pyc
),
packdir
+
TESTMOD
+
".py"
:
(
NOW
,
"test_value = 38
\n
"
),
"ziptest_a.py"
:
(
NOW
,
"test_value = 23
\n
"
),
"ziptest_b.py"
:
(
NOW
,
"test_value = 42
\n
"
),
"ziptest_c.py"
:
(
NOW
,
"test_value = 1337
\n
"
)}
zipfile_path
=
TEMP_ZIP
_write_zip_package
(
zipfile_path
,
files
)
self
.
assertTrue
(
os
.
path
.
exists
(
zipfile_path
))
sys
.
path
.
insert
(
0
,
zipfile_path
)
# Import something out of the zipfile and confirm it is correct.
testmod
=
__import__
(
TESTPACK
+
"."
+
TESTMOD
,
globals
(),
locals
(),
[
"__dummy__"
])
self
.
assertEqual
(
testmod
.
test_value
,
38
)
# Import something else out of the zipfile and confirm it is correct.
ziptest_b
=
__import__
(
"ziptest_b"
,
globals
(),
locals
(),
[
"test_value"
])
self
.
assertEqual
(
ziptest_b
.
test_value
,
42
)
# Truncate and fill the zip file with non-zip garbage.
with
io
.
open
(
zipfile_path
,
"rb"
)
as
orig_zip_file
:
orig_zip_file_contents
=
orig_zip_file
.
read
()
with
io
.
open
(
zipfile_path
,
"wb"
)
as
byebye_valid_zip_file
:
byebye_valid_zip_file
.
write
(
b
"Tear down this wall!
\n
"
*
1987
)
# Now that the zipfile has been replaced, import something else from it
# which should fail as the file contents are now garbage.
with
self
.
assertRaises
(
ImportError
):
ziptest_a
=
__import__
(
"ziptest_a"
,
globals
(),
locals
(),
[
"test_value"
])
# Now lets make it a valid zipfile that has some garbage at the start.
# This alters all of the offsets within the file
with
io
.
open
(
zipfile_path
,
"wb"
)
as
new_zip_file
:
new_zip_file
.
write
(
b
"X"
*
1991
)
# The year Python was created.
new_zip_file
.
write
(
orig_zip_file_contents
)
# Now that the zip file has been "restored" to a valid but different
# zipfile the zipimporter should *successfully* re-read the new zip
# file's end of file central index and be able to import from it again.
ziptest_a
=
__import__
(
"ziptest_a"
,
globals
(),
locals
(),
[
"test_value"
])
self
.
assertEqual
(
ziptest_a
.
test_value
,
23
)
ziptest_c
=
__import__
(
"ziptest_c"
,
globals
(),
locals
(),
[
"test_value"
])
self
.
assertEqual
(
ziptest_c
.
test_value
,
1337
)
class
BadFileZipImportTestCase
(
unittest
.
TestCase
):
def
assertZipFailure
(
self
,
filename
):
self
.
assertRaises
(
zipimport
.
ZipImportError
,
...
...
@@ -526,7 +464,6 @@ def test_main():
UncompressedZipImportTestCase
,
CompressedZipImportTestCase
,
BadFileZipImportTestCase
,
ZipFileModifiedAfterImportTestCase
,
)
finally
:
test_support
.
unlink
(
TESTMOD
)
...
...
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