1999-10-19 14:48:54 -03:00
|
|
|
"""Test script for the binhex C module
|
1997-01-16 12:44:09 -04:00
|
|
|
|
|
|
|
Uses the mechanism of the python binhex module
|
2001-05-22 18:01:14 -03:00
|
|
|
Based on an original test by Roger E. Masse.
|
1997-01-16 12:44:09 -04:00
|
|
|
"""
|
2001-05-22 18:01:14 -03:00
|
|
|
import unittest
|
2008-05-20 18:35:26 -03:00
|
|
|
from test import support
|
2020-07-06 06:12:49 -03:00
|
|
|
from test.support import import_helper
|
|
|
|
from test.support import os_helper
|
|
|
|
from test.support import warnings_helper
|
2001-05-22 18:01:14 -03:00
|
|
|
|
2020-07-06 06:12:49 -03:00
|
|
|
|
|
|
|
with warnings_helper.check_warnings(('', DeprecationWarning)):
|
|
|
|
binhex = import_helper.import_fresh_module('binhex')
|
2020-01-22 15:44:22 -04:00
|
|
|
|
2001-05-22 18:01:14 -03:00
|
|
|
|
|
|
|
class BinHexTestCase(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
2020-06-25 11:56:31 -03:00
|
|
|
# binhex supports only file names encodable to Latin1
|
2020-07-06 06:12:49 -03:00
|
|
|
self.fname1 = os_helper.TESTFN_ASCII + "1"
|
|
|
|
self.fname2 = os_helper.TESTFN_ASCII + "2"
|
|
|
|
self.fname3 = os_helper.TESTFN_ASCII + "very_long_filename__very_long_filename__very_long_filename__very_long_filename__"
|
2001-05-22 18:01:14 -03:00
|
|
|
|
|
|
|
def tearDown(self):
|
2020-07-06 06:12:49 -03:00
|
|
|
os_helper.unlink(self.fname1)
|
|
|
|
os_helper.unlink(self.fname2)
|
|
|
|
os_helper.unlink(self.fname3)
|
2001-05-22 18:01:14 -03:00
|
|
|
|
2007-05-22 19:25:42 -03:00
|
|
|
DATA = b'Jack is my hero'
|
2001-05-22 18:01:14 -03:00
|
|
|
|
|
|
|
def test_binhex(self):
|
2019-03-05 04:06:26 -04:00
|
|
|
with open(self.fname1, 'wb') as f:
|
|
|
|
f.write(self.DATA)
|
2001-05-22 18:01:14 -03:00
|
|
|
|
|
|
|
binhex.binhex(self.fname1, self.fname2)
|
|
|
|
|
|
|
|
binhex.hexbin(self.fname2, self.fname1)
|
|
|
|
|
2019-03-05 04:06:26 -04:00
|
|
|
with open(self.fname1, 'rb') as f:
|
|
|
|
finish = f.readline()
|
2001-05-22 18:01:14 -03:00
|
|
|
|
|
|
|
self.assertEqual(self.DATA, finish)
|
|
|
|
|
2011-03-16 22:26:40 -03:00
|
|
|
def test_binhex_error_on_long_filename(self):
|
|
|
|
"""
|
|
|
|
The testcase fails if no exception is raised when a filename parameter provided to binhex.binhex()
|
|
|
|
is too long, or if the exception raised in binhex.binhex() is not an instance of binhex.Error.
|
|
|
|
"""
|
|
|
|
f3 = open(self.fname3, 'wb')
|
|
|
|
f3.close()
|
|
|
|
|
|
|
|
self.assertRaises(binhex.Error, binhex.binhex, self.fname3, self.fname2)
|
2001-05-22 18:01:14 -03:00
|
|
|
|
2020-11-01 05:08:48 -04:00
|
|
|
def test_binhex_line_endings(self):
|
|
|
|
# bpo-29566: Ensure the line endings are those for macOS 9
|
|
|
|
with open(self.fname1, 'wb') as f:
|
|
|
|
f.write(self.DATA)
|
|
|
|
|
|
|
|
binhex.binhex(self.fname1, self.fname2)
|
|
|
|
|
|
|
|
with open(self.fname2, 'rb') as fp:
|
|
|
|
contents = fp.read()
|
|
|
|
|
|
|
|
self.assertNotIn(b'\n', contents)
|
|
|
|
|
2001-09-20 18:33:42 -03:00
|
|
|
def test_main():
|
2008-05-20 18:35:26 -03:00
|
|
|
support.run_unittest(BinHexTestCase)
|
2001-09-20 18:33:42 -03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|