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
18ed712b
Commit
18ed712b
authored
May 22, 2001
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert binhex regression test to PyUnit. We could use a better test
for this.
parent
83dfa6f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
40 deletions
+38
-40
Lib/test/test_binhex.py
Lib/test/test_binhex.py
+38
-40
No files found.
Lib/test/test_binhex.py
View file @
18ed712b
...
...
@@ -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