blob: 4f159829795fdb3a8a1852018b4fba5be18f9012 [file] [log] [blame]
Jack Jansen10882f62003-01-28 21:39:28 +00001# Copyright (C) 2003 Python Software Foundation
2
3import unittest
Jack Jansen10882f62003-01-28 21:39:28 +00004import os
Jack Jansenaddc5852003-01-28 23:54:05 +00005import sys
Jack Jansen10882f62003-01-28 21:39:28 +00006from test import test_support
7
R. David Murray59beec32009-03-30 19:04:00 +00008MacOS = test_support.import_module('MacOS')
9#The following modules should exist if MacOS exists.
10import Carbon.File
11import macostools
12
Jack Jansen10882f62003-01-28 21:39:28 +000013TESTFN2 = test_support.TESTFN + '2'
14
15class TestMacostools(unittest.TestCase):
16
17 def setUp(self):
18 fp = open(test_support.TESTFN, 'w')
19 fp.write('hello world\n')
20 fp.close()
21 rfp = MacOS.openrf(test_support.TESTFN, '*wb')
22 rfp.write('goodbye world\n')
23 rfp.close()
24
25 def tearDown(self):
Florent Xicluna6257a7b2010-03-31 22:01:03 +000026 test_support.unlink(test_support.TESTFN)
27 test_support.unlink(TESTFN2)
Tim Petersf2715e02003-02-19 02:35:07 +000028
Jack Jansen10882f62003-01-28 21:39:28 +000029 def compareData(self):
30 fp = open(test_support.TESTFN, 'r')
31 data1 = fp.read()
32 fp.close()
33 fp = open(TESTFN2, 'r')
34 data2 = fp.read()
35 fp.close()
36 if data1 != data2:
37 return 'Data forks differ'
38 rfp = MacOS.openrf(test_support.TESTFN, '*rb')
39 data1 = rfp.read(1000)
40 rfp.close()
41 rfp = MacOS.openrf(TESTFN2, '*rb')
42 data2 = rfp.read(1000)
43 rfp.close()
44 if data1 != data2:
45 return 'Resource forks differ'
46 return ''
Tim Petersf2715e02003-02-19 02:35:07 +000047
Jack Jansen10882f62003-01-28 21:39:28 +000048 def test_touched(self):
49 # This really only tests that nothing unforeseen happens.
Florent Xicluna6257a7b2010-03-31 22:01:03 +000050 with test_support.check_warnings(('macostools.touched*',
51 DeprecationWarning), quiet=True):
Brett Cannon5e263512007-05-20 23:17:38 +000052 macostools.touched(test_support.TESTFN)
Tim Petersf2715e02003-02-19 02:35:07 +000053
Ronald Oussorenab3f5cb2010-02-07 11:38:28 +000054 if sys.maxint < 2**32:
55 def test_copy(self):
Florent Xicluna6257a7b2010-03-31 22:01:03 +000056 test_support.unlink(TESTFN2)
Ronald Oussorenab3f5cb2010-02-07 11:38:28 +000057 macostools.copy(test_support.TESTFN, TESTFN2)
58 self.assertEqual(self.compareData(), '')
Tim Petersf2715e02003-02-19 02:35:07 +000059
Ronald Oussorenab3f5cb2010-02-07 11:38:28 +000060 if sys.maxint < 2**32:
61 def test_mkalias(self):
Florent Xicluna6257a7b2010-03-31 22:01:03 +000062 test_support.unlink(TESTFN2)
Ronald Oussorenab3f5cb2010-02-07 11:38:28 +000063 macostools.mkalias(test_support.TESTFN, TESTFN2)
64 fss, _, _ = Carbon.File.ResolveAliasFile(TESTFN2, 0)
65 self.assertEqual(fss.as_pathname(), os.path.realpath(test_support.TESTFN))
Tim Petersf2715e02003-02-19 02:35:07 +000066
Ronald Oussorenab3f5cb2010-02-07 11:38:28 +000067 def test_mkalias_relative(self):
Florent Xicluna6257a7b2010-03-31 22:01:03 +000068 test_support.unlink(TESTFN2)
Ronald Oussorenab3f5cb2010-02-07 11:38:28 +000069 # If the directory doesn't exist, then chances are this is a new
70 # install of Python so don't create it since the user might end up
71 # running ``sudo make install`` and creating the directory here won't
72 # leave it with the proper permissions.
73 if not os.path.exists(sys.prefix):
74 return
75 macostools.mkalias(test_support.TESTFN, TESTFN2, sys.prefix)
76 fss, _, _ = Carbon.File.ResolveAliasFile(TESTFN2, 0)
77 self.assertEqual(fss.as_pathname(), os.path.realpath(test_support.TESTFN))
Tim Petersf2715e02003-02-19 02:35:07 +000078
79
Jack Jansen10882f62003-01-28 21:39:28 +000080def test_main():
Benjamin Peterson6f5a2b52008-06-19 21:39:06 +000081 # Skip on wide unicode
82 if len(u'\0'.encode('unicode-internal')) == 4:
Benjamin Peterson888a39b2009-03-26 20:48:25 +000083 raise unittest.SkipTest("test_macostools is broken in USC4")
Jack Jansen10882f62003-01-28 21:39:28 +000084 test_support.run_unittest(TestMacostools)
85
86
87if __name__ == '__main__':
88 test_main()