Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 1 | """Tests for 'site'. |
| 2 | |
| 3 | Tests assume the initial paths in sys.path once the interpreter has begun |
| 4 | executing have not been removed. |
| 5 | |
| 6 | """ |
| 7 | import unittest |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 8 | from test.test_support import TestSkipped, TestFailed, run_unittest, TESTFN |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 9 | import builtins |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 10 | import os |
| 11 | import sys |
| 12 | import encodings |
| 13 | import tempfile |
| 14 | # Need to make sure to not import 'site' if someone specified ``-S`` at the |
| 15 | # command-line. Detect this by just making sure 'site' has not been imported |
| 16 | # already. |
| 17 | if "site" in sys.modules: |
| 18 | import site |
| 19 | else: |
| 20 | raise TestSkipped("importation of site.py suppressed") |
| 21 | |
| 22 | class HelperFunctionsTests(unittest.TestCase): |
| 23 | """Tests for helper functions. |
Raymond Hettinger | ebd9522 | 2004-06-27 03:02:18 +0000 | [diff] [blame] | 24 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 25 | The setting of the encoding (set using sys.setdefaultencoding) used by |
| 26 | the Unicode implementation is not tested. |
Raymond Hettinger | ebd9522 | 2004-06-27 03:02:18 +0000 | [diff] [blame] | 27 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 28 | """ |
| 29 | |
| 30 | def setUp(self): |
| 31 | """Save a copy of sys.path""" |
| 32 | self.sys_path = sys.path[:] |
| 33 | |
| 34 | def tearDown(self): |
| 35 | """Restore sys.path""" |
| 36 | sys.path = self.sys_path |
Raymond Hettinger | ebd9522 | 2004-06-27 03:02:18 +0000 | [diff] [blame] | 37 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 38 | def test_makepath(self): |
| 39 | # Test makepath() have an absolute path for its first return value |
| 40 | # and a case-normalized version of the absolute path for its |
| 41 | # second value. |
| 42 | path_parts = ("Beginning", "End") |
| 43 | original_dir = os.path.join(*path_parts) |
| 44 | abs_dir, norm_dir = site.makepath(*path_parts) |
| 45 | self.failUnlessEqual(os.path.abspath(original_dir), abs_dir) |
| 46 | if original_dir == os.path.normcase(original_dir): |
| 47 | self.failUnlessEqual(abs_dir, norm_dir) |
| 48 | else: |
| 49 | self.failUnlessEqual(os.path.normcase(abs_dir), norm_dir) |
| 50 | |
| 51 | def test_init_pathinfo(self): |
| 52 | dir_set = site._init_pathinfo() |
| 53 | for entry in [site.makepath(path)[1] for path in sys.path |
| 54 | if path and os.path.isdir(path)]: |
| 55 | self.failUnless(entry in dir_set, |
| 56 | "%s from sys.path not found in set returned " |
| 57 | "by _init_pathinfo(): %s" % (entry, dir_set)) |
Raymond Hettinger | ebd9522 | 2004-06-27 03:02:18 +0000 | [diff] [blame] | 58 | |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 59 | def pth_file_tests(self, pth_file): |
| 60 | """Contain common code for testing results of reading a .pth file""" |
| 61 | self.failUnless(pth_file.imported in sys.modules, |
| 62 | "%s not in sys.path" % pth_file.imported) |
| 63 | self.failUnless(site.makepath(pth_file.good_dir_path)[0] in sys.path) |
| 64 | self.failUnless(not os.path.exists(pth_file.bad_dir_path)) |
| 65 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 66 | def test_addpackage(self): |
| 67 | # Make sure addpackage() imports if the line starts with 'import', |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 68 | # adds directories to sys.path for any line in the file that is not a |
| 69 | # comment or import that is a valid directory name for where the .pth |
| 70 | # file resides; invalid directories are not added |
| 71 | pth_file = PthFile() |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 72 | pth_file.cleanup(prep=True) # to make sure that nothing is |
| 73 | # pre-existing that shouldn't be |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 74 | try: |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 75 | pth_file.create() |
| 76 | site.addpackage(pth_file.base_dir, pth_file.filename, set()) |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 77 | self.pth_file_tests(pth_file) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 78 | finally: |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 79 | pth_file.cleanup() |
Raymond Hettinger | ebd9522 | 2004-06-27 03:02:18 +0000 | [diff] [blame] | 80 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 81 | def test_addsitedir(self): |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 82 | # Same tests for test_addpackage since addsitedir() essentially just |
| 83 | # calls addpackage() for every .pth file in the directory |
| 84 | pth_file = PthFile() |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 85 | pth_file.cleanup(prep=True) # Make sure that nothing is pre-existing |
| 86 | # that is tested for |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 87 | try: |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 88 | pth_file.create() |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 89 | site.addsitedir(pth_file.base_dir, set()) |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 90 | self.pth_file_tests(pth_file) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 91 | finally: |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 92 | pth_file.cleanup() |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 93 | |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 94 | class PthFile(object): |
| 95 | """Helper class for handling testing of .pth files""" |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 96 | |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 97 | def __init__(self, filename_base=TESTFN, imported="time", |
| 98 | good_dirname="__testdir__", bad_dirname="__bad"): |
| 99 | """Initialize instance variables""" |
| 100 | self.filename = filename_base + ".pth" |
| 101 | self.base_dir = os.path.abspath('') |
| 102 | self.file_path = os.path.join(self.base_dir, self.filename) |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 103 | self.imported = imported |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 104 | self.good_dirname = good_dirname |
| 105 | self.bad_dirname = bad_dirname |
| 106 | self.good_dir_path = os.path.join(self.base_dir, self.good_dirname) |
| 107 | self.bad_dir_path = os.path.join(self.base_dir, self.bad_dirname) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 108 | |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 109 | def create(self): |
| 110 | """Create a .pth file with a comment, blank lines, an ``import |
| 111 | <self.imported>``, a line with self.good_dirname, and a line with |
| 112 | self.bad_dirname. |
Tim Peters | 182b5ac | 2004-07-18 06:16:08 +0000 | [diff] [blame] | 113 | |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 114 | Creation of the directory for self.good_dir_path (based off of |
| 115 | self.good_dirname) is also performed. |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 116 | |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 117 | Make sure to call self.cleanup() to undo anything done by this method. |
Tim Peters | 182b5ac | 2004-07-18 06:16:08 +0000 | [diff] [blame] | 118 | |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 119 | """ |
Michael W. Hudson | ff52286 | 2005-05-27 14:58:06 +0000 | [diff] [blame] | 120 | FILE = open(self.file_path, 'w') |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 121 | try: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 122 | print("#import @bad module name", file=FILE) |
| 123 | print("\n", file=FILE) |
| 124 | print("import %s" % self.imported, file=FILE) |
| 125 | print(self.good_dirname, file=FILE) |
| 126 | print(self.bad_dirname, file=FILE) |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 127 | finally: |
| 128 | FILE.close() |
| 129 | os.mkdir(self.good_dir_path) |
| 130 | |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 131 | def cleanup(self, prep=False): |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 132 | """Make sure that the .pth file is deleted, self.imported is not in |
| 133 | sys.modules, and that both self.good_dirname and self.bad_dirname are |
| 134 | not existing directories.""" |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 135 | if os.path.exists(self.file_path): |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 136 | os.remove(self.file_path) |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 137 | if prep: |
| 138 | self.imported_module = sys.modules.get(self.imported) |
| 139 | if self.imported_module: |
| 140 | del sys.modules[self.imported] |
| 141 | else: |
| 142 | if self.imported_module: |
| 143 | sys.modules[self.imported] = self.imported_module |
| 144 | if os.path.exists(self.good_dir_path): |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 145 | os.rmdir(self.good_dir_path) |
Brett Cannon | ee86a66 | 2004-07-13 07:12:25 +0000 | [diff] [blame] | 146 | if os.path.exists(self.bad_dir_path): |
Brett Cannon | 64a8470 | 2004-07-10 02:10:45 +0000 | [diff] [blame] | 147 | os.rmdir(self.bad_dir_path) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 148 | |
| 149 | class ImportSideEffectTests(unittest.TestCase): |
| 150 | """Test side-effects from importing 'site'.""" |
| 151 | |
| 152 | def setUp(self): |
| 153 | """Make a copy of sys.path""" |
| 154 | self.sys_path = sys.path[:] |
| 155 | |
| 156 | def tearDown(self): |
| 157 | """Restore sys.path""" |
| 158 | sys.path = self.sys_path |
| 159 | |
| 160 | def test_abs__file__(self): |
| 161 | # Make sure all imported modules have their __file__ attribute |
| 162 | # as an absolute path. |
| 163 | # Handled by abs__file__() |
| 164 | site.abs__file__() |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 165 | for module in (sys, os, builtins): |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 166 | try: |
Brett Cannon | 0b70cca | 2006-08-25 02:59:59 +0000 | [diff] [blame] | 167 | self.failUnless(os.path.isabs(module.__file__), repr(module)) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 168 | except AttributeError: |
| 169 | continue |
Raymond Hettinger | ebd9522 | 2004-06-27 03:02:18 +0000 | [diff] [blame] | 170 | # We could try everything in sys.modules; however, when regrtest.py |
| 171 | # runs something like test_frozen before test_site, then we will |
| 172 | # be testing things loaded *after* test_site did path normalization |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 173 | |
| 174 | def test_no_duplicate_paths(self): |
| 175 | # No duplicate paths should exist in sys.path |
| 176 | # Handled by removeduppaths() |
| 177 | site.removeduppaths() |
| 178 | seen_paths = set() |
| 179 | for path in sys.path: |
| 180 | self.failUnless(path not in seen_paths) |
| 181 | seen_paths.add(path) |
| 182 | |
| 183 | def test_add_build_dir(self): |
| 184 | # Test that the build directory's Modules directory is used when it |
| 185 | # should be. |
| 186 | # XXX: implement |
| 187 | pass |
| 188 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 189 | def test_setting_quit(self): |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 190 | # 'quit' and 'exit' should be injected into builtins |
| 191 | self.failUnless(hasattr(builtins, "quit")) |
| 192 | self.failUnless(hasattr(builtins, "exit")) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 193 | |
| 194 | def test_setting_copyright(self): |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 195 | # 'copyright' and 'credits' should be in builtins |
| 196 | self.failUnless(hasattr(builtins, "copyright")) |
| 197 | self.failUnless(hasattr(builtins, "credits")) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 198 | |
| 199 | def test_setting_help(self): |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 200 | # 'help' should be set in builtins |
| 201 | self.failUnless(hasattr(builtins, "help")) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 202 | |
| 203 | def test_aliasing_mbcs(self): |
| 204 | if sys.platform == "win32": |
| 205 | import locale |
| 206 | if locale.getdefaultlocale()[1].startswith('cp'): |
Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 207 | for value in encodings.aliases.aliases.values(): |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 208 | if value == "mbcs": |
| 209 | break |
| 210 | else: |
| 211 | self.fail("did not alias mbcs") |
| 212 | |
| 213 | def test_setdefaultencoding_removed(self): |
| 214 | # Make sure sys.setdefaultencoding is gone |
| 215 | self.failUnless(not hasattr(sys, "setdefaultencoding")) |
| 216 | |
| 217 | def test_sitecustomize_executed(self): |
| 218 | # If sitecustomize is available, it should have been imported. |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 219 | if "sitecustomize" not in sys.modules: |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 220 | try: |
| 221 | import sitecustomize |
| 222 | except ImportError: |
| 223 | pass |
| 224 | else: |
| 225 | self.fail("sitecustomize not imported automatically") |
| 226 | |
| 227 | |
| 228 | |
| 229 | |
| 230 | def test_main(): |
| 231 | run_unittest(HelperFunctionsTests, ImportSideEffectTests) |
| 232 | |
| 233 | |
| 234 | |
| 235 | if __name__ == "__main__": |
| 236 | test_main() |