blob: 0720230f24fe5363f390f2a2de76539eb71e55a5 [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
Christian Heimes8dc226f2008-05-06 23:45:46 +000017import subprocess
Tarek Ziadéedacea32010-01-29 11:41:03 +000018import sysconfig
19from copy import copy
20
Zachary Ware36193e72013-12-11 16:59:44 -060021# These tests are not particularly useful if Python was invoked with -S.
22# If you add tests that are useful under -S, this skip should be moved
23# to the class level.
24if sys.flags.no_site:
25 raise unittest.SkipTest("Python was invoked with -S")
26
27import site
Brett Cannon0096e262004-06-05 01:12:51 +000028
Ned Deily316f5732011-10-31 16:16:35 -070029if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
Christian Heimes8dc226f2008-05-06 23:45:46 +000030 # need to add user site directory for tests
Victor Stinner21d0e1b2016-03-14 17:47:03 +010031 try:
32 os.makedirs(site.USER_SITE)
33 site.addsitedir(site.USER_SITE)
34 except PermissionError as exc:
35 raise unittest.SkipTest('unable to create user site directory (%r): %s'
36 % (site.USER_SITE, exc))
37
Christian Heimes8dc226f2008-05-06 23:45:46 +000038
Brett Cannon0096e262004-06-05 01:12:51 +000039class HelperFunctionsTests(unittest.TestCase):
40 """Tests for helper functions.
Brett Cannon0096e262004-06-05 01:12:51 +000041 """
42
43 def setUp(self):
44 """Save a copy of sys.path"""
45 self.sys_path = sys.path[:]
Tarek Ziadé4a608c02009-08-20 21:28:05 +000046 self.old_base = site.USER_BASE
47 self.old_site = site.USER_SITE
48 self.old_prefixes = site.PREFIXES
Brett Cannon8ac95ee2012-04-04 17:31:16 -040049 self.original_vars = sysconfig._CONFIG_VARS
Tarek Ziadéedacea32010-01-29 11:41:03 +000050 self.old_vars = copy(sysconfig._CONFIG_VARS)
Brett Cannon0096e262004-06-05 01:12:51 +000051
Alexandre Vassalottie9f305f2008-05-16 04:39:54 +000052 def tearDown(self):
Brett Cannon0096e262004-06-05 01:12:51 +000053 """Restore sys.path"""
Nick Coghlan6ead5522009-10-18 13:19:33 +000054 sys.path[:] = self.sys_path
Tarek Ziadé4a608c02009-08-20 21:28:05 +000055 site.USER_BASE = self.old_base
56 site.USER_SITE = self.old_site
57 site.PREFIXES = self.old_prefixes
Brett Cannon8ac95ee2012-04-04 17:31:16 -040058 sysconfig._CONFIG_VARS = self.original_vars
59 sysconfig._CONFIG_VARS.clear()
60 sysconfig._CONFIG_VARS.update(self.old_vars)
Raymond Hettingerebd95222004-06-27 03:02:18 +000061
Brett Cannon0096e262004-06-05 01:12:51 +000062 def test_makepath(self):
63 # Test makepath() have an absolute path for its first return value
64 # and a case-normalized version of the absolute path for its
65 # second value.
66 path_parts = ("Beginning", "End")
67 original_dir = os.path.join(*path_parts)
68 abs_dir, norm_dir = site.makepath(*path_parts)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000069 self.assertEqual(os.path.abspath(original_dir), abs_dir)
Brett Cannon0096e262004-06-05 01:12:51 +000070 if original_dir == os.path.normcase(original_dir):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000071 self.assertEqual(abs_dir, norm_dir)
Brett Cannon0096e262004-06-05 01:12:51 +000072 else:
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000073 self.assertEqual(os.path.normcase(abs_dir), norm_dir)
Brett Cannon0096e262004-06-05 01:12:51 +000074
75 def test_init_pathinfo(self):
76 dir_set = site._init_pathinfo()
77 for entry in [site.makepath(path)[1] for path in sys.path
Brett Cannon5f0507d2016-04-08 15:04:28 -070078 if path and os.path.exists(path)]:
Ezio Melottib58e0bd2010-01-23 15:40:09 +000079 self.assertIn(entry, dir_set,
80 "%s from sys.path not found in set returned "
81 "by _init_pathinfo(): %s" % (entry, dir_set))
Raymond Hettingerebd95222004-06-27 03:02:18 +000082
Brett Cannonee86a662004-07-13 07:12:25 +000083 def pth_file_tests(self, pth_file):
84 """Contain common code for testing results of reading a .pth file"""
Ezio Melottib58e0bd2010-01-23 15:40:09 +000085 self.assertIn(pth_file.imported, sys.modules,
86 "%s not in sys.modules" % pth_file.imported)
Antoine Pitrou9166e6a2009-11-01 23:55:40 +000087 self.assertIn(site.makepath(pth_file.good_dir_path)[0], sys.path)
88 self.assertFalse(os.path.exists(pth_file.bad_dir_path))
Brett Cannonee86a662004-07-13 07:12:25 +000089
Brett Cannon0096e262004-06-05 01:12:51 +000090 def test_addpackage(self):
91 # Make sure addpackage() imports if the line starts with 'import',
Brett Cannon64a84702004-07-10 02:10:45 +000092 # adds directories to sys.path for any line in the file that is not a
93 # comment or import that is a valid directory name for where the .pth
94 # file resides; invalid directories are not added
95 pth_file = PthFile()
Brett Cannonee86a662004-07-13 07:12:25 +000096 pth_file.cleanup(prep=True) # to make sure that nothing is
97 # pre-existing that shouldn't be
Brett Cannon0096e262004-06-05 01:12:51 +000098 try:
Brett Cannon64a84702004-07-10 02:10:45 +000099 pth_file.create()
100 site.addpackage(pth_file.base_dir, pth_file.filename, set())
Brett Cannonee86a662004-07-13 07:12:25 +0000101 self.pth_file_tests(pth_file)
Brett Cannon0096e262004-06-05 01:12:51 +0000102 finally:
Brett Cannon64a84702004-07-10 02:10:45 +0000103 pth_file.cleanup()
Raymond Hettingerebd95222004-06-27 03:02:18 +0000104
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000105 def make_pth(self, contents, pth_dir='.', pth_name=TESTFN):
106 # Create a .pth file and return its (abspath, basename).
107 pth_dir = os.path.abspath(pth_dir)
108 pth_basename = pth_name + '.pth'
109 pth_fn = os.path.join(pth_dir, pth_basename)
110 pth_file = open(pth_fn, 'w', encoding='utf-8')
111 self.addCleanup(lambda: os.remove(pth_fn))
112 pth_file.write(contents)
113 pth_file.close()
114 return pth_dir, pth_basename
115
116 def test_addpackage_import_bad_syntax(self):
117 # Issue 10642
118 pth_dir, pth_fn = self.make_pth("import bad)syntax\n")
119 with captured_stderr() as err_out:
120 site.addpackage(pth_dir, pth_fn, set())
121 self.assertRegex(err_out.getvalue(), "line 1")
R. David Murrayab9d8d62010-12-27 00:03:13 +0000122 self.assertRegex(err_out.getvalue(),
123 re.escape(os.path.join(pth_dir, pth_fn)))
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000124 # XXX: the previous two should be independent checks so that the
125 # order doesn't matter. The next three could be a single check
126 # but my regex foo isn't good enough to write it.
127 self.assertRegex(err_out.getvalue(), 'Traceback')
128 self.assertRegex(err_out.getvalue(), r'import bad\)syntax')
129 self.assertRegex(err_out.getvalue(), 'SyntaxError')
130
131 def test_addpackage_import_bad_exec(self):
132 # Issue 10642
133 pth_dir, pth_fn = self.make_pth("randompath\nimport nosuchmodule\n")
134 with captured_stderr() as err_out:
135 site.addpackage(pth_dir, pth_fn, set())
136 self.assertRegex(err_out.getvalue(), "line 2")
R. David Murrayab9d8d62010-12-27 00:03:13 +0000137 self.assertRegex(err_out.getvalue(),
138 re.escape(os.path.join(pth_dir, pth_fn)))
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000139 # XXX: ditto previous XXX comment.
140 self.assertRegex(err_out.getvalue(), 'Traceback')
Eric Snow46f97b82016-09-07 16:56:15 -0700141 self.assertRegex(err_out.getvalue(), 'ModuleNotFoundError')
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000142
R. David Murrayad4ccfd2010-12-27 04:31:48 +0000143 @unittest.skipIf(sys.platform == "win32", "Windows does not raise an "
144 "error for file paths containing null characters")
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000145 def test_addpackage_import_bad_pth_file(self):
146 # Issue 5258
147 pth_dir, pth_fn = self.make_pth("abc\x00def\n")
148 with captured_stderr() as err_out:
149 site.addpackage(pth_dir, pth_fn, set())
150 self.assertRegex(err_out.getvalue(), "line 1")
R. David Murrayab9d8d62010-12-27 00:03:13 +0000151 self.assertRegex(err_out.getvalue(),
152 re.escape(os.path.join(pth_dir, pth_fn)))
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000153 # XXX: ditto previous XXX comment.
154 self.assertRegex(err_out.getvalue(), 'Traceback')
Serhiy Storchakad8a14472014-09-06 20:07:17 +0300155 self.assertRegex(err_out.getvalue(), 'ValueError')
R. David Murrayb4ca59b2010-12-26 19:54:29 +0000156
Brett Cannon0096e262004-06-05 01:12:51 +0000157 def test_addsitedir(self):
Brett Cannon64a84702004-07-10 02:10:45 +0000158 # Same tests for test_addpackage since addsitedir() essentially just
159 # calls addpackage() for every .pth file in the directory
160 pth_file = PthFile()
Brett Cannonee86a662004-07-13 07:12:25 +0000161 pth_file.cleanup(prep=True) # Make sure that nothing is pre-existing
162 # that is tested for
Brett Cannon0096e262004-06-05 01:12:51 +0000163 try:
Brett Cannonee86a662004-07-13 07:12:25 +0000164 pth_file.create()
Brett Cannon64a84702004-07-10 02:10:45 +0000165 site.addsitedir(pth_file.base_dir, set())
Brett Cannonee86a662004-07-13 07:12:25 +0000166 self.pth_file_tests(pth_file)
Brett Cannon0096e262004-06-05 01:12:51 +0000167 finally:
Brett Cannon64a84702004-07-10 02:10:45 +0000168 pth_file.cleanup()
Brett Cannon0096e262004-06-05 01:12:51 +0000169
Ned Deily316f5732011-10-31 16:16:35 -0700170 @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 "
171 "user-site (site.ENABLE_USER_SITE)")
Christian Heimes8dc226f2008-05-06 23:45:46 +0000172 def test_s_option(self):
173 usersite = site.USER_SITE
Antoine Pitrou9166e6a2009-11-01 23:55:40 +0000174 self.assertIn(usersite, sys.path)
Christian Heimes8dc226f2008-05-06 23:45:46 +0000175
Éric Araujo63ebe1c2011-01-03 17:51:11 +0000176 env = os.environ.copy()
Christian Heimes8dc226f2008-05-06 23:45:46 +0000177 rc = subprocess.call([sys.executable, '-c',
Éric Araujo63ebe1c2011-01-03 17:51:11 +0000178 'import sys; sys.exit(%r in sys.path)' % usersite],
179 env=env)
Christian Heimes8dc226f2008-05-06 23:45:46 +0000180 self.assertEqual(rc, 1)
181
Éric Araujo63ebe1c2011-01-03 17:51:11 +0000182 env = os.environ.copy()
Christian Heimes8dc226f2008-05-06 23:45:46 +0000183 rc = subprocess.call([sys.executable, '-s', '-c',
Éric Araujo63ebe1c2011-01-03 17:51:11 +0000184 'import sys; sys.exit(%r in sys.path)' % usersite],
185 env=env)
Antoine Pitroua1782e12013-10-23 22:03:22 +0200186 if usersite == site.getsitepackages()[0]:
187 self.assertEqual(rc, 1)
188 else:
189 self.assertEqual(rc, 0)
Christian Heimes8dc226f2008-05-06 23:45:46 +0000190
191 env = os.environ.copy()
192 env["PYTHONNOUSERSITE"] = "1"
193 rc = subprocess.call([sys.executable, '-c',
Benjamin Petersonfea6a942008-07-02 16:11:42 +0000194 'import sys; sys.exit(%r in sys.path)' % usersite],
Christian Heimes8dc226f2008-05-06 23:45:46 +0000195 env=env)
Antoine Pitroua1782e12013-10-23 22:03:22 +0200196 if usersite == site.getsitepackages()[0]:
197 self.assertEqual(rc, 1)
198 else:
199 self.assertEqual(rc, 0)
Christian Heimes8dc226f2008-05-06 23:45:46 +0000200
201 env = os.environ.copy()
202 env["PYTHONUSERBASE"] = "/tmp"
203 rc = subprocess.call([sys.executable, '-c',
204 'import sys, site; sys.exit(site.USER_BASE.startswith("/tmp"))'],
205 env=env)
206 self.assertEqual(rc, 1)
207
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000208 def test_getuserbase(self):
209 site.USER_BASE = None
210 user_base = site.getuserbase()
211
212 # the call sets site.USER_BASE
Ezio Melottib3aedd42010-11-20 19:04:17 +0000213 self.assertEqual(site.USER_BASE, user_base)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000214
215 # let's set PYTHONUSERBASE and see if it uses it
216 site.USER_BASE = None
Tarek Ziadéedacea32010-01-29 11:41:03 +0000217 import sysconfig
218 sysconfig._CONFIG_VARS = None
219
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000220 with EnvironmentVarGuard() as environ:
221 environ['PYTHONUSERBASE'] = 'xoxo'
Antoine Pitrou9166e6a2009-11-01 23:55:40 +0000222 self.assertTrue(site.getuserbase().startswith('xoxo'),
223 site.getuserbase())
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000224
225 def test_getusersitepackages(self):
226 site.USER_SITE = None
227 site.USER_BASE = None
228 user_site = site.getusersitepackages()
229
230 # the call sets USER_BASE *and* USER_SITE
Ezio Melottib3aedd42010-11-20 19:04:17 +0000231 self.assertEqual(site.USER_SITE, user_site)
Antoine Pitrou9166e6a2009-11-01 23:55:40 +0000232 self.assertTrue(user_site.startswith(site.USER_BASE), user_site)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000233
234 def test_getsitepackages(self):
235 site.PREFIXES = ['xoxo']
236 dirs = site.getsitepackages()
237
Christian Heimesde0b9622012-11-19 00:59:39 +0100238 if (sys.platform == "darwin" and
Ned Deilyd531b292012-02-06 00:58:18 +0100239 sysconfig.get_config_var("PYTHONFRAMEWORK")):
240 # OS X framework builds
241 site.PREFIXES = ['Python.framework']
242 dirs = site.getsitepackages()
Antoine Pitrou9e82b172014-06-12 19:41:30 -0400243 self.assertEqual(len(dirs), 2)
Ned Deilyd531b292012-02-06 00:58:18 +0100244 wanted = os.path.join('/Library',
245 sysconfig.get_config_var("PYTHONFRAMEWORK"),
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200246 '%d.%d' % sys.version_info[:2],
Ned Deilyd531b292012-02-06 00:58:18 +0100247 'site-packages')
Antoine Pitrou9e82b172014-06-12 19:41:30 -0400248 self.assertEqual(dirs[1], wanted)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000249 elif os.sep == '/':
Ned Deilyd531b292012-02-06 00:58:18 +0100250 # OS X non-framwework builds, Linux, FreeBSD, etc
Antoine Pitrou9e82b172014-06-12 19:41:30 -0400251 self.assertEqual(len(dirs), 1)
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200252 wanted = os.path.join('xoxo', 'lib',
253 'python%d.%d' % sys.version_info[:2],
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000254 'site-packages')
Ezio Melottib3aedd42010-11-20 19:04:17 +0000255 self.assertEqual(dirs[0], wanted)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000256 else:
Ned Deilyd531b292012-02-06 00:58:18 +0100257 # other platforms
Ezio Melottifc8b2052010-08-17 08:35:41 +0000258 self.assertEqual(len(dirs), 2)
Ezio Melottib3aedd42010-11-20 19:04:17 +0000259 self.assertEqual(dirs[0], 'xoxo')
Tarek Ziadé8c0e2172009-10-27 21:24:21 +0000260 wanted = os.path.join('xoxo', 'lib', 'site-packages')
Ezio Melottib3aedd42010-11-20 19:04:17 +0000261 self.assertEqual(dirs[1], wanted)
Tarek Ziadé4a608c02009-08-20 21:28:05 +0000262
Brett Cannon64a84702004-07-10 02:10:45 +0000263class PthFile(object):
264 """Helper class for handling testing of .pth files"""
Brett Cannon0096e262004-06-05 01:12:51 +0000265
Brett Cannon64a84702004-07-10 02:10:45 +0000266 def __init__(self, filename_base=TESTFN, imported="time",
267 good_dirname="__testdir__", bad_dirname="__bad"):
268 """Initialize instance variables"""
269 self.filename = filename_base + ".pth"
270 self.base_dir = os.path.abspath('')
271 self.file_path = os.path.join(self.base_dir, self.filename)
Brett Cannonee86a662004-07-13 07:12:25 +0000272 self.imported = imported
Brett Cannon64a84702004-07-10 02:10:45 +0000273 self.good_dirname = good_dirname
274 self.bad_dirname = bad_dirname
275 self.good_dir_path = os.path.join(self.base_dir, self.good_dirname)
276 self.bad_dir_path = os.path.join(self.base_dir, self.bad_dirname)
Brett Cannon0096e262004-06-05 01:12:51 +0000277
Brett Cannon64a84702004-07-10 02:10:45 +0000278 def create(self):
279 """Create a .pth file with a comment, blank lines, an ``import
280 <self.imported>``, a line with self.good_dirname, and a line with
281 self.bad_dirname.
Tim Peters182b5ac2004-07-18 06:16:08 +0000282
Brett Cannon64a84702004-07-10 02:10:45 +0000283 Creation of the directory for self.good_dir_path (based off of
284 self.good_dirname) is also performed.
Brett Cannon0096e262004-06-05 01:12:51 +0000285
Brett Cannon64a84702004-07-10 02:10:45 +0000286 Make sure to call self.cleanup() to undo anything done by this method.
Tim Peters182b5ac2004-07-18 06:16:08 +0000287
Brett Cannon64a84702004-07-10 02:10:45 +0000288 """
Michael W. Hudsonff522862005-05-27 14:58:06 +0000289 FILE = open(self.file_path, 'w')
Brett Cannon64a84702004-07-10 02:10:45 +0000290 try:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000291 print("#import @bad module name", file=FILE)
292 print("\n", file=FILE)
293 print("import %s" % self.imported, file=FILE)
294 print(self.good_dirname, file=FILE)
295 print(self.bad_dirname, file=FILE)
Brett Cannon64a84702004-07-10 02:10:45 +0000296 finally:
297 FILE.close()
298 os.mkdir(self.good_dir_path)
299
Brett Cannonee86a662004-07-13 07:12:25 +0000300 def cleanup(self, prep=False):
Brett Cannon64a84702004-07-10 02:10:45 +0000301 """Make sure that the .pth file is deleted, self.imported is not in
302 sys.modules, and that both self.good_dirname and self.bad_dirname are
303 not existing directories."""
Brett Cannonee86a662004-07-13 07:12:25 +0000304 if os.path.exists(self.file_path):
Brett Cannon64a84702004-07-10 02:10:45 +0000305 os.remove(self.file_path)
Brett Cannonee86a662004-07-13 07:12:25 +0000306 if prep:
307 self.imported_module = sys.modules.get(self.imported)
308 if self.imported_module:
309 del sys.modules[self.imported]
310 else:
311 if self.imported_module:
312 sys.modules[self.imported] = self.imported_module
313 if os.path.exists(self.good_dir_path):
Brett Cannon64a84702004-07-10 02:10:45 +0000314 os.rmdir(self.good_dir_path)
Brett Cannonee86a662004-07-13 07:12:25 +0000315 if os.path.exists(self.bad_dir_path):
Brett Cannon64a84702004-07-10 02:10:45 +0000316 os.rmdir(self.bad_dir_path)
Brett Cannon0096e262004-06-05 01:12:51 +0000317
318class ImportSideEffectTests(unittest.TestCase):
319 """Test side-effects from importing 'site'."""
320
321 def setUp(self):
322 """Make a copy of sys.path"""
323 self.sys_path = sys.path[:]
324
325 def tearDown(self):
326 """Restore sys.path"""
Nick Coghlan6ead5522009-10-18 13:19:33 +0000327 sys.path[:] = self.sys_path
Brett Cannon0096e262004-06-05 01:12:51 +0000328
Barry Warsaw28a691b2010-04-17 00:19:56 +0000329 def test_abs_paths(self):
330 # Make sure all imported modules have their __file__ and __cached__
331 # attributes as absolute paths. Arranging to put the Lib directory on
332 # PYTHONPATH would cause the os module to have a relative path for
333 # __file__ if abs_paths() does not get run. sys and builtins (the
334 # only other modules imported before site.py runs) do not have
335 # __file__ or __cached__ because they are built-in.
336 parent = os.path.relpath(os.path.dirname(os.__file__))
337 env = os.environ.copy()
338 env['PYTHONPATH'] = parent
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000339 code = ('import os, sys',
340 # use ASCII to avoid locale issues with non-ASCII directories
341 'os_file = os.__file__.encode("ascii", "backslashreplace")',
342 r'sys.stdout.buffer.write(os_file + b"\n")',
343 'os_cached = os.__cached__.encode("ascii", "backslashreplace")',
344 r'sys.stdout.buffer.write(os_cached + b"\n")')
345 command = '\n'.join(code)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000346 # First, prove that with -S (no 'import site'), the paths are
347 # relative.
348 proc = subprocess.Popen([sys.executable, '-S', '-c', command],
349 env=env,
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000350 stdout=subprocess.PIPE)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000351 stdout, stderr = proc.communicate()
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000352
Barry Warsaw28a691b2010-04-17 00:19:56 +0000353 self.assertEqual(proc.returncode, 0)
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000354 os__file__, os__cached__ = stdout.splitlines()[:2]
Barry Warsaw28a691b2010-04-17 00:19:56 +0000355 self.assertFalse(os.path.isabs(os__file__))
356 self.assertFalse(os.path.isabs(os__cached__))
357 # Now, with 'import site', it works.
358 proc = subprocess.Popen([sys.executable, '-c', command],
359 env=env,
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000360 stdout=subprocess.PIPE)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000361 stdout, stderr = proc.communicate()
362 self.assertEqual(proc.returncode, 0)
Victor Stinnerf3bc2582010-04-18 07:59:53 +0000363 os__file__, os__cached__ = stdout.splitlines()[:2]
Eric Snow32439d62015-05-02 19:15:18 -0600364 self.assertTrue(os.path.isabs(os__file__),
Eric Snow00607e92015-05-04 11:48:39 -0600365 "expected absolute path, got {}"
366 .format(os__file__.decode('ascii')))
Eric Snow32439d62015-05-02 19:15:18 -0600367 self.assertTrue(os.path.isabs(os__cached__),
Eric Snow00607e92015-05-04 11:48:39 -0600368 "expected absolute path, got {}"
369 .format(os__cached__.decode('ascii')))
Brett Cannon0096e262004-06-05 01:12:51 +0000370
371 def test_no_duplicate_paths(self):
372 # No duplicate paths should exist in sys.path
373 # Handled by removeduppaths()
374 site.removeduppaths()
375 seen_paths = set()
376 for path in sys.path:
Benjamin Peterson577473f2010-01-19 00:09:57 +0000377 self.assertNotIn(path, seen_paths)
Brett Cannon0096e262004-06-05 01:12:51 +0000378 seen_paths.add(path)
379
Zachary Ware9fe6d862013-12-08 00:20:35 -0600380 @unittest.skip('test not implemented')
Brett Cannon0096e262004-06-05 01:12:51 +0000381 def test_add_build_dir(self):
382 # Test that the build directory's Modules directory is used when it
383 # should be.
384 # XXX: implement
385 pass
386
Brett Cannon0096e262004-06-05 01:12:51 +0000387 def test_setting_quit(self):
Georg Brandl1a3284e2007-12-02 09:40:06 +0000388 # 'quit' and 'exit' should be injected into builtins
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000389 self.assertTrue(hasattr(builtins, "quit"))
390 self.assertTrue(hasattr(builtins, "exit"))
Brett Cannon0096e262004-06-05 01:12:51 +0000391
392 def test_setting_copyright(self):
Senthil Kumaran8ef519b2013-09-07 13:59:17 -0700393 # 'copyright', 'credits', and 'license' should be in builtins
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000394 self.assertTrue(hasattr(builtins, "copyright"))
395 self.assertTrue(hasattr(builtins, "credits"))
Senthil Kumaran8ef519b2013-09-07 13:59:17 -0700396 self.assertTrue(hasattr(builtins, "license"))
Brett Cannon0096e262004-06-05 01:12:51 +0000397
398 def test_setting_help(self):
Georg Brandl1a3284e2007-12-02 09:40:06 +0000399 # 'help' should be set in builtins
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000400 self.assertTrue(hasattr(builtins, "help"))
Brett Cannon0096e262004-06-05 01:12:51 +0000401
402 def test_aliasing_mbcs(self):
403 if sys.platform == "win32":
404 import locale
405 if locale.getdefaultlocale()[1].startswith('cp'):
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000406 for value in encodings.aliases.aliases.values():
Brett Cannon0096e262004-06-05 01:12:51 +0000407 if value == "mbcs":
408 break
409 else:
410 self.fail("did not alias mbcs")
411
Brett Cannon0096e262004-06-05 01:12:51 +0000412 def test_sitecustomize_executed(self):
413 # If sitecustomize is available, it should have been imported.
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000414 if "sitecustomize" not in sys.modules:
Brett Cannon0096e262004-06-05 01:12:51 +0000415 try:
416 import sitecustomize
417 except ImportError:
418 pass
419 else:
420 self.fail("sitecustomize not imported automatically")
421
R David Murray1bc6ceb2013-09-14 13:28:37 -0400422 @test.support.requires_resource('network')
Benjamin Peterson337578b2015-02-01 20:16:59 -0500423 @test.support.system_must_validate_cert
Georg Brandl78abc9d2013-10-27 09:41:57 +0100424 @unittest.skipUnless(sys.version_info[3] == 'final',
425 'only for released versions')
Ned Deily5a507f02014-03-26 23:31:39 -0700426 @unittest.skipUnless(hasattr(urllib.request, "HTTPSHandler"),
427 'need SSL support to download license')
R David Murray1bc6ceb2013-09-14 13:28:37 -0400428 def test_license_exists_at_url(self):
Ned Deily944d5972014-03-26 23:43:26 -0700429 # This test is a bit fragile since it depends on the format of the
R David Murray1bc6ceb2013-09-14 13:28:37 -0400430 # string displayed by license in the absence of a LICENSE file.
431 url = license._Printer__data.split()[1]
432 req = urllib.request.Request(url, method='HEAD')
433 try:
Senthil Kumaran8ef519b2013-09-07 13:59:17 -0700434 with test.support.transient_internet(url):
R David Murray1bc6ceb2013-09-14 13:28:37 -0400435 with urllib.request.urlopen(req) as data:
436 code = data.getcode()
437 except urllib.error.HTTPError as e:
438 code = e.code
439 self.assertEqual(code, 200, msg="Can't find " + url)
Senthil Kumaran8ef519b2013-09-07 13:59:17 -0700440
Brett Cannon0096e262004-06-05 01:12:51 +0000441
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200442class StartupImportTests(unittest.TestCase):
443
444 def test_startup_imports(self):
445 # This tests checks which modules are loaded by Python when it
446 # initially starts upon startup.
Christian Heimes179a3db2013-10-12 12:32:21 +0200447 popen = subprocess.Popen([sys.executable, '-I', '-v', '-c',
448 'import sys; print(set(sys.modules))'],
449 stdout=subprocess.PIPE,
450 stderr=subprocess.PIPE)
451 stdout, stderr = popen.communicate()
452 stdout = stdout.decode('utf-8')
453 stderr = stderr.decode('utf-8')
454 modules = eval(stdout)
455
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200456 self.assertIn('site', modules)
457
Christian Heimes25827622013-10-12 01:27:08 +0200458 # http://bugs.python.org/issue19205
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200459 re_mods = {'re', '_sre', 'sre_compile', 'sre_constants', 'sre_parse'}
Christian Heimesf403f502013-10-12 15:08:42 +0200460 # _osx_support uses the re module in many placs
461 if sys.platform != 'darwin':
462 self.assertFalse(modules.intersection(re_mods), stderr)
Christian Heimes25827622013-10-12 01:27:08 +0200463 # http://bugs.python.org/issue9548
Christian Heimes179a3db2013-10-12 12:32:21 +0200464 self.assertNotIn('locale', modules, stderr)
Christian Heimes86823a52013-10-17 13:40:00 +0200465 if sys.platform != 'darwin':
466 # http://bugs.python.org/issue19209
467 self.assertNotIn('copyreg', modules, stderr)
Christian Heimesf1dc3ee2013-10-13 02:04:20 +0200468 # http://bugs.python.org/issue19218>
469 collection_mods = {'_collections', 'collections', 'functools',
470 'heapq', 'itertools', 'keyword', 'operator',
doko@ubuntu.com95743552014-04-15 20:37:54 +0200471 'reprlib', 'types', 'weakref'
472 }.difference(sys.builtin_module_names)
Ned Deilyb795aa82013-10-17 15:21:40 -0700473 self.assertFalse(modules.intersection(collection_mods), stderr)
Christian Heimes1a5fb4e2013-10-12 01:00:51 +0200474
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200475
Brett Cannon0096e262004-06-05 01:12:51 +0000476if __name__ == "__main__":
Brett Cannon3e9a9ae2013-06-12 21:25:59 -0400477 unittest.main()