summaryrefslogtreecommitdiff
path: root/Lib/test/test_binhex.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-05-22 21:01:14 +0000
committerFred Drake <fdrake@acm.org>2001-05-22 21:01:14 +0000
commit18ed712bad3beb8c128f56638878e66f34bcf722 (patch)
treea1c13a2f88fa73d0eca6a1278b839db216a32c20 /Lib/test/test_binhex.py
parent83dfa6f5fc27ac4303189a2ac4d651b2171dd97d (diff)
downloadcpython-18ed712bad3beb8c128f56638878e66f34bcf722.tar.gz
Convert binhex regression test to PyUnit. We could use a better test
for this.
Diffstat (limited to 'Lib/test/test_binhex.py')
-rwxr-xr-xLib/test/test_binhex.py78
1 files changed, 38 insertions, 40 deletions
diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py
index a2b2a2c56b..c774200fd8 100755
--- a/Lib/test/test_binhex.py
+++ b/Lib/test/test_binhex.py
@@ -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)