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
a6f68e1b
Kaydet (Commit)
a6f68e1b
authored
Haz 09, 2005
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert gzip test suite to use unittest
üst
6564ca72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
110 additions
and
74 deletions
+110
-74
test_gzip.py
Lib/test/test_gzip.py
+110
-74
No files found.
Lib/test/test_gzip.py
Dosyayı görüntüle @
a6f68e1b
from
test.test_support
import
verify
,
TESTFN
#! /usr/bin/env python
"""Test script for the gzip module.
"""
import
unittest
from
test
import
test_support
import
sys
,
os
import
sys
,
os
import
gzip
import
gzip
filename
=
TESTFN
data1
=
""" int length=DEFAULTALLOC, err = Z_OK;
data1
=
""" int length=DEFAULTALLOC, err = Z_OK;
PyObject *RetVal;
PyObject *RetVal;
...
@@ -16,75 +20,107 @@ data2 = """/* zlibmodule.c -- gzip-compatible data compression */
...
@@ -16,75 +20,107 @@ data2 = """/* zlibmodule.c -- gzip-compatible data compression */
/* See http://www.winimage.com/zLibDll for Windows */
/* See http://www.winimage.com/zLibDll for Windows */
"""
"""
f
=
gzip
.
GzipFile
(
filename
,
'wb'
)
;
f
.
write
(
data1
*
50
)
class
TestGzip
(
unittest
.
TestCase
):
# Try flush and fileno.
filename
=
test_support
.
TESTFN
f
.
flush
()
f
.
fileno
()
def
setUp
(
self
):
if
hasattr
(
os
,
'fsync'
):
pass
os
.
fsync
(
f
.
fileno
())
f
.
close
()
def
tearDown
(
self
):
try
:
# Try reading.
os
.
unlink
(
self
.
filename
)
f
=
gzip
.
GzipFile
(
filename
,
'r'
)
;
d
=
f
.
read
()
;
f
.
close
()
except
os
.
error
:
verify
(
d
==
data1
*
50
)
pass
# Append to the previous file
f
=
gzip
.
GzipFile
(
filename
,
'ab'
)
;
f
.
write
(
data2
*
15
)
;
f
.
close
()
def
test_write
(
self
):
f
=
gzip
.
GzipFile
(
self
.
filename
,
'wb'
)
;
f
.
write
(
data1
*
50
)
f
=
gzip
.
GzipFile
(
filename
,
'rb'
)
;
d
=
f
.
read
()
;
f
.
close
()
verify
(
d
==
(
data1
*
50
)
+
(
data2
*
15
))
# Try flush and fileno.
f
.
flush
()
# Try .readline() with varying line lengths
f
.
fileno
()
if
hasattr
(
os
,
'fsync'
):
f
=
gzip
.
GzipFile
(
filename
,
'rb'
)
os
.
fsync
(
f
.
fileno
())
line_length
=
0
f
.
close
()
while
1
:
L
=
f
.
readline
(
line_length
)
def
test_read
(
self
):
if
L
==
""
and
line_length
!=
0
:
break
self
.
test_write
()
verify
(
len
(
L
)
<=
line_length
)
# Try reading.
line_length
=
(
line_length
+
1
)
%
50
f
=
gzip
.
GzipFile
(
self
.
filename
,
'r'
)
;
d
=
f
.
read
()
;
f
.
close
()
f
.
close
()
self
.
assertEqual
(
d
,
data1
*
50
)
# Try .readlines()
def
test_append
(
self
):
self
.
test_write
()
f
=
gzip
.
GzipFile
(
filename
,
'rb'
)
# Append to the previous file
L
=
f
.
readlines
()
f
=
gzip
.
GzipFile
(
self
.
filename
,
'ab'
)
;
f
.
write
(
data2
*
15
)
;
f
.
close
()
f
.
close
()
f
=
gzip
.
GzipFile
(
self
.
filename
,
'rb'
)
;
d
=
f
.
read
()
;
f
.
close
()
f
=
gzip
.
GzipFile
(
filename
,
'rb'
)
self
.
assertEqual
(
d
,
(
data1
*
50
)
+
(
data2
*
15
))
while
1
:
L
=
f
.
readlines
(
150
)
def
test_readline
(
self
):
if
L
==
[]:
break
self
.
test_write
()
f
.
close
()
# Try .readline() with varying line lengths
# Try seek, read test
f
=
gzip
.
GzipFile
(
self
.
filename
,
'rb'
)
line_length
=
0
f
=
gzip
.
GzipFile
(
filename
)
while
1
:
while
1
:
L
=
f
.
readline
(
line_length
)
oldpos
=
f
.
tell
()
if
L
==
""
and
line_length
!=
0
:
break
line1
=
f
.
readline
()
self
.
assert_
(
len
(
L
)
<=
line_length
)
if
not
line1
:
break
line_length
=
(
line_length
+
1
)
%
50
newpos
=
f
.
tell
()
f
.
close
()
f
.
seek
(
oldpos
)
# negative seek
if
len
(
line1
)
>
10
:
def
test_readlines
(
self
):
amount
=
10
self
.
test_write
()
else
:
# Try .readlines()
amount
=
len
(
line1
)
line2
=
f
.
read
(
amount
)
f
=
gzip
.
GzipFile
(
self
.
filename
,
'rb'
)
verify
(
line1
[:
amount
]
==
line2
)
L
=
f
.
readlines
()
f
.
seek
(
newpos
)
# positive seek
f
.
close
()
f
.
close
()
f
=
gzip
.
GzipFile
(
self
.
filename
,
'rb'
)
# Try seek, write test
while
1
:
f
=
gzip
.
GzipFile
(
filename
,
'w'
)
L
=
f
.
readlines
(
150
)
for
pos
in
range
(
0
,
256
,
16
):
if
L
==
[]:
break
f
.
seek
(
pos
)
f
.
close
()
f
.
write
(
'GZ
\n
'
)
f
.
close
()
def
test_seek_read
(
self
):
self
.
test_write
()
f
=
gzip
.
GzipFile
(
filename
,
'r'
)
# Try seek, read test
verify
(
f
.
myfileobj
.
mode
==
'rb'
)
f
.
close
()
f
=
gzip
.
GzipFile
(
self
.
filename
)
while
1
:
os
.
unlink
(
filename
)
oldpos
=
f
.
tell
()
line1
=
f
.
readline
()
if
not
line1
:
break
newpos
=
f
.
tell
()
f
.
seek
(
oldpos
)
# negative seek
if
len
(
line1
)
>
10
:
amount
=
10
else
:
amount
=
len
(
line1
)
line2
=
f
.
read
(
amount
)
self
.
assertEqual
(
line1
[:
amount
],
line2
)
f
.
seek
(
newpos
)
# positive seek
f
.
close
()
def
test_seek_write
(
self
):
# Try seek, write test
f
=
gzip
.
GzipFile
(
self
.
filename
,
'w'
)
for
pos
in
range
(
0
,
256
,
16
):
f
.
seek
(
pos
)
f
.
write
(
'GZ
\n
'
)
f
.
close
()
def
test_mode
(
self
):
self
.
test_write
()
f
=
gzip
.
GzipFile
(
self
.
filename
,
'r'
)
self
.
assertEqual
(
f
.
myfileobj
.
mode
,
'rb'
)
f
.
close
()
def
test_main
(
verbose
=
None
):
test_support
.
run_unittest
(
TestGzip
)
if
__name__
==
"__main__"
:
test_main
(
verbose
=
True
)
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