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
275dfda6
Kaydet (Commit)
275dfda6
authored
May 22, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert binhex regression test to PyUnit. We could use a better test
for this.
üst
dea48ec5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
40 deletions
+38
-40
test_binhex.py
Lib/test/test_binhex.py
+38
-40
No files found.
Lib/test/test_binhex.py
Dosyayı görüntüle @
275dfda6
...
...
@@ -2,46 +2,44 @@
"""Test script for the binhex C module
Uses the mechanism of the python binhex module
Roger E. Masse
Based on an original test by Roger E. Masse.
"""
import
binhex
import
os
import
tempfile
from
test_support
import
verbose
,
TestSkipped
def
test
():
try
:
fname1
=
tempfile
.
mktemp
()
fname2
=
tempfile
.
mktemp
()
f
=
open
(
fname1
,
'w'
)
except
:
raise
TestSkipped
,
"Cannot test binhex without a temp file"
start
=
'Jack is my hero'
f
.
write
(
start
)
f
.
close
()
binhex
.
binhex
(
fname1
,
fname2
)
if
verbose
:
print
'binhex'
binhex
.
hexbin
(
fname2
,
fname1
)
if
verbose
:
print
'hexbin'
f
=
open
(
fname1
,
'r'
)
finish
=
f
.
readline
()
f
.
close
()
# on Windows an open file cannot be unlinked
if
start
!=
finish
:
print
'Error: binhex != hexbin'
elif
verbose
:
print
'binhex == hexbin'
try
:
import
os
os
.
unlink
(
fname1
)
os
.
unlink
(
fname2
)
except
:
pass
test
()
import
test_support
import
unittest
class
BinHexTestCase
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
fname1
=
tempfile
.
mktemp
()
self
.
fname2
=
tempfile
.
mktemp
()
def
tearDown
(
self
):
try
:
os
.
unlink
(
self
.
fname1
)
except
OSError
:
pass
try
:
os
.
unlink
(
self
.
fname2
)
except
OSError
:
pass
DATA
=
'Jack is my hero'
def
test_binhex
(
self
):
f
=
open
(
self
.
fname1
,
'w'
)
f
.
write
(
self
.
DATA
)
f
.
close
()
binhex
.
binhex
(
self
.
fname1
,
self
.
fname2
)
binhex
.
hexbin
(
self
.
fname2
,
self
.
fname1
)
f
=
open
(
self
.
fname1
,
'r'
)
finish
=
f
.
readline
()
f
.
close
()
self
.
assertEqual
(
self
.
DATA
,
finish
)
test_support
.
run_unittest
(
BinHexTestCase
)
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