Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e7a0cc2a
Commit
e7a0cc2a
authored
Jul 04, 2009
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
if zlib -> skipUnless(zlib) and minor cleanups
parent
1844b0d7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
37 deletions
+49
-37
Lib/test/test_zipfile.py
Lib/test/test_zipfile.py
+49
-37
No files found.
Lib/test/test_zipfile.py
View file @
e7a0cc2a
...
...
@@ -4,11 +4,17 @@ try:
except
ImportError
:
zlib
=
None
import
zipfile
,
os
,
unittest
,
sys
,
shutil
,
struct
import
os
import
sys
import
shutil
import
struct
import
zipfile
import
unittest
from
StringIO
import
StringIO
from
tempfile
import
TemporaryFile
from
random
import
randint
,
random
from
unittest
import
skipUnless
import
test.test_support
as
support
from
test.test_support
import
TESTFN
,
run_unittest
,
findfile
...
...
@@ -217,31 +223,37 @@ class TestsWithSourceFile(unittest.TestCase):
for
f
in
(
TESTFN2
,
TemporaryFile
(),
StringIO
()):
self
.
zipIterlinesTest
(
f
,
zipfile
.
ZIP_STORED
)
if
zlib
:
@
skipUnless
(
zlib
,
"requires zlib"
)
def
testDeflated
(
self
):
for
f
in
(
TESTFN2
,
TemporaryFile
(),
StringIO
()):
self
.
zipTest
(
f
,
zipfile
.
ZIP_DEFLATED
)
@
skipUnless
(
zlib
,
"requires zlib"
)
def
testOpenDeflated
(
self
):
for
f
in
(
TESTFN2
,
TemporaryFile
(),
StringIO
()):
self
.
zipOpenTest
(
f
,
zipfile
.
ZIP_DEFLATED
)
@
skipUnless
(
zlib
,
"requires zlib"
)
def
testRandomOpenDeflated
(
self
):
for
f
in
(
TESTFN2
,
TemporaryFile
(),
StringIO
()):
self
.
zipRandomOpenTest
(
f
,
zipfile
.
ZIP_DEFLATED
)
@
skipUnless
(
zlib
,
"requires zlib"
)
def
testReadlineDeflated
(
self
):
for
f
in
(
TESTFN2
,
TemporaryFile
(),
StringIO
()):
self
.
zipReadlineTest
(
f
,
zipfile
.
ZIP_DEFLATED
)
@
skipUnless
(
zlib
,
"requires zlib"
)
def
testReadlinesDeflated
(
self
):
for
f
in
(
TESTFN2
,
TemporaryFile
(),
StringIO
()):
self
.
zipReadlinesTest
(
f
,
zipfile
.
ZIP_DEFLATED
)
@
skipUnless
(
zlib
,
"requires zlib"
)
def
testIterlinesDeflated
(
self
):
for
f
in
(
TESTFN2
,
TemporaryFile
(),
StringIO
()):
self
.
zipIterlinesTest
(
f
,
zipfile
.
ZIP_DEFLATED
)
@
skipUnless
(
zlib
,
"requires zlib"
)
def
testLowCompression
(
self
):
# Checks for cases where compressed data is larger than original
# Create the ZIP archive
...
...
@@ -387,8 +399,8 @@ class TestsWithSourceFile(unittest.TestCase):
self
.
zip_test_writestr_permissions
(
f
,
zipfile
.
ZIP_STORED
)
def
tearDown
(
self
):
os
.
remove
(
TESTFN
)
os
.
remove
(
TESTFN2
)
support
.
unlink
(
TESTFN
)
support
.
unlink
(
TESTFN2
)
class
TestZip64InSmallFiles
(
unittest
.
TestCase
):
# These tests test the ZIP64 functionality without using large files,
...
...
@@ -510,8 +522,8 @@ class TestZip64InSmallFiles(unittest.TestCase):
def
tearDown
(
self
):
zipfile
.
ZIP64_LIMIT
=
self
.
_limit
os
.
remove
(
TESTFN
)
os
.
remove
(
TESTFN2
)
support
.
unlink
(
TESTFN
)
support
.
unlink
(
TESTFN2
)
class
PyZipFileTests
(
unittest
.
TestCase
):
def
testWritePyfile
(
self
):
...
...
@@ -1010,7 +1022,7 @@ class TestsWithMultipleOpens(unittest.TestCase):
zipf
.
close
()
def
tearDown
(
self
):
os
.
remove
(
TESTFN2
)
support
.
unlink
(
TESTFN2
)
class
TestWithDirectory
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
@@ -1037,7 +1049,7 @@ class TestWithDirectory(unittest.TestCase):
def
tearDown
(
self
):
shutil
.
rmtree
(
TESTFN2
)
if
os
.
path
.
exists
(
TESTFN
):
os
.
remove
(
TESTFN
)
support
.
unlink
(
TESTFN
)
class
UniversalNewlineTests
(
unittest
.
TestCase
):
...
...
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