| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  | import os | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import shutil | 
					
						
							|  |  |  | import string | 
					
						
							|  |  |  | import random | 
					
						
							|  |  |  | import tempfile | 
					
						
							|  |  |  | import unittest | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from imp import cache_from_source | 
					
						
							| 
									
										
										
										
											2008-05-20 21:35:26 +00:00
										 |  |  | from test.support import run_unittest | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class TestImport(unittest.TestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self, *args, **kw): | 
					
						
							|  |  |  |         self.package_name = 'PACKAGE_' | 
					
						
							| 
									
										
										
										
											2006-08-18 22:13:04 +00:00
										 |  |  |         while self.package_name in sys.modules: | 
					
						
							| 
									
										
										
										
											2007-08-14 09:23:10 +00:00
										 |  |  |             self.package_name += random.choose(string.ascii_letters) | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  |         self.module_name = self.package_name + '.foo' | 
					
						
							|  |  |  |         unittest.TestCase.__init__(self, *args, **kw) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def remove_modules(self): | 
					
						
							|  |  |  |         for module_name in (self.package_name, self.module_name): | 
					
						
							| 
									
										
										
										
											2006-08-18 22:13:04 +00:00
										 |  |  |             if module_name in sys.modules: | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  |                 del sys.modules[module_name] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							| 
									
										
										
										
											2002-08-09 16:38:32 +00:00
										 |  |  |         self.test_dir = tempfile.mkdtemp() | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  |         sys.path.append(self.test_dir) | 
					
						
							|  |  |  |         self.package_dir = os.path.join(self.test_dir, | 
					
						
							|  |  |  |                                         self.package_name) | 
					
						
							|  |  |  |         os.mkdir(self.package_dir) | 
					
						
							| 
									
										
										
										
											2007-08-16 14:35:24 +00:00
										 |  |  |         open(os.path.join(self.package_dir, '__init__.py'), 'w') | 
					
						
							|  |  |  |         self.module_path = os.path.join(self.package_dir, 'foo.py') | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def tearDown(self): | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |         shutil.rmtree(self.test_dir) | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  |         self.assertNotEqual(sys.path.count(self.test_dir), 0) | 
					
						
							|  |  |  |         sys.path.remove(self.test_dir) | 
					
						
							|  |  |  |         self.remove_modules() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def rewrite_file(self, contents): | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |         compiled_path = cache_from_source(self.module_path) | 
					
						
							|  |  |  |         if os.path.exists(compiled_path): | 
					
						
							|  |  |  |             os.remove(compiled_path) | 
					
						
							|  |  |  |         with open(self.module_path, 'w') as f: | 
					
						
							|  |  |  |             f.write(contents) | 
					
						
							| 
									
										
										
										
											2001-08-09 21:40:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  |     def test_package_import__semantics(self): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Generate a couple of broken modules to try importing. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # ...try loading the module when there's a SyntaxError | 
					
						
							|  |  |  |         self.rewrite_file('for') | 
					
						
							|  |  |  |         try: __import__(self.module_name) | 
					
						
							|  |  |  |         except SyntaxError: pass | 
					
						
							| 
									
										
										
										
											2010-01-23 15:40:09 +00:00
										 |  |  |         else: raise RuntimeError('Failed to induce SyntaxError') # self.fail()? | 
					
						
							|  |  |  |         self.assertNotIn(self.module_name, sys.modules) | 
					
						
							|  |  |  |         self.assertFalse(hasattr(sys.modules[self.package_name], 'foo')) | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # ...make up a variable name that isn't bound in __builtins__ | 
					
						
							|  |  |  |         var = 'a' | 
					
						
							|  |  |  |         while var in dir(__builtins__): | 
					
						
							| 
									
										
										
										
											2007-08-14 09:23:10 +00:00
										 |  |  |             var += random.choose(string.ascii_letters) | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # ...make a module that just contains that | 
					
						
							|  |  |  |         self.rewrite_file(var) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try: __import__(self.module_name) | 
					
						
							|  |  |  |         except NameError: pass | 
					
						
							| 
									
										
										
										
											2007-08-29 23:37:32 +00:00
										 |  |  |         else: raise RuntimeError('Failed to induce NameError.') | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # ...now  change  the module  so  that  the NameError  doesn't | 
					
						
							|  |  |  |         # happen | 
					
						
							|  |  |  |         self.rewrite_file('%s = 1' % var) | 
					
						
							| 
									
										
										
										
											2004-08-02 03:59:57 +00:00
										 |  |  |         module = __import__(self.module_name).foo | 
					
						
							| 
									
										
										
										
											2001-08-02 14:14:20 +00:00
										 |  |  |         self.assertEqual(getattr(module, var), 1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 21:33:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def test_main(): | 
					
						
							|  |  |  |     run_unittest(TestImport) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     test_main() |