blob: d245fd5e1bc8acbf178e1ffc2f362658eaeab9a2 [file] [log] [blame]
Brett Cannon0096e262004-06-05 01:12:51 +00001"""Tests for 'site'.
2
3Tests assume the initial paths in sys.path once the interpreter has begun
4executing have not been removed.
5
6"""
7import unittest
Senthil Kumaran8ef519b2013-09-07 13:59:17 -07008import test.support
Zachary Ware36193e72013-12-11 16:59:44 -06009from test.support import captured_stderr, TESTFN, EnvironmentVarGuard
Georg Brandl1a3284e2007-12-02 09:40:06 +000010import builtins
Brett Cannon0096e262004-06-05 01:12:51 +000011import os
12import sys
R. David Murrayab9d8d62010-12-27 00:03:13 +000013import re
Brett Cannon0096e262004-06-05 01:12:51 +000014import encodings
R David Murray1bc6ceb2013-09-14 13:28:37 -040015import urllib.request
16import urllib.error
Steve Dower1da055e2016-10-29 08:50:31 -070017import shutil
Christian Heimes8dc226f2008-05-06 23:45:46 +000018import subprocess
Tarek Ziadéedacea32010-01-29 11:41:03 +000019import sysconfig
20from copy import copy
21
Zachary Ware36193e72013-12-11 16:59:44 -060022# These tests are not particularly useful if Python was invoked with -S.
23# If you add tests that are useful under -S, this skip should be moved
24# to the class level.
25if sys.flags.no_site:
26 raise unittest.SkipTest("Python was invoked with -S")
27
28import site
Brett Cannon0096e262004-06-05 01:12:51 +000029
Ned Deily316f5732011-10-31 16:16:35 -070030if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
Christian Heimes8dc226f2008-05-06 23:45:46 +000031 # need to add user site directory for tests
Victor Stinner21d0e1b2016-03-14 17:47:03 +010032 try:
33 os.makedirs(site.USER_SITE)
34 site.addsitedir(site.USER_SITE)
35 except PermissionError as exc:
36 raise unittest.SkipTest('unable to create user site directory (%r): %s'
37 % (site.USER_SITE, exc))
38
Christian Heimes8dc226f2008-05-06 23:45:46 +000039
Brett Cannon0096e262004-06-05 01:12:51 +000040class HelperFunctionsTests(unittest.TestCase):
41 """Tests for helper functions.
Brett Cannon0096e262004-06-05 01:12:51 +000042 """
43
44 def setUp(self):
45 """Save a copy of sys.path"""
46 self.sys_path = sys.path[:]
Tarek Ziadé4a608c02009-08-20 21:28:05 +000047 self.old_base = site.USER_BASE
48 self.old_site = site.USER_SITE
49 self.old_prefixes = site.PREFIXES
Brett Cannon8ac95ee2012-04-04 17:31:16 -040050 self.original_vars = sysconfig._CONFIG_VARS
Tarek Ziadéedacea32010-01-29 11:41:03 +000051 self.old_vars = copy(sysconfig._CONFIG_VARS)
Brett Cannon0096e262004-06-05 01:12:51 +000052
Alexandre Vassalottie9f305f2008-05-16 04:39:54 +000053 def tearDown(self):
Brett Cannon0096e262004-06-05 01:12:51 +000054 """Restore sys.path"""
Nick Coghlan6ead5522009-10-18 13:19:33 +000055 sys.path[:] = self.sys_path
Tarek Ziadé4a608c02009-08-20 21:28:05 +000056 site.USER_BASE = self.old_base
57 site.USER_SITE = self.old_site
58 site.PREFIXES = self.old_prefixes
Brett Cannon8ac95ee2012-04-04 17:31:16 -040059 sysconfig._CONFIG_VARS = self.original_vars
60 sysconfig._CONFIG_VARS.clear()
61 sysconfig._CONFIG_VARS.update(self.old_vars)
Raymond Hettingerebd95222004-06-27 03:02:18 +000062
Brett Cannon0096e262004-06-05 01:12:51 +000063 def test_makepath(self):
64 # Test makepath() have an absolute path for its first return value
65 # and a case-normalized version of the absolute path for its
66 # second value.
67 path_parts = ("Beginning", "End")
68 original_dir = os.path.join(*path_parts)
69 abs_dir, norm_dir = site.makepath(*path_parts)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000070 self.assertEqual(os.path.abspath(original_dir), abs_dir)
Brett Cannon0096e262004-06-05 01:12:51 +000071 if original_dir == os.path.normcase(original_dir):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000072 self.assertEqual(abs_dir, norm_dir)
Brett Cannon0096e262004-06-05 01:12:51 +000073 else:
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000074 self.assertEqual(os.path.normcase(abs_dir), norm_dir)
Brett Cannon0096e262004-06-05 01:12:51 +000075
76 def test_init_pathinfo(self):
77 dir_set = site._init_pathinfo()
78 for entry in [site.makepath(path)[1] for path in sys.path
Brett Cannon5f0507d2016-04-08 15:04:28 -070079 if path and os.path.exists(path)]:
Ezio Melottib58e0bd2010-01-23 15:40:09 +000080 self.assertIn(entry, dir_set,
81 "%s from sys.path not found in set returned "
82 "by _init_pathinfo(): %s" % (entry, dir_set))
Raymond Hettingerebd95222004-06-27 03:02:18 +000083
Brett Cannonee86a662004-07-13 07:12:25 +000084 def pth_file_tests(self, pth_file):
85 """Contain common code for testing results of reading a .pth file"""
Ezio Melottib58e0bd2010-01-23 15:40:09 +000086 self.assertIn(pth_file.imported, sys.modules,
87 "%s not in sys.modules" % pth_file.imported)
Antoine Pitrou9166e6a2009-11-01 23:55:40 +000088 self.assertIn(site.makepath(pth_file.good_dir_path)[0], sys.path)
89 self.assertFalse(os.path.exists(pth_file.bad_dir_path))
Brett Cannonee86a662004-07-13 07:12:25 +000090
Brett Cannon0096e262004-06-05 01:12:51 +000091 def test_addpackage(self):
92 # Make sure addpackage() imports if the line starts with 'import',
Brett Cannon64a84702004-07-10 02:10:45 +000093 # adds directories to sys.path for any line in the file that is not a
94 # comment or import that is a valid directory name for where the .pth
95 # file resides; invalid directories are not added
96 pth_file = PthFile()
Brett Cannonee86a662004-07-13 07:12:25 +000097 pth_file.cleanup(prep=True) # to make sure that nothing is
98 # pre-existing that shouldn't be
Brett Cannon0096e262004-06-05 01:12:51 +000099 try:
Brett Cannon64a84702004-07-10 02:10:45 +0000100 pth_file.create()
101 site.addpackage(pth_file.base_dir, pth_file.filename, set())
Brett Cannonee86a662004-07-13 07:12:25 +0000102 self.pth_file_tests(pth_file)
Brett Cannon0096e262004-06-05 01:12:51 +0000103 finally:
Brett Cannon64a84702004-07-10 02:10:45 +0000104 pth_file.cleanup()
Raymond Hettingerebd95222004-06-27 03:02:18 +0000105
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000106 def make_pth(self, contents, pth_dir='.', pth_name=TESTFN):
107 # Create a .pth file and return its (abspath, basename).
108 pth_dir = os.path.abspath(pth_dir)
109 pth_basename = pth_name + '.pth'
110 pth_fn = os.path.join(pth_dir, pth_basename)
111 pth_file = open(pth_fn, 'w', encoding='utf-8')
112 self.addCleanup(lambda: os.remove(pth_fn))
113 pth_file.write(contents)
114 pth_file.close()
115 return pth_dir, pth_basename
116
117 def test_addpackage_import_bad_syntax(self):
118 # Issue 10642
119 pth_dir, pth_fn = self.make_pth("import bad)syntax\n")
120 with captured_stderr() as err_out:
121 site.addpackage(pth_dir, pth_fn, set())
122 self.assertRegex(err_out.getvalue(), "line 1")
R. David Murrayab9d8d62010-12-27 00:03:13 +0000123 self.assertRegex(err_out.getvalue(),
124 re.escape(os.path.join(pth_dir, pth_fn)))
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000125 # XXX: the previous two should be independent checks so that the
126 # order doesn't matter. The next three could be a single check
127 # but my regex foo isn't good enough to write it.
128 self.assertRegex(err_out.getvalue(), 'Traceback')
129 self.assertRegex(err_out.getvalue(), r'import bad\)syntax')
130 self.assertRegex(err_out.getvalue(), 'SyntaxError')
131
132 def test_addpackage_import_bad_exec(self):
133 # Issue 10642
134 pth_dir, pth_fn = self.make_pth("randompath\nimport nosuchmodule\n")
135 with captured_stderr() as err_out:
136 site.addpackage(pth_dir, pth_fn, set())
137 self.assertRegex(err_out.getvalue(), "line 2")
R. David Murrayab9d8d62010-12-27 00:03:13 +0000138 self.assertRegex(err_out.getvalue(),
139 re.escape(os.path.join(pth_dir, pth_fn)))
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000140 # XXX: ditto previous XXX comment.
141 self.assertRegex(err_out.getvalue(), 'Traceback')
Eric Snow46f97b82016-09-07 16:56:15 -0700142 self.assertRegex(err_out.getvalue(), 'ModuleNotFoundError')
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000143
144 def test_addpackage_import_bad_pth_file(self):
145 # Issue 5258
146 pth_dir, pth_fn = self.make_pth("abc\x00def\n")
147 with captured_stderr() as err_out:
148 site.addpackage(pth_dir, pth_fn, set())
149 self.assertRegex(err_out.getvalue(), "line 1")
R. David Murrayab9d8d62010-12-27 00:03:13 +0000150 self.assertRegex(err_out.getvalue(),
151 re.escape(os.path.join(pth_dir, pth_fn)))
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000152 # XXX: ditto previous XXX comment.
153 self.assertRegex(err_out.getvalue(), 'Traceback')
Serhiy Storchakad8a14472014-09-06 20:07:17 +0300154 self.assertRegex(err_out.getvalue(), 'ValueError')
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000155
Brett Cannon0096e262004-06-05 01:12:51 +0000156 def test_addsitedir(self):
Brett Cannon64a84702004-07-10 02:10:45 +0000157 # Same tests for test_addpackage since addsitedir() essentially just
158 # calls addpackage() for every .pth file in the directory
159 pth_file = PthFile()
Brett Cannonee86a662004-07-13 07:12:25 +0000160 pth_file.cleanup(prep=True) # Make sure that nothing is pre-existing
161 # that is tested for
Brett Cannon0096e262004-06-05 01:12:51 +0000162 try:
Brett Cannonee86a662004-07-13 07:12:25 +0000163 pth_file.create()
Brett Cannon64a84702004-07-10 02:10:45 +0000164 site.addsitedir(pth_file.base_dir, set())
Brett Cannonee86a662004-07-13 07:12:25 +0000165 self.pth_file_tests(pth_file)
Brett Cannon0096e262004-06-05 01:12:51 +0000166 finally:
Brett Cannon64a84702004-07-10 02:10:45 +0000167 pth_file.cleanup()
Brett Cannon0096e262004-06-05 01:12:51 +0000168
Ned Deily316f5732011-10-31 16:16:35 -0700169 @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 "
170 "user-site (site.ENABLE_USER_SITE)")
Christian Heimes8dc226f2008-05-06 23:45:46 +0000171 def test_s_option(self):
172 usersite = site.USER_SITE
Antoine Pitrou9166e6a2009-11-01 23:55:40 +0000173 self.assertIn(usersite, sys.path)
Christian Heimes8dc226f2008-05-06 23:45:46 +0000174
Éric Araujo63ebe1c2011-01-03 17:51:11 +0000175 env = os.environ.copy()
Christian Heimes8dc226f2008-05-06 23:45:46 +0000176 rc = subprocess.call([sys.executable, '-c',
Éric Araujo63ebe1c2011-01-03 17:51:11 +0000177 'import sys; sys.exit(%r in sys.path)' % usersite],
178 env=env)
Christian Heimes8dc226f2008-05-06 23:45:46 +0000179 self.assertEqual(rc, 1)
180
Éric Araujo63ebe1c2011-01-03 17:51:11 +0000181 env = os.environ.copy()
Christian Heimes8dc226f2008-05-06 23:45:46 +0000182 rc = subprocess.call([sys.executable, '-s', '-c',
Éric Araujo63ebe1c2011-01-03 17:51:11 +0000183 'import sys; sys.exit(%r in sys.path)' % usersite],
184 env=env)
Antoine Pitroua1782e12013-10-23 22:03:22 +0200185 if usersite == site.getsitepackages()[0]:
186 self.assertEqual(rc, 1)
187 else:
188 self.assertEqual(rc, 0)
Christian Heimes8dc226f2008-05-06 23:45:46 +0000189
190 env = os.environ.copy()
191 env["PYTHONNOUSERSITE"] = "1"
192 rc = subprocess.call([sys.executable, '-c',
Benjamin Petersonfea6a942008-07-02 16:11:42 +0000193 'import sys; sys.exit(%r in sys.path)' % usersite],
Christian Heimes8dc226f2008-05-06 23:45:46 +0000194 env=env)
Antoine Pitroua1782e12013-10-23 22:03:22 +0200195 if usersite == site.getsitepackages()[0]:
196 self.assertEqual(rc, 1)
197 else:
198 self.assertEqual(rc, 0)
Christian Heimes8dc226f2008-05-06 23:45:46 +0000199
200 env = os.environ.copy()
201 env["PYTHONUSERBASE"] = "/tmp"
202 rc = subprocess.call([sys.executable, '-c',
203 'import sys, site; sys.exit(site.USER_BASE.startswith("/tmp"))'],
204 env=env)
205 self.assertEqual(rc, 1)
206
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000207 def test_getuserbase(self):
208 site.USER_BASE = None
209 user_base = site.getuserbase()
210
211 # the call sets site.USER_BASE
Ezio Melottib3aedd42010-11-20 19:04:17 +0000212 self.assertEqual(site.USER_BASE, user_base)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000213
214 # let's set PYTHONUSERBASE and see if it uses it
215 site.USER_BASE = None
Tarek Ziadéedacea32010-01-29 11:41:03 +0000216 import sysconfig
217 sysconfig._CONFIG_VARS = None
218
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000219 with EnvironmentVarGuard() as environ:
220 environ['PYTHONUSERBASE'] = 'xoxo'
Antoine Pitrou9166e6a2009-11-01 23:55:40 +0000221 self.assertTrue(site.getuserbase().startswith('xoxo'),
222 site.getuserbase())
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000223
224 def test_getusersitepackages(self):
225 site.USER_SITE = None
226 site.USER_BASE = None
227 user_site = site.getusersitepackages()
228
229 # the call sets USER_BASE *and* USER_SITE
Ezio Melottib3aedd42010-11-20 19:04:17 +0000230 self.assertEqual(site.USER_SITE, user_site)
Antoine Pitrou9166e6a2009-11-01 23:55:40 +0000231 self.assertTrue(user_site.startswith(site.USER_BASE), user_site)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000232
233 def test_getsitepackages(self):
234 site.PREFIXES = ['xoxo']
235 dirs = site.getsitepackages()
236
Christian Heimesde0b9622012-11-19 00:59:39 +0100237 if (sys.platform == "darwin" and
Ned Deilyd531b292012-02-06 00:58:18 +0100238 sysconfig.get_config_var("PYTHONFRAMEWORK")):
239 # OS X framework builds
240 site.PREFIXES = ['Python.framework']
241 dirs = site.getsitepackages()
Antoine Pitrou9e82b172014-06-12 19:41:30 -0400242 self.assertEqual(len(dirs), 2)
Ned Deilyd531b292012-02-06 00:58:18 +0100243 wanted = os.path.join('/Library',
244 sysconfig.get_config_var("PYTHONFRAMEWORK"),
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200245 '%d.%d' % sys.version_info[:2],
Ned Deilyd531b292012-02-06 00:58:18 +0100246 'site-packages')
Antoine Pitrou9e82b172014-06-12 19:41:30 -0400247 self.assertEqual(dirs[1], wanted)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000248 elif os.sep == '/':
Ned Deilyd531b292012-02-06 00:58:18 +0100249 # OS X non-framwework builds, Linux, FreeBSD, etc
Antoine Pitrou9e82b172014-06-12 19:41:30 -0400250 self.assertEqual(len(dirs), 1)
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200251 wanted = os.path.join('xoxo', 'lib',
252 'python%d.%d' % sys.version_info[:2],
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000253 'site-packages')
Ezio Melottib3aedd42010-11-20 19:04:17 +0000254 self.assertEqual(dirs[0], wanted)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000255 else:
Ned Deilyd531b292012-02-06 00:58:18 +0100256 # other platforms
Ezio Melottifc8b2052010-08-17 08:35:41 +0000257 self.assertEqual(len(dirs), 2)
Ezio Melottib3aedd42010-11-20 19:04:17 +0000258 self.assertEqual(dirs[0], 'xoxo')
Tarek Ziadé8c0e2172009-10-27 21:24:21 +0000259 wanted = os.path.join('xoxo', 'lib', 'site-packages')
Ezio Melottib3aedd42010-11-20 19:04:17 +0000260 self.assertEqual(dirs[1], wanted)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000261
Brett Cannon64a84702004-07-10 02:10:45 +0000262class PthFile(object):
263 """Helper class for handling testing of .pth files"""
Brett Cannon0096e262004-06-05 01:12:51 +0000264
Brett Cannon64a84702004-07-10 02:10:45 +0000265 def __init__(self, filename_base=TESTFN, imported="time",
266 good_dirname="__testdir__", bad_dirname="__bad"):
267 """Initialize instance variables"""
268 self.filename = filename_base + ".pth"
269 self.base_dir = os.path.abspath('')
270 self.file_path = os.path.join(self.base_dir, self.filename)
Brett Cannonee86a662004-07-13 07:12:25 +0000271 self.imported = imported
Brett Cannon64a84702004-07-10 02:10:45 +0000272 self.good_dirname = good_dirname
273 self.bad_dirname = bad_dirname
274 self.good_dir_path = os.path.join(self.base_dir, self.good_dirname)
275 self.bad_dir_path = os.path.join(self.base_dir, self.bad_dirname)
Brett Cannon0096e262004-06-05 01:12:51 +0000276
Brett Cannon64a84702004-07-10 02:10:45 +0000277 def create(self):
278 """Create a .pth file with a comment, blank lines, an ``import
279 <self.imported>``, a line with self.good_dirname, and a line with
280 self.bad_dirname.
Tim Peters182b5ac2004-07-18 06:16:08 +0000281
Brett Cannon64a84702004-07-10 02:10:45 +0000282 Creation of the directory for self.good_dir_path (based off of
283 self.good_dirname) is also performed.
Brett Cannon0096e262004-06-05 01:12:51 +0000284
Brett Cannon64a84702004-07-10 02:10:45 +0000285 Make sure to call self.cleanup() to undo anything done by this method.
Tim Peters182b5ac2004-07-18 06:16:08 +0000286
Brett Cannon64a84702004-07-10 02:10:45 +0000287 """
Michael W. Hudsonff522862005-05-27 14:58:06 +0000288 FILE = open(self.file_path, 'w')
Brett Cannon64a84702004-07-10 02:10:45 +0000289 try:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000290 print("#import @bad module name", file=FILE)
291 print("\n", file=FILE)
292 print("import %s" % self.imported, file=FILE)
293 print(self.good_dirname, file=FILE)
294 print(self.bad_dirname, file=FILE)
Brett Cannon64a84702004-07-10 02:10:45 +0000295 finally:
296 FILE.close()
297 os.mkdir(self.good_dir_path)
298
Brett Cannonee86a662004-07-13 07:12:25 +0000299 def cleanup(self, prep=False):
Brett Cannon64a84702004-07-10 02:10:45 +0000300 """Make sure that the .pth file is deleted, self.imported is not in
301 sys.modules, and that both self.good_dirname and self.bad_dirname are
302 not existing directories."""
Brett Cannonee86a662004-07-13 07:12:25 +0000303 if os.path.exists(self.file_path):
Brett Cannon64a84702004-07-10 02:10:45 +0000304 os.remove(self.file_path)
Brett Cannonee86a662004-07-13 07:12:25 +0000305 if prep:
306 self.imported_module = sys.modules.get(self.imported)
307 if self.imported_module:
308 del sys.modules[self.imported]
309 else:
310 if self.imported_module:
311 sys.modules[self.imported] = self.imported_module
312 if os.path.exists(self.good_dir_path):
Brett Cannon64a84702004-07-10 02:10:45 +0000313 os.rmdir(self.good_dir_path)
Brett Cannonee86a662004-07-13 07:12:25 +0000314 if os.path.exists(self.bad_dir_path):
Brett Cannon64a84702004-07-10 02:10:45 +0000315 os.rmdir(self.bad_dir_path)
Brett Cannon0096e262004-06-05 01:12:51 +0000316
317class ImportSideEffectTests(unittest.TestCase):
318 """Test side-effects from importing 'site'."""
319
320 def setUp(self):
321 """Make a copy of sys.path"""
322 self.sys_path = sys.path[:]
323
324 def tearDown(self):
325 """Restore sys.path"""
Nick Coghlan6ead5522009-10-18 13:19:33 +0000326 sys.path[:] = self.sys_path
Brett Cannon0096e262004-06-05 01:12:51 +0000327
Barry Warsaw28a691b2010-04-17 00:19:56 +0000328 def test_abs_paths(self):
329 # Make sure all imported modules have their __file__ and __cached__
330 # attributes as absolute paths. Arranging to put the Lib directory on
331 # PYTHONPATH would cause the os module to have a relative path for
332 # __file__ if abs_paths() does not get run. sys and builtins (the
333 # only other modules imported before site.py runs) do not have
334 # __file__ or __cached__ because they are built-in.
335 parent = os.path.relpath(os.path.dirname(os.__file__))
336 env = os.environ.copy()
337 env['PYTHONPATH'] = parent
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000338 code = ('import os, sys',
339 # use ASCII to avoid locale issues with non-ASCII directories
340 'os_file = os.__file__.encode("ascii", "backslashreplace")',
341 r'sys.stdout.buffer.write(os_file + b"\n")',
342 'os_cached = os.__cached__.encode("ascii", "backslashreplace")',
343 r'sys.stdout.buffer.write(os_cached + b"\n")')
344 command = '\n'.join(code)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000345 # First, prove that with -S (no 'import site'), the paths are
346 # relative.
347 proc = subprocess.Popen([sys.executable, '-S', '-c', command],
348 env=env,
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000349 stdout=subprocess.PIPE)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000350 stdout, stderr = proc.communicate()
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000351
Barry Warsaw28a691b2010-04-17 00:19:56 +0000352 self.assertEqual(proc.returncode, 0)
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000353 os__file__, os__cached__ = stdout.splitlines()[:2]
Barry Warsaw28a691b2010-04-17 00:19:56 +0000354 self.assertFalse(os.path.isabs(os__file__))
355 self.assertFalse(os.path.isabs(os__cached__))
356 # Now, with 'import site', it works.
357 proc = subprocess.Popen([sys.executable, '-c', command],
358 env=env,
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000359 stdout=subprocess.PIPE)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000360 stdout, stderr = proc.communicate()
361 self.assertEqual(proc.returncode, 0)
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000362 os__file__, os__cached__ = stdout.splitlines()[:2]
Eric Snow32439d62015-05-02 19:15:18 -0600363 self.assertTrue(os.path.isabs(os__file__),
Eric Snow00607e92015-05-04 11:48:39 -0600364 "expected absolute path, got {}"
365 .format(os__file__.decode('ascii')))
Eric Snow32439d62015-05-02 19:15:18 -0600366 self.assertTrue(os.path.isabs(os__cached__),
Eric Snow00607e92015-05-04 11:48:39 -0600367 "expected absolute path, got {}"
368 .format(os__cached__.decode('ascii')))
Brett Cannon0096e262004-06-05 01:12:51 +0000369
370 def test_no_duplicate_paths(self):
371 # No duplicate paths should exist in sys.path
372 # Handled by removeduppaths()
373 site.removeduppaths()
374 seen_paths = set()
375 for path in sys.path:
Benjamin Peterson577473f2010-01-19 00:09:57 +0000376 self.assertNotIn(path, seen_paths)
Brett Cannon0096e262004-06-05 01:12:51 +0000377 seen_paths.add(path)
378
Zachary Ware9fe6d862013-12-08 00:20:35 -0600379 @unittest.skip('test not implemented')
Brett Cannon0096e262004-06-05 01:12:51 +0000380 def test_add_build_dir(self):
381 # Test that the build directory's Modules directory is used when it
382 # should be.
383 # XXX: implement
384 pass
385
Brett Cannon0096e262004-06-05 01:12:51 +0000386 def test_setting_quit(self):
Georg Brandl1a3284e2007-12-02 09:40:06 +0000387 # 'quit' and 'exit' should be injected into builtins
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000388 self.assertTrue(hasattr(builtins, "quit"))
389 self.assertTrue(hasattr(builtins, "exit"))
Brett Cannon0096e262004-06-05 01:12:51 +0000390
391 def test_setting_copyright(self):
Senthil Kumaran8ef519b2013-09-07 13:59:17 -0700392 # 'copyright', 'credits', and 'license' should be in builtins
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000393 self.assertTrue(hasattr(builtins, "copyright"))
394 self.assertTrue(hasattr(builtins, "credits"))
Senthil Kumaran8ef519b2013-09-07 13:59:17 -0700395 self.assertTrue(hasattr(builtins, "license"))
Brett Cannon0096e262004-06-05 01:12:51 +0000396
397 def test_setting_help(self):
Georg Brandl1a3284e2007-12-02 09:40:06 +0000398 # 'help' should be set in builtins
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000399 self.assertTrue(hasattr(builtins, "help"))
Brett Cannon0096e262004-06-05 01:12:51 +0000400
401 def test_aliasing_mbcs(self):
402 if sys.platform == "win32":
403 import locale
404 if locale.getdefaultlocale()[1].startswith('cp'):
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000405 for value in encodings.aliases.aliases.values():
Brett Cannon0096e262004-06-05 01:12:51 +0000406 if value == "mbcs":
407 break
408 else:
409 self.fail("did not alias mbcs")
410
Brett Cannon0096e262004-06-05 01:12:51 +0000411 def test_sitecustomize_executed(self):
412 # If sitecustomize is available, it should have been imported.
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000413 if "sitecustomize" not in sys.modules:
Brett Cannon0096e262004-06-05 01:12:51 +0000414 try:
415 import sitecustomize
416 except ImportError:
417 pass
418 else:
419 self.fail("sitecustomize not imported automatically")
420
R David Murray1bc6ceb2013-09-14 13:28:37 -0400421 @test.support.requires_resource('network')
Benjamin Peterson337578b2015-02-01 20:16:59 -0500422 @test.support.system_must_validate_cert
Georg Brandl78abc9d2013-10-27 09:41:57 +0100423 @unittest.skipUnless(sys.version_info[3] == 'final',
424 'only for released versions')
Ned Deily5a507f02014-03-26 23:31:39 -0700425 @unittest.skipUnless(hasattr(urllib.request, "HTTPSHandler"),
426 'need SSL support to download license')
R David Murray1bc6ceb2013-09-14 13:28:37 -0400427 def test_license_exists_at_url(self):
Ned Deily944d5972014-03-26 23:43:26 -0700428 # This test is a bit fragile since it depends on the format of the
R David Murray1bc6ceb2013-09-14 13:28:37 -0400429 # string displayed by license in the absence of a LICENSE file.
430 url = license._Printer__data.split()[1]
431 req = urllib.request.Request(url, method='HEAD')
432 try:
Senthil Kumaran8ef519b2013-09-07 13:59:17 -0700433 with test.support.transient_internet(url):
R David Murray1bc6ceb2013-09-14 13:28:37 -0400434 with urllib.request.urlopen(req) as data:
435 code = data.getcode()
436 except urllib.error.HTTPError as e:
437 code = e.code
438 self.assertEqual(code, 200, msg="Can't find " + url)
Senthil Kumaran8ef519b2013-09-07 13:59:17 -0700439
Brett Cannon0096e262004-06-05 01:12:51 +0000440
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200441class StartupImportTests(unittest.TestCase):
442
443 def test_startup_imports(self):
444 # This tests checks which modules are loaded by Python when it
445 # initially starts upon startup.
Christian Heimes179a3db2013-10-12 12:32:21 +0200446 popen = subprocess.Popen([sys.executable, '-I', '-v', '-c',
447 'import sys; print(set(sys.modules))'],
448 stdout=subprocess.PIPE,
Steve Dower313523c2016-09-17 12:22:41 -0700449 stderr=subprocess.PIPE,
450 encoding='utf-8')
Christian Heimes179a3db2013-10-12 12:32:21 +0200451 stdout, stderr = popen.communicate()
Christian Heimes179a3db2013-10-12 12:32:21 +0200452 modules = eval(stdout)
453
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200454 self.assertIn('site', modules)
455
Christian Heimes25827622013-10-12 01:27:08 +0200456 # http://bugs.python.org/issue19205
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200457 re_mods = {'re', '_sre', 'sre_compile', 'sre_constants', 'sre_parse'}
Christian Heimesf403f502013-10-12 15:08:42 +0200458 # _osx_support uses the re module in many placs
459 if sys.platform != 'darwin':
460 self.assertFalse(modules.intersection(re_mods), stderr)
Christian Heimes25827622013-10-12 01:27:08 +0200461 # http://bugs.python.org/issue9548
Christian Heimes179a3db2013-10-12 12:32:21 +0200462 self.assertNotIn('locale', modules, stderr)
Christian Heimes86823a52013-10-17 13:40:00 +0200463 if sys.platform != 'darwin':
464 # http://bugs.python.org/issue19209
465 self.assertNotIn('copyreg', modules, stderr)
Christian Heimesf1dc3ee2013-10-13 02:04:20 +0200466 # http://bugs.python.org/issue19218>
467 collection_mods = {'_collections', 'collections', 'functools',
468 'heapq', 'itertools', 'keyword', 'operator',
doko@ubuntu.com95743552014-04-15 20:37:54 +0200469 'reprlib', 'types', 'weakref'
470 }.difference(sys.builtin_module_names)
Ned Deily8a2150a2016-09-12 00:26:20 -0400471 # http://bugs.python.org/issue28095
472 if sys.platform != 'darwin':
473 self.assertFalse(modules.intersection(collection_mods), stderr)
Christian Heimes1a5fb4e2013-10-12 01:00:51 +0200474
Steve Dower6dd8eca2016-09-17 14:35:32 -0700475 def test_startup_interactivehook(self):
476 r = subprocess.Popen([sys.executable, '-c',
477 'import sys; sys.exit(hasattr(sys, "__interactivehook__"))']).wait()
478 self.assertTrue(r, "'__interactivehook__' not added by site")
479
480 def test_startup_interactivehook_isolated(self):
481 # issue28192 readline is not automatically enabled in isolated mode
482 r = subprocess.Popen([sys.executable, '-I', '-c',
483 'import sys; sys.exit(hasattr(sys, "__interactivehook__"))']).wait()
484 self.assertFalse(r, "'__interactivehook__' added in isolated mode")
485
486 def test_startup_interactivehook_isolated_explicit(self):
487 # issue28192 readline can be explicitly enabled in isolated mode
488 r = subprocess.Popen([sys.executable, '-I', '-c',
489 'import site, sys; site.enablerlcompleter(); sys.exit(hasattr(sys, "__interactivehook__"))']).wait()
490 self.assertTrue(r, "'__interactivehook__' not added by enablerlcompleter()")
491
Steve Dower1da055e2016-10-29 08:50:31 -0700492 @classmethod
493 def _create_underpth_exe(self, lines):
494 exe_file = os.path.join(os.getenv('TEMP'), os.path.split(sys.executable)[1])
495 shutil.copy(sys.executable, exe_file)
496
497 _pth_file = os.path.splitext(exe_file)[0] + '._pth'
498 try:
499 with open(_pth_file, 'w') as f:
500 for line in lines:
501 print(line, file=f)
502 return exe_file
503 except:
504 os.unlink(_pth_file)
505 os.unlink(exe_file)
506 raise
507
508 @classmethod
509 def _cleanup_underpth_exe(self, exe_file):
510 _pth_file = os.path.splitext(exe_file)[0] + '._pth'
511 os.unlink(_pth_file)
512 os.unlink(exe_file)
513
Steve Dowerc6dd4152016-10-27 14:28:07 -0700514 @unittest.skipUnless(sys.platform == 'win32', "only supported on Windows")
515 def test_underpth_nosite_file(self):
Steve Dower1da055e2016-10-29 08:50:31 -0700516 libpath = os.path.dirname(os.path.dirname(encodings.__file__))
517 exe_prefix = os.path.dirname(sys.executable)
518 exe_file = self._create_underpth_exe([
519 'fake-path-name',
520 *[libpath for _ in range(200)],
521 '# comment',
522 'import site'
523 ])
Steve Dowerc6dd4152016-10-27 14:28:07 -0700524
Steve Dower1da055e2016-10-29 08:50:31 -0700525 try:
Steve Dowerc6dd4152016-10-27 14:28:07 -0700526 env = os.environ.copy()
527 env['PYTHONPATH'] = 'from-env'
Steve Dower1da055e2016-10-29 08:50:31 -0700528 env['PATH'] = '{};{}'.format(exe_prefix, os.getenv('PATH'))
529 rc = subprocess.call([exe_file, '-c',
Steve Dowerc6dd4152016-10-27 14:28:07 -0700530 'import sys; sys.exit(sys.flags.no_site and '
531 'len(sys.path) > 200 and '
532 '%r in sys.path and %r in sys.path and %r not in sys.path)' % (
533 os.path.join(sys.prefix, 'fake-path-name'),
534 libpath,
535 os.path.join(sys.prefix, 'from-env'),
536 )], env=env)
Steve Dowerc6dd4152016-10-27 14:28:07 -0700537 finally:
Steve Dower1da055e2016-10-29 08:50:31 -0700538 self._cleanup_underpth_exe(exe_file)
539 self.assertEqual(rc, 0)
Steve Dowerc6dd4152016-10-27 14:28:07 -0700540
541 @unittest.skipUnless(sys.platform == 'win32', "only supported on Windows")
542 def test_underpth_file(self):
Steve Dower1da055e2016-10-29 08:50:31 -0700543 libpath = os.path.dirname(os.path.dirname(encodings.__file__))
544 exe_prefix = os.path.dirname(sys.executable)
545 exe_file = self._create_underpth_exe([
546 'fake-path-name',
547 *[libpath for _ in range(200)],
548 '# comment',
549 'import site'
550 ])
Steve Dowerc6dd4152016-10-27 14:28:07 -0700551 try:
Steve Dowerc6dd4152016-10-27 14:28:07 -0700552 env = os.environ.copy()
553 env['PYTHONPATH'] = 'from-env'
Steve Dower1da055e2016-10-29 08:50:31 -0700554 env['PATH'] = '{};{}'.format(exe_prefix, os.getenv('PATH'))
555 rc = subprocess.call([exe_file, '-c',
Steve Dowerc6dd4152016-10-27 14:28:07 -0700556 'import sys; sys.exit(not sys.flags.no_site and '
557 '%r in sys.path and %r in sys.path and %r not in sys.path)' % (
558 os.path.join(sys.prefix, 'fake-path-name'),
559 libpath,
560 os.path.join(sys.prefix, 'from-env'),
561 )], env=env)
Steve Dowerc6dd4152016-10-27 14:28:07 -0700562 finally:
Steve Dower1da055e2016-10-29 08:50:31 -0700563 self._cleanup_underpth_exe(exe_file)
564 self.assertEqual(rc, 0)
Steve Dowerc6dd4152016-10-27 14:28:07 -0700565
Steve Dower6dd8eca2016-09-17 14:35:32 -0700566
Brett Cannon0096e262004-06-05 01:12:51 +0000567if __name__ == "__main__":
Brett Cannon3e9a9ae2013-06-12 21:25:59 -0400568 unittest.main()