blob: 024f43894b24aa240ccb89c6406ba9bbbef9b3fa [file] [log] [blame]
Brett Cannon14268532013-05-03 10:56:19 -04001try:
2 import _thread
3except ImportError:
4 _thread = None
Brett Cannonc0499522012-05-11 14:48:41 -04005import importlib
Guido van Rossum0ad59d42009-03-30 22:01:35 +00006import os
7import os.path
Barry Warsaw28a691b2010-04-17 00:19:56 +00008import shutil
Brett Cannon8a9583e2008-09-04 05:04:25 +00009import sys
Benjamin Petersonee8712c2008-05-20 21:35:26 +000010from test import support
Brett Cannonc0499522012-05-11 14:48:41 -040011import unittest
12import warnings
Brett Cannone4f41de2013-06-16 13:13:40 -040013with warnings.catch_warnings():
14 warnings.simplefilter('ignore', PendingDeprecationWarning)
15 import imp
Neal Norwitz2294c0d2003-02-12 23:02:21 +000016
Brett Cannon130e4812013-05-03 10:54:23 -040017
18def requires_load_dynamic(meth):
19 """Decorator to skip a test if not running under CPython or lacking
20 imp.load_dynamic()."""
21 meth = support.cpython_only(meth)
22 return unittest.skipIf(not hasattr(imp, 'load_dynamic'),
23 'imp.load_dynamic() required')(meth)
24
25
Brett Cannon14268532013-05-03 10:56:19 -040026@unittest.skipIf(_thread is None, '_thread module is required')
Thomas Wouters89f507f2006-12-13 04:49:30 +000027class LockTests(unittest.TestCase):
Tim Peters579bed72003-04-26 14:31:24 +000028
Thomas Wouters89f507f2006-12-13 04:49:30 +000029 """Very basic test of import lock functions."""
Tim Peters579bed72003-04-26 14:31:24 +000030
Thomas Wouters89f507f2006-12-13 04:49:30 +000031 def verify_lock_state(self, expected):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000032 self.assertEqual(imp.lock_held(), expected,
Thomas Wouters89f507f2006-12-13 04:49:30 +000033 "expected imp.lock_held() to be %r" % expected)
34 def testLock(self):
35 LOOPS = 50
Tim Peters579bed72003-04-26 14:31:24 +000036
Thomas Wouters89f507f2006-12-13 04:49:30 +000037 # The import lock may already be held, e.g. if the test suite is run
38 # via "import test.autotest".
39 lock_held_at_start = imp.lock_held()
40 self.verify_lock_state(lock_held_at_start)
Tim Peters579bed72003-04-26 14:31:24 +000041
Thomas Wouters89f507f2006-12-13 04:49:30 +000042 for i in range(LOOPS):
43 imp.acquire_lock()
44 self.verify_lock_state(True)
Tim Peters579bed72003-04-26 14:31:24 +000045
Thomas Wouters89f507f2006-12-13 04:49:30 +000046 for i in range(LOOPS):
Neal Norwitz2294c0d2003-02-12 23:02:21 +000047 imp.release_lock()
Thomas Wouters89f507f2006-12-13 04:49:30 +000048
49 # The original state should be restored now.
50 self.verify_lock_state(lock_held_at_start)
51
52 if not lock_held_at_start:
53 try:
54 imp.release_lock()
55 except RuntimeError:
56 pass
57 else:
58 self.fail("release_lock() without lock should raise "
59 "RuntimeError")
Neal Norwitz2294c0d2003-02-12 23:02:21 +000060
Guido van Rossumce3a72a2007-10-19 23:16:50 +000061class ImportTests(unittest.TestCase):
Alexander Belopolskye8f58322010-10-15 16:28:20 +000062 def setUp(self):
63 mod = importlib.import_module('test.encoded_modules')
64 self.test_strings = mod.test_strings
65 self.test_path = mod.__path__
66
67 def test_import_encoded_module(self):
68 for modname, encoding, teststr in self.test_strings:
69 mod = importlib.import_module('test.encoded_modules.'
70 'module_' + modname)
71 self.assertEqual(teststr, mod.test)
Guido van Rossumce3a72a2007-10-19 23:16:50 +000072
73 def test_find_module_encoding(self):
Alexander Belopolskye8f58322010-10-15 16:28:20 +000074 for mod, encoding, _ in self.test_strings:
Brett Cannon749afa92010-10-29 23:47:23 +000075 with imp.find_module('module_' + mod, self.test_path)[0] as fd:
76 self.assertEqual(fd.encoding, encoding)
Guido van Rossumce3a72a2007-10-19 23:16:50 +000077
Victor Stinnerfe7c5b52011-04-05 01:48:03 +020078 path = [os.path.dirname(__file__)]
Brett Cannondd9a5692012-04-20 12:59:59 -040079 with self.assertRaises(SyntaxError):
80 imp.find_module('badsyntax_pep3120', path)
Victor Stinnerfe7c5b52011-04-05 01:48:03 +020081
Guido van Rossum40d20bc2007-10-22 00:09:51 +000082 def test_issue1267(self):
Alexander Belopolskye8f58322010-10-15 16:28:20 +000083 for mod, encoding, _ in self.test_strings:
84 fp, filename, info = imp.find_module('module_' + mod,
85 self.test_path)
Brett Cannon749afa92010-10-29 23:47:23 +000086 with fp:
87 self.assertNotEqual(fp, None)
88 self.assertEqual(fp.encoding, encoding)
89 self.assertEqual(fp.tell(), 0)
90 self.assertEqual(fp.readline(), '# test %s encoding\n'
91 % encoding)
Guido van Rossum40d20bc2007-10-22 00:09:51 +000092
93 fp, filename, info = imp.find_module("tokenize")
Brett Cannon749afa92010-10-29 23:47:23 +000094 with fp:
95 self.assertNotEqual(fp, None)
96 self.assertEqual(fp.encoding, "utf-8")
97 self.assertEqual(fp.tell(), 0)
98 self.assertEqual(fp.readline(),
99 '"""Tokenization help for Python programs.\n')
Guido van Rossum40d20bc2007-10-22 00:09:51 +0000100
Brett Cannon8a9583e2008-09-04 05:04:25 +0000101 def test_issue3594(self):
102 temp_mod_name = 'test_imp_helper'
103 sys.path.insert(0, '.')
104 try:
105 with open(temp_mod_name + '.py', 'w') as file:
106 file.write("# coding: cp1252\nu = 'test.test_imp'\n")
107 file, filename, info = imp.find_module(temp_mod_name)
108 file.close()
Ezio Melottib3aedd42010-11-20 19:04:17 +0000109 self.assertEqual(file.encoding, 'cp1252')
Brett Cannon8a9583e2008-09-04 05:04:25 +0000110 finally:
111 del sys.path[0]
112 support.unlink(temp_mod_name + '.py')
113 support.unlink(temp_mod_name + '.pyc')
114 support.unlink(temp_mod_name + '.pyo')
115
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000116 def test_issue5604(self):
117 # Test cannot cover imp.load_compiled function.
118 # Martin von Loewis note what shared library cannot have non-ascii
119 # character because init_xxx function cannot be compiled
120 # and issue never happens for dynamic modules.
121 # But sources modified to follow generic way for processing pathes.
122
Ezio Melotti435b5312010-03-06 01:20:49 +0000123 # the return encoding could be uppercase or None
124 fs_encoding = sys.getfilesystemencoding()
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000125
126 # covers utf-8 and Windows ANSI code pages
127 # one non-space symbol from every page
128 # (http://en.wikipedia.org/wiki/Code_page)
129 known_locales = {
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000130 'utf-8' : b'\xc3\xa4',
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000131 'cp1250' : b'\x8C',
132 'cp1251' : b'\xc0',
133 'cp1252' : b'\xc0',
134 'cp1253' : b'\xc1',
135 'cp1254' : b'\xc0',
136 'cp1255' : b'\xe0',
137 'cp1256' : b'\xe0',
138 'cp1257' : b'\xc0',
139 'cp1258' : b'\xc0',
140 }
141
Florent Xicluna21164ce2010-03-20 20:30:53 +0000142 if sys.platform == 'darwin':
143 self.assertEqual(fs_encoding, 'utf-8')
144 # Mac OS X uses the Normal Form D decomposition
145 # http://developer.apple.com/mac/library/qa/qa2001/qa1173.html
146 special_char = b'a\xcc\x88'
147 else:
148 special_char = known_locales.get(fs_encoding)
149
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000150 if not special_char:
Ezio Melotti76e0d1a2010-03-05 15:08:19 +0000151 self.skipTest("can't run this test with %s as filesystem encoding"
152 % fs_encoding)
153 decoded_char = special_char.decode(fs_encoding)
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000154 temp_mod_name = 'test_imp_helper_' + decoded_char
155 test_package_name = 'test_imp_helper_package_' + decoded_char
156 init_file_name = os.path.join(test_package_name, '__init__.py')
157 try:
Ezio Melotti41a6b042010-03-06 01:50:25 +0000158 # if the curdir is not in sys.path the test fails when run with
159 # ./python ./Lib/test/regrtest.py test_imp
160 sys.path.insert(0, os.curdir)
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000161 with open(temp_mod_name + '.py', 'w') as file:
162 file.write('a = 1\n')
163 file, filename, info = imp.find_module(temp_mod_name)
Brett Cannon749afa92010-10-29 23:47:23 +0000164 with file:
165 self.assertIsNotNone(file)
166 self.assertTrue(filename[:-3].endswith(temp_mod_name))
167 self.assertEqual(info[0], '.py')
Serhiy Storchaka6787a382013-11-23 22:12:06 +0200168 self.assertEqual(info[1], 'r')
Brett Cannon749afa92010-10-29 23:47:23 +0000169 self.assertEqual(info[2], imp.PY_SOURCE)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000170
Brett Cannon749afa92010-10-29 23:47:23 +0000171 mod = imp.load_module(temp_mod_name, file, filename, info)
172 self.assertEqual(mod.a, 1)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000173
Brett Cannonc0499522012-05-11 14:48:41 -0400174 with warnings.catch_warnings():
175 warnings.simplefilter('ignore')
176 mod = imp.load_source(temp_mod_name, temp_mod_name + '.py')
Ezio Melotti435b5312010-03-06 01:20:49 +0000177 self.assertEqual(mod.a, 1)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000178
Brett Cannonc0499522012-05-11 14:48:41 -0400179 with warnings.catch_warnings():
180 warnings.simplefilter('ignore')
Ezio Melottie5e7a7c2013-03-16 21:49:20 +0200181 if not sys.dont_write_bytecode:
182 mod = imp.load_compiled(
183 temp_mod_name,
184 imp.cache_from_source(temp_mod_name + '.py'))
Ezio Melotti435b5312010-03-06 01:20:49 +0000185 self.assertEqual(mod.a, 1)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000186
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000187 if not os.path.exists(test_package_name):
188 os.mkdir(test_package_name)
189 with open(init_file_name, 'w') as file:
190 file.write('b = 2\n')
Brett Cannonc0499522012-05-11 14:48:41 -0400191 with warnings.catch_warnings():
192 warnings.simplefilter('ignore')
193 package = imp.load_package(test_package_name, test_package_name)
Ezio Melotti435b5312010-03-06 01:20:49 +0000194 self.assertEqual(package.b, 2)
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000195 finally:
Ezio Melotti41a6b042010-03-06 01:50:25 +0000196 del sys.path[0]
Ezio Melotti435b5312010-03-06 01:20:49 +0000197 for ext in ('.py', '.pyc', '.pyo'):
198 support.unlink(temp_mod_name + ext)
199 support.unlink(init_file_name + ext)
Ezio Melotti9a7d5ac2010-03-05 12:43:17 +0000200 support.rmtree(test_package_name)
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000201
Victor Stinnerc68b6aa2011-04-23 00:41:19 +0200202 def test_issue9319(self):
Antoine Pitrou11846902011-04-25 21:39:49 +0200203 path = os.path.dirname(__file__)
Victor Stinner7fdd0fe2011-04-23 01:24:11 +0200204 self.assertRaises(SyntaxError,
Antoine Pitrou11846902011-04-25 21:39:49 +0200205 imp.find_module, "badsyntax_pep3120", [path])
Victor Stinnerc68b6aa2011-04-23 00:41:19 +0200206
Nick Coghlan91b9f132012-09-01 00:13:45 +1000207 def test_load_from_source(self):
208 # Verify that the imp module can correctly load and find .py files
209 # XXX (ncoghlan): It would be nice to use support.CleanImport
210 # here, but that breaks because the os module registers some
211 # handlers in copy_reg on import. Since CleanImport doesn't
212 # revert that registration, the module is left in a broken
213 # state after reversion. Reinitialising the module contents
214 # and just reverting os.environ to its previous state is an OK
215 # workaround
216 orig_path = os.path
217 orig_getenv = os.getenv
218 with support.EnvironmentVarGuard():
219 x = imp.find_module("os")
220 self.addCleanup(x[0].close)
221 new_os = imp.load_module("os", *x)
222 self.assertIs(os, new_os)
223 self.assertIs(orig_path, new_os.path)
224 self.assertIsNot(orig_getenv, new_os.getenv)
225
Brett Cannon130e4812013-05-03 10:54:23 -0400226 @requires_load_dynamic
Nick Coghlan91b9f132012-09-01 00:13:45 +1000227 def test_issue15828_load_extensions(self):
228 # Issue 15828 picked up that the adapter between the old imp API
229 # and importlib couldn't handle C extensions
230 example = "_heapq"
231 x = imp.find_module(example)
Brett Cannon848cdfd2012-08-31 11:31:20 -0400232 file_ = x[0]
233 if file_ is not None:
234 self.addCleanup(file_.close)
Nick Coghlan91b9f132012-09-01 00:13:45 +1000235 mod = imp.load_module(example, *x)
236 self.assertEqual(mod.__name__, example)
237
Brett Cannon130e4812013-05-03 10:54:23 -0400238 @requires_load_dynamic
Andrew Svetlov6b2cbeb2012-12-14 17:04:59 +0200239 def test_issue16421_multiple_modules_in_one_dll(self):
240 # Issue 16421: loading several modules from the same compiled file fails
241 m = '_testimportmultiple'
242 fileobj, pathname, description = imp.find_module(m)
243 fileobj.close()
244 mod0 = imp.load_dynamic(m, pathname)
Andrew Svetlovef9a43b2012-12-15 17:22:59 +0200245 mod1 = imp.load_dynamic('_testimportmultiple_foo', pathname)
246 mod2 = imp.load_dynamic('_testimportmultiple_bar', pathname)
Andrew Svetlov6b2cbeb2012-12-14 17:04:59 +0200247 self.assertEqual(mod0.__name__, m)
Andrew Svetlovef9a43b2012-12-15 17:22:59 +0200248 self.assertEqual(mod1.__name__, '_testimportmultiple_foo')
249 self.assertEqual(mod2.__name__, '_testimportmultiple_bar')
Andrew Svetlov6b2cbeb2012-12-14 17:04:59 +0200250 with self.assertRaises(ImportError):
251 imp.load_dynamic('nonexistent', pathname)
252
Brett Cannon130e4812013-05-03 10:54:23 -0400253 @requires_load_dynamic
Brett Cannonf0434e62012-04-20 15:22:50 -0400254 def test_load_dynamic_ImportError_path(self):
255 # Issue #1559549 added `name` and `path` attributes to ImportError
256 # in order to provide better detail. Issue #10854 implemented those
257 # attributes on import failures of extensions on Windows.
258 path = 'bogus file path'
259 name = 'extension'
260 with self.assertRaises(ImportError) as err:
261 imp.load_dynamic(name, path)
262 self.assertIn(path, err.exception.path)
263 self.assertEqual(name, err.exception.name)
264
Brett Cannon130e4812013-05-03 10:54:23 -0400265 @requires_load_dynamic
Brett Cannon9d0f7722013-05-03 10:37:08 -0400266 def test_load_module_extension_file_is_None(self):
267 # When loading an extension module and the file is None, open one
268 # on the behalf of imp.load_dynamic().
269 # Issue #15902
Brett Cannon8772b182013-05-04 17:54:57 -0400270 name = '_testimportmultiple'
Brett Cannon9d0f7722013-05-03 10:37:08 -0400271 found = imp.find_module(name)
Benjamin Petersonaa6f6882013-05-11 16:29:03 -0500272 if found[0] is not None:
273 found[0].close()
Brett Cannon8772b182013-05-04 17:54:57 -0400274 if found[2][2] != imp.C_EXTENSION:
Zachary Ware9fe6d862013-12-08 00:20:35 -0600275 self.skipTest("found module doesn't appear to be a C extension")
Brett Cannon9d0f7722013-05-03 10:37:08 -0400276 imp.load_module(name, None, *found[1:])
277
Brett Cannon997487d2013-06-07 13:26:53 -0400278 @unittest.skipIf(sys.dont_write_bytecode,
279 "test meaningful only when writing bytecode")
280 def test_bug7732(self):
Antoine Pitroubb2c45e2013-08-19 23:31:18 +0200281 with support.temp_cwd():
282 source = support.TESTFN + '.py'
283 os.mkdir(source)
Brett Cannon997487d2013-06-07 13:26:53 -0400284 self.assertRaisesRegex(ImportError, '^No module',
285 imp.find_module, support.TESTFN, ["."])
Brett Cannon330cc522013-08-23 12:10:09 -0400286
Brett Cannona4975a92013-08-23 11:45:57 -0400287 def test_multiple_calls_to_get_data(self):
288 # Issue #18755: make sure multiple calls to get_data() can succeed.
289 loader = imp._LoadSourceCompatibility('imp', imp.__file__,
290 open(imp.__file__))
291 loader.get_data(imp.__file__) # File should be closed
292 loader.get_data(imp.__file__) # Will need to create a newly opened file
Brett Cannon997487d2013-06-07 13:26:53 -0400293
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000294
Nick Coghlan6ead5522009-10-18 13:19:33 +0000295class ReloadTests(unittest.TestCase):
296
297 """Very basic tests to make sure that imp.reload() operates just like
298 reload()."""
299
300 def test_source(self):
Florent Xicluna97133722010-03-20 20:31:34 +0000301 # XXX (ncoghlan): It would be nice to use test.support.CleanImport
Nick Coghlan6ead5522009-10-18 13:19:33 +0000302 # here, but that breaks because the os module registers some
303 # handlers in copy_reg on import. Since CleanImport doesn't
304 # revert that registration, the module is left in a broken
305 # state after reversion. Reinitialising the module contents
306 # and just reverting os.environ to its previous state is an OK
307 # workaround
308 with support.EnvironmentVarGuard():
309 import os
310 imp.reload(os)
311
312 def test_extension(self):
313 with support.CleanImport('time'):
314 import time
315 imp.reload(time)
316
317 def test_builtin(self):
318 with support.CleanImport('marshal'):
319 import marshal
320 imp.reload(marshal)
Christian Heimes13a7a212008-01-07 17:13:09 +0000321
Ezio Melotti056bafe2013-08-10 19:59:36 +0300322 def test_with_deleted_parent(self):
323 # see #18681
324 from html import parser
Serhiy Storchakab2122912013-08-11 20:12:20 +0300325 html = sys.modules.pop('html')
326 def cleanup():
327 sys.modules['html'] = html
Ezio Melotti056bafe2013-08-10 19:59:36 +0300328 self.addCleanup(cleanup)
329 with self.assertRaisesRegex(ImportError, 'html'):
330 imp.reload(parser)
331
Guido van Rossum40d20bc2007-10-22 00:09:51 +0000332
Barry Warsaw28a691b2010-04-17 00:19:56 +0000333class PEP3147Tests(unittest.TestCase):
334 """Tests of PEP 3147."""
335
336 tag = imp.get_tag()
337
Brett Cannon19a2f592012-07-09 13:58:07 -0400338 @unittest.skipUnless(sys.implementation.cache_tag is not None,
339 'requires sys.implementation.cache_tag not be None')
Barry Warsaw28a691b2010-04-17 00:19:56 +0000340 def test_cache_from_source(self):
341 # Given the path to a .py file, return the path to its PEP 3147
342 # defined .pyc file (i.e. under __pycache__).
Brett Cannon410e88d2012-04-22 13:29:47 -0400343 path = os.path.join('foo', 'bar', 'baz', 'qux.py')
344 expect = os.path.join('foo', 'bar', 'baz', '__pycache__',
345 'qux.{}.pyc'.format(self.tag))
346 self.assertEqual(imp.cache_from_source(path, True), expect)
347
Brett Cannon19a2f592012-07-09 13:58:07 -0400348 def test_cache_from_source_no_cache_tag(self):
349 # Non cache tag means NotImplementedError.
350 with support.swap_attr(sys.implementation, 'cache_tag', None):
351 with self.assertRaises(NotImplementedError):
352 imp.cache_from_source('whatever.py')
353
Brett Cannon410e88d2012-04-22 13:29:47 -0400354 def test_cache_from_source_no_dot(self):
355 # Directory with a dot, filename without dot.
356 path = os.path.join('foo.bar', 'file')
357 expect = os.path.join('foo.bar', '__pycache__',
358 'file{}.pyc'.format(self.tag))
359 self.assertEqual(imp.cache_from_source(path, True), expect)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000360
361 def test_cache_from_source_optimized(self):
362 # Given the path to a .py file, return the path to its PEP 3147
363 # defined .pyo file (i.e. under __pycache__).
Brett Cannon410e88d2012-04-22 13:29:47 -0400364 path = os.path.join('foo', 'bar', 'baz', 'qux.py')
365 expect = os.path.join('foo', 'bar', 'baz', '__pycache__',
366 'qux.{}.pyo'.format(self.tag))
367 self.assertEqual(imp.cache_from_source(path, False), expect)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000368
369 def test_cache_from_source_cwd(self):
Brett Cannon410e88d2012-04-22 13:29:47 -0400370 path = 'foo.py'
371 expect = os.path.join('__pycache__', 'foo.{}.pyc'.format(self.tag))
372 self.assertEqual(imp.cache_from_source(path, True), expect)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000373
374 def test_cache_from_source_override(self):
375 # When debug_override is not None, it can be any true-ish or false-ish
376 # value.
Brett Cannon410e88d2012-04-22 13:29:47 -0400377 path = os.path.join('foo', 'bar', 'baz.py')
378 partial_expect = os.path.join('foo', 'bar', '__pycache__',
379 'baz.{}.py'.format(self.tag))
380 self.assertEqual(imp.cache_from_source(path, []), partial_expect + 'o')
381 self.assertEqual(imp.cache_from_source(path, [17]),
382 partial_expect + 'c')
Barry Warsaw28a691b2010-04-17 00:19:56 +0000383 # However if the bool-ishness can't be determined, the exception
384 # propagates.
385 class Bearish:
386 def __bool__(self): raise RuntimeError
Brett Cannon410e88d2012-04-22 13:29:47 -0400387 with self.assertRaises(RuntimeError):
388 imp.cache_from_source('/foo/bar/baz.py', Bearish())
Barry Warsaw28a691b2010-04-17 00:19:56 +0000389
Brett Cannon410e88d2012-04-22 13:29:47 -0400390 @unittest.skipUnless(os.sep == '\\' and os.altsep == '/',
Barry Warsaw28a691b2010-04-17 00:19:56 +0000391 'test meaningful only where os.altsep is defined')
392 def test_sep_altsep_and_sep_cache_from_source(self):
393 # Windows path and PEP 3147 where sep is right of altsep.
394 self.assertEqual(
395 imp.cache_from_source('\\foo\\bar\\baz/qux.py', True),
Brett Cannon410e88d2012-04-22 13:29:47 -0400396 '\\foo\\bar\\baz\\__pycache__\\qux.{}.pyc'.format(self.tag))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000397
Brett Cannon19a2f592012-07-09 13:58:07 -0400398 @unittest.skipUnless(sys.implementation.cache_tag is not None,
399 'requires sys.implementation.cache_tag to not be '
400 'None')
Barry Warsaw28a691b2010-04-17 00:19:56 +0000401 def test_source_from_cache(self):
402 # Given the path to a PEP 3147 defined .pyc file, return the path to
403 # its source. This tests the good path.
Brett Cannon410e88d2012-04-22 13:29:47 -0400404 path = os.path.join('foo', 'bar', 'baz', '__pycache__',
405 'qux.{}.pyc'.format(self.tag))
406 expect = os.path.join('foo', 'bar', 'baz', 'qux.py')
407 self.assertEqual(imp.source_from_cache(path), expect)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000408
Brett Cannon19a2f592012-07-09 13:58:07 -0400409 def test_source_from_cache_no_cache_tag(self):
410 # If sys.implementation.cache_tag is None, raise NotImplementedError.
411 path = os.path.join('blah', '__pycache__', 'whatever.pyc')
412 with support.swap_attr(sys.implementation, 'cache_tag', None):
413 with self.assertRaises(NotImplementedError):
414 imp.source_from_cache(path)
415
Barry Warsaw28a691b2010-04-17 00:19:56 +0000416 def test_source_from_cache_bad_path(self):
417 # When the path to a pyc file is not in PEP 3147 format, a ValueError
418 # is raised.
419 self.assertRaises(
420 ValueError, imp.source_from_cache, '/foo/bar/bazqux.pyc')
421
422 def test_source_from_cache_no_slash(self):
423 # No slashes at all in path -> ValueError
424 self.assertRaises(
425 ValueError, imp.source_from_cache, 'foo.cpython-32.pyc')
426
427 def test_source_from_cache_too_few_dots(self):
428 # Too few dots in final path component -> ValueError
429 self.assertRaises(
430 ValueError, imp.source_from_cache, '__pycache__/foo.pyc')
431
432 def test_source_from_cache_too_many_dots(self):
433 # Too many dots in final path component -> ValueError
434 self.assertRaises(
435 ValueError, imp.source_from_cache,
436 '__pycache__/foo.cpython-32.foo.pyc')
437
438 def test_source_from_cache_no__pycache__(self):
439 # Another problem with the path -> ValueError
440 self.assertRaises(
441 ValueError, imp.source_from_cache,
442 '/foo/bar/foo.cpython-32.foo.pyc')
443
444 def test_package___file__(self):
Antoine Pitrou06e37582012-06-23 17:27:56 +0200445 try:
446 m = __import__('pep3147')
447 except ImportError:
448 pass
449 else:
450 self.fail("pep3147 module already exists: %r" % (m,))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000451 # Test that a package's __file__ points to the right source directory.
452 os.mkdir('pep3147')
453 sys.path.insert(0, os.curdir)
454 def cleanup():
455 if sys.path[0] == os.curdir:
456 del sys.path[0]
457 shutil.rmtree('pep3147')
458 self.addCleanup(cleanup)
459 # Touch the __init__.py file.
Victor Stinnerbf816222011-06-30 23:25:47 +0200460 support.create_empty_file('pep3147/__init__.py')
Antoine Pitrou4f92a682012-02-26 18:09:50 +0100461 importlib.invalidate_caches()
Antoine Pitrouabe72d72012-02-22 01:11:31 +0100462 expected___file__ = os.sep.join(('.', 'pep3147', '__init__.py'))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000463 m = __import__('pep3147')
Antoine Pitrou9a4d7dd2012-02-27 22:01:25 +0100464 self.assertEqual(m.__file__, expected___file__, (m.__file__, m.__path__, sys.path, sys.path_importer_cache))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000465 # Ensure we load the pyc file.
Antoine Pitrou037615e2012-02-22 02:30:09 +0100466 support.unload('pep3147')
Barry Warsaw28a691b2010-04-17 00:19:56 +0000467 m = __import__('pep3147')
Antoine Pitrou037615e2012-02-22 02:30:09 +0100468 support.unload('pep3147')
Antoine Pitrou9a4d7dd2012-02-27 22:01:25 +0100469 self.assertEqual(m.__file__, expected___file__, (m.__file__, m.__path__, sys.path, sys.path_importer_cache))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000470
471
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000472class NullImporterTests(unittest.TestCase):
Victor Stinner09c449c2010-08-13 22:23:24 +0000473 @unittest.skipIf(support.TESTFN_UNENCODABLE is None,
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000474 "Need an undecodeable filename")
475 def test_unencodeable(self):
Victor Stinner09c449c2010-08-13 22:23:24 +0000476 name = support.TESTFN_UNENCODABLE
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000477 os.mkdir(name)
478 try:
479 self.assertRaises(ImportError, imp.NullImporter, name)
480 finally:
481 os.rmdir(name)
482
483
Neal Norwitz2294c0d2003-02-12 23:02:21 +0000484if __name__ == "__main__":
Brett Cannon95ea11f2013-05-03 10:57:08 -0400485 unittest.main()