blob: cf50ea413afc716d30870cf7e5f109a1599e3031 [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')
168 self.assertEqual(info[1], 'U')
169 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:
275 return
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):
281 source = support.TESTFN + '.py'
282 os.mkdir(source)
283 try:
284 self.assertRaisesRegex(ImportError, '^No module',
285 imp.find_module, support.TESTFN, ["."])
286 finally:
287 os.rmdir(source)
288
Guido van Rossum0ad59d42009-03-30 22:01:35 +0000289
Nick Coghlan6ead5522009-10-18 13:19:33 +0000290class ReloadTests(unittest.TestCase):
291
292 """Very basic tests to make sure that imp.reload() operates just like
293 reload()."""
294
295 def test_source(self):
Florent Xicluna97133722010-03-20 20:31:34 +0000296 # XXX (ncoghlan): It would be nice to use test.support.CleanImport
Nick Coghlan6ead5522009-10-18 13:19:33 +0000297 # here, but that breaks because the os module registers some
298 # handlers in copy_reg on import. Since CleanImport doesn't
299 # revert that registration, the module is left in a broken
300 # state after reversion. Reinitialising the module contents
301 # and just reverting os.environ to its previous state is an OK
302 # workaround
303 with support.EnvironmentVarGuard():
304 import os
305 imp.reload(os)
306
307 def test_extension(self):
308 with support.CleanImport('time'):
309 import time
310 imp.reload(time)
311
312 def test_builtin(self):
313 with support.CleanImport('marshal'):
314 import marshal
315 imp.reload(marshal)
Christian Heimes13a7a212008-01-07 17:13:09 +0000316
Guido van Rossum40d20bc2007-10-22 00:09:51 +0000317
Barry Warsaw28a691b2010-04-17 00:19:56 +0000318class PEP3147Tests(unittest.TestCase):
319 """Tests of PEP 3147."""
320
321 tag = imp.get_tag()
322
Brett Cannon19a2f592012-07-09 13:58:07 -0400323 @unittest.skipUnless(sys.implementation.cache_tag is not None,
324 'requires sys.implementation.cache_tag not be None')
Barry Warsaw28a691b2010-04-17 00:19:56 +0000325 def test_cache_from_source(self):
326 # Given the path to a .py file, return the path to its PEP 3147
327 # defined .pyc file (i.e. under __pycache__).
Brett Cannon410e88d2012-04-22 13:29:47 -0400328 path = os.path.join('foo', 'bar', 'baz', 'qux.py')
329 expect = os.path.join('foo', 'bar', 'baz', '__pycache__',
330 'qux.{}.pyc'.format(self.tag))
331 self.assertEqual(imp.cache_from_source(path, True), expect)
332
Brett Cannon19a2f592012-07-09 13:58:07 -0400333 def test_cache_from_source_no_cache_tag(self):
334 # Non cache tag means NotImplementedError.
335 with support.swap_attr(sys.implementation, 'cache_tag', None):
336 with self.assertRaises(NotImplementedError):
337 imp.cache_from_source('whatever.py')
338
Brett Cannon410e88d2012-04-22 13:29:47 -0400339 def test_cache_from_source_no_dot(self):
340 # Directory with a dot, filename without dot.
341 path = os.path.join('foo.bar', 'file')
342 expect = os.path.join('foo.bar', '__pycache__',
343 'file{}.pyc'.format(self.tag))
344 self.assertEqual(imp.cache_from_source(path, True), expect)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000345
346 def test_cache_from_source_optimized(self):
347 # Given the path to a .py file, return the path to its PEP 3147
348 # defined .pyo file (i.e. under __pycache__).
Brett Cannon410e88d2012-04-22 13:29:47 -0400349 path = os.path.join('foo', 'bar', 'baz', 'qux.py')
350 expect = os.path.join('foo', 'bar', 'baz', '__pycache__',
351 'qux.{}.pyo'.format(self.tag))
352 self.assertEqual(imp.cache_from_source(path, False), expect)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000353
354 def test_cache_from_source_cwd(self):
Brett Cannon410e88d2012-04-22 13:29:47 -0400355 path = 'foo.py'
356 expect = os.path.join('__pycache__', 'foo.{}.pyc'.format(self.tag))
357 self.assertEqual(imp.cache_from_source(path, True), expect)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000358
359 def test_cache_from_source_override(self):
360 # When debug_override is not None, it can be any true-ish or false-ish
361 # value.
Brett Cannon410e88d2012-04-22 13:29:47 -0400362 path = os.path.join('foo', 'bar', 'baz.py')
363 partial_expect = os.path.join('foo', 'bar', '__pycache__',
364 'baz.{}.py'.format(self.tag))
365 self.assertEqual(imp.cache_from_source(path, []), partial_expect + 'o')
366 self.assertEqual(imp.cache_from_source(path, [17]),
367 partial_expect + 'c')
Barry Warsaw28a691b2010-04-17 00:19:56 +0000368 # However if the bool-ishness can't be determined, the exception
369 # propagates.
370 class Bearish:
371 def __bool__(self): raise RuntimeError
Brett Cannon410e88d2012-04-22 13:29:47 -0400372 with self.assertRaises(RuntimeError):
373 imp.cache_from_source('/foo/bar/baz.py', Bearish())
Barry Warsaw28a691b2010-04-17 00:19:56 +0000374
Brett Cannon410e88d2012-04-22 13:29:47 -0400375 @unittest.skipUnless(os.sep == '\\' and os.altsep == '/',
Barry Warsaw28a691b2010-04-17 00:19:56 +0000376 'test meaningful only where os.altsep is defined')
377 def test_sep_altsep_and_sep_cache_from_source(self):
378 # Windows path and PEP 3147 where sep is right of altsep.
379 self.assertEqual(
380 imp.cache_from_source('\\foo\\bar\\baz/qux.py', True),
Brett Cannon410e88d2012-04-22 13:29:47 -0400381 '\\foo\\bar\\baz\\__pycache__\\qux.{}.pyc'.format(self.tag))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000382
Brett Cannon19a2f592012-07-09 13:58:07 -0400383 @unittest.skipUnless(sys.implementation.cache_tag is not None,
384 'requires sys.implementation.cache_tag to not be '
385 'None')
Barry Warsaw28a691b2010-04-17 00:19:56 +0000386 def test_source_from_cache(self):
387 # Given the path to a PEP 3147 defined .pyc file, return the path to
388 # its source. This tests the good path.
Brett Cannon410e88d2012-04-22 13:29:47 -0400389 path = os.path.join('foo', 'bar', 'baz', '__pycache__',
390 'qux.{}.pyc'.format(self.tag))
391 expect = os.path.join('foo', 'bar', 'baz', 'qux.py')
392 self.assertEqual(imp.source_from_cache(path), expect)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000393
Brett Cannon19a2f592012-07-09 13:58:07 -0400394 def test_source_from_cache_no_cache_tag(self):
395 # If sys.implementation.cache_tag is None, raise NotImplementedError.
396 path = os.path.join('blah', '__pycache__', 'whatever.pyc')
397 with support.swap_attr(sys.implementation, 'cache_tag', None):
398 with self.assertRaises(NotImplementedError):
399 imp.source_from_cache(path)
400
Barry Warsaw28a691b2010-04-17 00:19:56 +0000401 def test_source_from_cache_bad_path(self):
402 # When the path to a pyc file is not in PEP 3147 format, a ValueError
403 # is raised.
404 self.assertRaises(
405 ValueError, imp.source_from_cache, '/foo/bar/bazqux.pyc')
406
407 def test_source_from_cache_no_slash(self):
408 # No slashes at all in path -> ValueError
409 self.assertRaises(
410 ValueError, imp.source_from_cache, 'foo.cpython-32.pyc')
411
412 def test_source_from_cache_too_few_dots(self):
413 # Too few dots in final path component -> ValueError
414 self.assertRaises(
415 ValueError, imp.source_from_cache, '__pycache__/foo.pyc')
416
417 def test_source_from_cache_too_many_dots(self):
418 # Too many dots in final path component -> ValueError
419 self.assertRaises(
420 ValueError, imp.source_from_cache,
421 '__pycache__/foo.cpython-32.foo.pyc')
422
423 def test_source_from_cache_no__pycache__(self):
424 # Another problem with the path -> ValueError
425 self.assertRaises(
426 ValueError, imp.source_from_cache,
427 '/foo/bar/foo.cpython-32.foo.pyc')
428
429 def test_package___file__(self):
Antoine Pitrou06e37582012-06-23 17:27:56 +0200430 try:
431 m = __import__('pep3147')
432 except ImportError:
433 pass
434 else:
435 self.fail("pep3147 module already exists: %r" % (m,))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000436 # Test that a package's __file__ points to the right source directory.
437 os.mkdir('pep3147')
438 sys.path.insert(0, os.curdir)
439 def cleanup():
440 if sys.path[0] == os.curdir:
441 del sys.path[0]
442 shutil.rmtree('pep3147')
443 self.addCleanup(cleanup)
444 # Touch the __init__.py file.
Victor Stinnerbf816222011-06-30 23:25:47 +0200445 support.create_empty_file('pep3147/__init__.py')
Antoine Pitrou4f92a682012-02-26 18:09:50 +0100446 importlib.invalidate_caches()
Antoine Pitrouabe72d72012-02-22 01:11:31 +0100447 expected___file__ = os.sep.join(('.', 'pep3147', '__init__.py'))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000448 m = __import__('pep3147')
Antoine Pitrou9a4d7dd2012-02-27 22:01:25 +0100449 self.assertEqual(m.__file__, expected___file__, (m.__file__, m.__path__, sys.path, sys.path_importer_cache))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000450 # Ensure we load the pyc file.
Antoine Pitrou037615e2012-02-22 02:30:09 +0100451 support.unload('pep3147')
Barry Warsaw28a691b2010-04-17 00:19:56 +0000452 m = __import__('pep3147')
Antoine Pitrou037615e2012-02-22 02:30:09 +0100453 support.unload('pep3147')
Antoine Pitrou9a4d7dd2012-02-27 22:01:25 +0100454 self.assertEqual(m.__file__, expected___file__, (m.__file__, m.__path__, sys.path, sys.path_importer_cache))
Barry Warsaw28a691b2010-04-17 00:19:56 +0000455
456
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000457class NullImporterTests(unittest.TestCase):
Victor Stinner09c449c2010-08-13 22:23:24 +0000458 @unittest.skipIf(support.TESTFN_UNENCODABLE is None,
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000459 "Need an undecodeable filename")
460 def test_unencodeable(self):
Victor Stinner09c449c2010-08-13 22:23:24 +0000461 name = support.TESTFN_UNENCODABLE
Victor Stinner1a4d12d2010-08-13 13:07:29 +0000462 os.mkdir(name)
463 try:
464 self.assertRaises(ImportError, imp.NullImporter, name)
465 finally:
466 os.rmdir(name)
467
468
Neal Norwitz2294c0d2003-02-12 23:02:21 +0000469if __name__ == "__main__":
Brett Cannon95ea11f2013-05-03 10:57:08 -0400470 unittest.main()