blob: 3aa0fc06689199cf88f031767a352b66f49c5af1 [file] [log] [blame]
Neal Norwitz2294c0d2003-02-12 23:02:21 +00001import imp
Guido van Rossum0ad59d42009-03-30 22:01:35 +00002import os
3import os.path
Barry Warsaw28a691b2010-04-17 00:19:56 +00004import shutil
Brett Cannon8a9583e2008-09-04 05:04:25 +00005import sys
Thomas Wouters89f507f2006-12-13 04:49:30 +00006import unittest
Benjamin Petersonee8712c2008-05-20 21:35:26 +00007from test import support
Alexander Belopolskye8f58322010-10-15 16:28:20 +00008import importlib
Neal Norwitz2294c0d2003-02-12 23:02:21 +00009
Thomas Wouters89f507f2006-12-13 04:49:30 +000010class LockTests(unittest.TestCase):
Tim Peters579bed72003-04-26 14:31:24 +000011
Thomas Wouters89f507f2006-12-13 04:49:30 +000012 """Very basic test of import lock functions."""
Tim Peters579bed72003-04-26 14:31:24 +000013
Thomas Wouters89f507f2006-12-13 04:49:30 +000014 def verify_lock_state(self, expected):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000015 self.assertEqual(imp.lock_held(), expected,
Thomas Wouters89f507f2006-12-13 04:49:30 +000016 "expected imp.lock_held() to be %r" % expected)
17 def testLock(self):
18 LOOPS = 50
Tim Peters579bed72003-04-26 14:31:24 +000019
Thomas Wouters89f507f2006-12-13 04:49:30 +000020 # The import lock may already be held, e.g. if the test suite is run
21 # via "import test.autotest".
22 lock_held_at_start = imp.lock_held()
23 self.verify_lock_state(lock_held_at_start)
Tim Peters579bed72003-04-26 14:31:24 +000024
Thomas Wouters89f507f2006-12-13 04:49:30 +000025 for i in range(LOOPS):
26 imp.acquire_lock()
27 self.verify_lock_state(True)
Tim Peters579bed72003-04-26 14:31:24 +000028
Thomas Wouters89f507f2006-12-13 04:49:30 +000029 for i in range(LOOPS):
Neal Norwitz2294c0d2003-02-12 23:02:21 +000030 imp.release_lock()
Thomas Wouters89f507f2006-12-13 04:49:30 +000031
32 # The original state should be restored now.
33 self.verify_lock_state(lock_held_at_start)
34
35 if not lock_held_at_start:
36 try:
37 imp.release_lock()
38 except RuntimeError:
39 pass
40 else:
41 self.fail("release_lock() without lock should raise "
42 "RuntimeError")
Neal Norwitz2294c0d2003-02-12 23:02:21 +000043
Guido van Rossumce3a72a2007-10-19 23:16:50 +000044class ImportTests(unittest.TestCase):
Alexander Belopolskye8f58322010-10-15 16:28:20 +000045 def setUp(self):
46 mod = importlib.import_module('test.encoded_modules')
47 self.test_strings = mod.test_strings
48 self.test_path = mod.__path__
49
50 def test_import_encoded_module(self):
51 for modname, encoding, teststr in self.test_strings:
52 mod = importlib.import_module('test.encoded_modules.'
53 'module_' + modname)
54 self.assertEqual(teststr, mod.test)
Guido van Rossumce3a72a2007-10-19 23:16:50 +000055
56 def test_find_module_encoding(self):
Alexander Belopolskye8f58322010-10-15 16:28:20 +000057 for mod, encoding, _ in self.test_strings:
Brett Cannon749afa92010-10-29 23:47:23 +000058 with imp.find_module('module_' + mod, self.test_path)[0] as fd:
59 self.assertEqual(fd.encoding, encoding)
Guido van Rossumce3a72a2007-10-19 23:16:50 +000060
Guido van Rossum40d20bc2007-10-22 00:09:51 +000061 def test_issue1267(self):
Alexander Belopolskye8f58322010-10-15 16:28:20 +000062 for mod, encoding, _ in self.test_strings:
63 fp, filename, info = imp.find_module('module_' + mod,
64 self.test_path)
Brett Cannon749afa92010-10-29 23:47:23 +000065 with fp:
66 self.assertNotEqual(fp, None)
67 self.assertEqual(fp.encoding, encoding)
68 self.assertEqual(fp.tell(), 0)
69 self.assertEqual(fp.readline(), '# test %s encoding\n'
70 % encoding)
Guido van Rossum40d20bc2007-10-22 00:09:51 +000071
72 fp, filename, info = imp.find_module("tokenize")
Brett Cannon749afa92010-10-29 23:47:23 +000073 with fp:
74 self.assertNotEqual(fp, None)
75 self.assertEqual(fp.encoding, "utf-8")
76 self.assertEqual(fp.tell(), 0)
77 self.assertEqual(fp.readline(),
78 '"""Tokenization help for Python programs.\n')
Guido van Rossum40d20bc2007-10-22 00:09:51 +000079
Brett Cannon8a9583e2008-09-04 05:04:25 +000080 def test_issue3594(self):
81 temp_mod_name = 'test_imp_helper'
82 sys.path.insert(0, '.')
83 try:
84 with open(temp_mod_name + '.py', 'w') as file:
85 file.write("# coding: cp1252\nu = 'test.test_imp'\n")
86 file, filename, info = imp.find_module(temp_mod_name)
87 file.close()
88 self.assertEquals(file.encoding, 'cp1252')
89 finally:
90 del sys.path[0]
91 support.unlink(temp_mod_name + '.py')
92 support.unlink(temp_mod_name + '.pyc')
93 support.unlink(temp_mod_name + '.pyo')
94
Guido van Rossum0ad59d42009-03-30 22:01:35 +000095 def test_issue5604(self):
96 # Test cannot cover imp.load_compiled function.
97 # Martin von Loewis note what shared library cannot have non-ascii
98 # character because init_xxx function cannot be compiled
99 # and issue never happens for dynamic modules.
100 # But sources modified to follow generic way for processing pathes.
101
Ezio Melotti435b5312010-03-06 01:20:49 +0000102 # the return encoding could be uppercase or None
103 fs_encoding = sys.getfilesystemencoding()
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000104
105 # covers utf-8 and Windows ANSI code pages
106 # one non-space symbol from every page
107 # (http://en.wikipedia.org/wiki/Code_page)
108 known_locales = {
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000109 'utf-8' : b'\xc3\xa4',
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000110 'cp1250' : b'\x8C',
111 'cp1251' : b'\xc0',
112 'cp1252' : b'\xc0',
113 'cp1253' : b'\xc1',
114 'cp1254' : b'\xc0',
115 'cp1255' : b'\xe0',
116 'cp1256' : b'\xe0',
117 'cp1257' : b'\xc0',
118 'cp1258' : b'\xc0',
119 }
120
Florent Xicluna21164ce2010-03-20 20:30:53 +0000121 if sys.platform == 'darwin':
122 self.assertEqual(fs_encoding, 'utf-8')
123 # Mac OS X uses the Normal Form D decomposition
124 # http://developer.apple.com/mac/library/qa/qa2001/qa1173.html
125 special_char = b'a\xcc\x88'
126 else:
127 special_char = known_locales.get(fs_encoding)
128
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000129 if not special_char:
Ezio Melotti76e0d1a2010-03-05 15:08:19 +0000130 self.skipTest("can't run this test with %s as filesystem encoding"
131 % fs_encoding)
132 decoded_char = special_char.decode(fs_encoding)
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000133 temp_mod_name = 'test_imp_helper_' + decoded_char
134 test_package_name = 'test_imp_helper_package_' + decoded_char
135 init_file_name = os.path.join(test_package_name, '__init__.py')
136 try:
Ezio Melotti41a6b042010-03-06 01:50:25 +0000137 # if the curdir is not in sys.path the test fails when run with
138 # ./python ./Lib/test/regrtest.py test_imp
139 sys.path.insert(0, os.curdir)
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000140 with open(temp_mod_name + '.py', 'w') as file:
141 file.write('a = 1\n')
142 file, filename, info = imp.find_module(temp_mod_name)
Brett Cannon749afa92010-10-29 23:47:23 +0000143 with file:
144 self.assertIsNotNone(file)
145 self.assertTrue(filename[:-3].endswith(temp_mod_name))
146 self.assertEqual(info[0], '.py')
147 self.assertEqual(info[1], 'U')
148 self.assertEqual(info[2], imp.PY_SOURCE)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000149
Brett Cannon749afa92010-10-29 23:47:23 +0000150 mod = imp.load_module(temp_mod_name, file, filename, info)
151 self.assertEqual(mod.a, 1)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000152
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000153 mod = imp.load_source(temp_mod_name, temp_mod_name + '.py')
Ezio Melotti435b5312010-03-06 01:20:49 +0000154 self.assertEqual(mod.a, 1)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000155
Barry Warsaw28a691b2010-04-17 00:19:56 +0000156 mod = imp.load_compiled(
157 temp_mod_name, imp.cache_from_source(temp_mod_name + '.py'))
Ezio Melotti435b5312010-03-06 01:20:49 +0000158 self.assertEqual(mod.a, 1)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000159
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000160 if not os.path.exists(test_package_name):
161 os.mkdir(test_package_name)
162 with open(init_file_name, 'w') as file:
163 file.write('b = 2\n')
164 package = imp.load_package(test_package_name, test_package_name)
Ezio Melotti435b5312010-03-06 01:20:49 +0000165 self.assertEqual(package.b, 2)
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000166 finally:
Ezio Melotti41a6b042010-03-06 01:50:25 +0000167 del sys.path[0]
Ezio Melotti435b5312010-03-06 01:20:49 +0000168 for ext in ('.py', '.pyc', '.pyo'):
169 support.unlink(temp_mod_name + ext)
170 support.unlink(init_file_name + ext)
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000171 support.rmtree(test_package_name)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000172
173
Nick Coghlan6ead5522009-10-18 13:19:33 +0000174class ReloadTests(unittest.TestCase):
175
176 """Very basic tests to make sure that imp.reload() operates just like
177 reload()."""
178
179 def test_source(self):
Florent Xicluna97133722010-03-20 20:31:34 +0000180 # XXX (ncoghlan): It would be nice to use test.support.CleanImport
Nick Coghlan6ead5522009-10-18 13:19:33 +0000181 # here, but that breaks because the os module registers some
182 # handlers in copy_reg on import. Since CleanImport doesn't
183 # revert that registration, the module is left in a broken
184 # state after reversion. Reinitialising the module contents
185 # and just reverting os.environ to its previous state is an OK
186 # workaround
187 with support.EnvironmentVarGuard():
188 import os
189 imp.reload(os)
190
191 def test_extension(self):
192 with support.CleanImport('time'):
193 import time
194 imp.reload(time)
195
196 def test_builtin(self):
197 with support.CleanImport('marshal'):
198 import marshal
199 imp.reload(marshal)
Christian Heimes13a7a212008-01-07 17:13:09 +0000200
Guido van Rossum40d20bc2007-10-22 00:09:51 +0000201
Barry Warsaw28a691b2010-04-17 00:19:56 +0000202class PEP3147Tests(unittest.TestCase):
203 """Tests of PEP 3147."""
204
205 tag = imp.get_tag()
206
207 def test_cache_from_source(self):
208 # Given the path to a .py file, return the path to its PEP 3147
209 # defined .pyc file (i.e. under __pycache__).
210 self.assertEqual(
211 imp.cache_from_source('/foo/bar/baz/qux.py', True),
212 '/foo/bar/baz/__pycache__/qux.{}.pyc'.format(self.tag))
213
214 def test_cache_from_source_optimized(self):
215 # Given the path to a .py file, return the path to its PEP 3147
216 # defined .pyo file (i.e. under __pycache__).
217 self.assertEqual(
218 imp.cache_from_source('/foo/bar/baz/qux.py', False),
219 '/foo/bar/baz/__pycache__/qux.{}.pyo'.format(self.tag))
220
221 def test_cache_from_source_cwd(self):
222 self.assertEqual(imp.cache_from_source('foo.py', True),
223 os.sep.join(('__pycache__',
224 'foo.{}.pyc'.format(self.tag))))
225
226 def test_cache_from_source_override(self):
227 # When debug_override is not None, it can be any true-ish or false-ish
228 # value.
229 self.assertEqual(
230 imp.cache_from_source('/foo/bar/baz.py', []),
231 '/foo/bar/__pycache__/baz.{}.pyo'.format(self.tag))
232 self.assertEqual(
233 imp.cache_from_source('/foo/bar/baz.py', [17]),
234 '/foo/bar/__pycache__/baz.{}.pyc'.format(self.tag))
235 # However if the bool-ishness can't be determined, the exception
236 # propagates.
237 class Bearish:
238 def __bool__(self): raise RuntimeError
239 self.assertRaises(
240 RuntimeError,
241 imp.cache_from_source, '/foo/bar/baz.py', Bearish())
242
243 @unittest.skipIf(os.altsep is None,
244 'test meaningful only where os.altsep is defined')
245 def test_altsep_cache_from_source(self):
246 # Windows path and PEP 3147.
247 self.assertEqual(
248 imp.cache_from_source('\\foo\\bar\\baz\\qux.py', True),
249 '\\foo\\bar\\baz\\__pycache__\\qux.{}.pyc'.format(self.tag))
250
251 @unittest.skipIf(os.altsep is None,
252 'test meaningful only where os.altsep is defined')
253 def test_altsep_and_sep_cache_from_source(self):
254 # Windows path and PEP 3147 where altsep is right of sep.
255 self.assertEqual(
256 imp.cache_from_source('\\foo\\bar/baz\\qux.py', True),
257 '\\foo\\bar/baz\\__pycache__\\qux.{}.pyc'.format(self.tag))
258
259 @unittest.skipIf(os.altsep is None,
260 'test meaningful only where os.altsep is defined')
261 def test_sep_altsep_and_sep_cache_from_source(self):
262 # Windows path and PEP 3147 where sep is right of altsep.
263 self.assertEqual(
264 imp.cache_from_source('\\foo\\bar\\baz/qux.py', True),
265 '\\foo\\bar\\baz/__pycache__/qux.{}.pyc'.format(self.tag))
266
267 def test_source_from_cache(self):
268 # Given the path to a PEP 3147 defined .pyc file, return the path to
269 # its source. This tests the good path.
270 self.assertEqual(imp.source_from_cache(
271 '/foo/bar/baz/__pycache__/qux.{}.pyc'.format(self.tag)),
272 '/foo/bar/baz/qux.py')
273
274 def test_source_from_cache_bad_path(self):
275 # When the path to a pyc file is not in PEP 3147 format, a ValueError
276 # is raised.
277 self.assertRaises(
278 ValueError, imp.source_from_cache, '/foo/bar/bazqux.pyc')
279
280 def test_source_from_cache_no_slash(self):
281 # No slashes at all in path -> ValueError
282 self.assertRaises(
283 ValueError, imp.source_from_cache, 'foo.cpython-32.pyc')
284
285 def test_source_from_cache_too_few_dots(self):
286 # Too few dots in final path component -> ValueError
287 self.assertRaises(
288 ValueError, imp.source_from_cache, '__pycache__/foo.pyc')
289
290 def test_source_from_cache_too_many_dots(self):
291 # Too many dots in final path component -> ValueError
292 self.assertRaises(
293 ValueError, imp.source_from_cache,
294 '__pycache__/foo.cpython-32.foo.pyc')
295
296 def test_source_from_cache_no__pycache__(self):
297 # Another problem with the path -> ValueError
298 self.assertRaises(
299 ValueError, imp.source_from_cache,
300 '/foo/bar/foo.cpython-32.foo.pyc')
301
302 def test_package___file__(self):
303 # Test that a package's __file__ points to the right source directory.
304 os.mkdir('pep3147')
305 sys.path.insert(0, os.curdir)
306 def cleanup():
307 if sys.path[0] == os.curdir:
308 del sys.path[0]
309 shutil.rmtree('pep3147')
310 self.addCleanup(cleanup)
311 # Touch the __init__.py file.
312 with open('pep3147/__init__.py', 'w'):
313 pass
314 m = __import__('pep3147')
315 # Ensure we load the pyc file.
316 support.forget('pep3147')
317 m = __import__('pep3147')
318 self.assertEqual(m.__file__,
319 os.sep.join(('.', 'pep3147', '__init__.py')))
320
321
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000322class NullImporterTests(unittest.TestCase):
Victor Stinner09c449c2010-08-13 22:23:24 +0000323 @unittest.skipIf(support.TESTFN_UNENCODABLE is None,
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000324 "Need an undecodeable filename")
325 def test_unencodeable(self):
Victor Stinner09c449c2010-08-13 22:23:24 +0000326 name = support.TESTFN_UNENCODABLE
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000327 os.mkdir(name)
328 try:
329 self.assertRaises(ImportError, imp.NullImporter, name)
330 finally:
331 os.rmdir(name)
332
333
Neal Norwitz996acf12003-02-17 14:51:41 +0000334def test_main():
Hirokazu Yamamoto36144092008-09-09 07:33:27 +0000335 tests = [
336 ImportTests,
Barry Warsaw28a691b2010-04-17 00:19:56 +0000337 PEP3147Tests,
Nick Coghlan6ead5522009-10-18 13:19:33 +0000338 ReloadTests,
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000339 NullImporterTests,
Barry Warsaw28a691b2010-04-17 00:19:56 +0000340 ]
Hirokazu Yamamoto36144092008-09-09 07:33:27 +0000341 try:
342 import _thread
343 except ImportError:
344 pass
345 else:
346 tests.append(LockTests)
347 support.run_unittest(*tests)
Neal Norwitz996acf12003-02-17 14:51:41 +0000348
Neal Norwitz2294c0d2003-02-12 23:02:21 +0000349if __name__ == "__main__":
Neal Norwitz996acf12003-02-17 14:51:41 +0000350 test_main()