Vinay Sajip | 4221142 | 2012-05-26 20:36:12 +0100 | [diff] [blame] | 1 | """ |
| 2 | Test harness for the venv module. |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 3 | |
Vinay Sajip | 4221142 | 2012-05-26 20:36:12 +0100 | [diff] [blame] | 4 | Copyright (C) 2011-2012 Vinay Sajip. |
Vinay Sajip | 2895244 | 2012-06-25 00:47:46 +0100 | [diff] [blame] | 5 | Licensed to the PSF under a contributor agreement. |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 6 | """ |
| 7 | |
Nick Coghlan | 1b1b178 | 2013-11-30 15:56:58 +1000 | [diff] [blame] | 8 | import ensurepip |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 9 | import os |
| 10 | import os.path |
| 11 | import shutil |
Vinay Sajip | 3874e54 | 2012-07-03 16:56:40 +0100 | [diff] [blame] | 12 | import subprocess |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 13 | import sys |
| 14 | import tempfile |
| 15 | from test.support import (captured_stdout, captured_stderr, run_unittest, |
Nick Coghlan | d76cdc1 | 2013-11-23 11:37:28 +1000 | [diff] [blame] | 16 | can_symlink, EnvironmentVarGuard) |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 17 | import textwrap |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 18 | import unittest |
| 19 | import venv |
Nick Coghlan | ae2ee96 | 2013-12-23 23:07:07 +1000 | [diff] [blame] | 20 | |
| 21 | # pip currently requires ssl support, so we ensure we handle |
| 22 | # it being missing (http://bugs.python.org/issue19744) |
Nick Coghlan | 878d258 | 2013-11-24 12:45:25 +1000 | [diff] [blame] | 23 | try: |
| 24 | import ssl |
| 25 | except ImportError: |
| 26 | ssl = None |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 27 | |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 28 | skipInVenv = unittest.skipIf(sys.prefix != sys.base_prefix, |
| 29 | 'Test not appropriate in a venv') |
| 30 | |
| 31 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 32 | class BaseTest(unittest.TestCase): |
| 33 | """Base class for venv tests.""" |
| 34 | |
| 35 | def setUp(self): |
Ned Deily | 045bd53 | 2012-07-13 15:48:04 -0700 | [diff] [blame] | 36 | self.env_dir = os.path.realpath(tempfile.mkdtemp()) |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 37 | if os.name == 'nt': |
| 38 | self.bindir = 'Scripts' |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 39 | self.lib = ('Lib',) |
| 40 | self.include = 'Include' |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 41 | else: |
| 42 | self.bindir = 'bin' |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 43 | self.lib = ('lib', 'python%s' % sys.version[:3]) |
| 44 | self.include = 'include' |
Vinay Sajip | 2895244 | 2012-06-25 00:47:46 +0100 | [diff] [blame] | 45 | if sys.platform == 'darwin' and '__PYVENV_LAUNCHER__' in os.environ: |
| 46 | executable = os.environ['__PYVENV_LAUNCHER__'] |
Vinay Sajip | 382a7c0 | 2012-05-28 16:34:47 +0100 | [diff] [blame] | 47 | else: |
| 48 | executable = sys.executable |
| 49 | self.exe = os.path.split(executable)[-1] |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 50 | |
| 51 | def tearDown(self): |
| 52 | shutil.rmtree(self.env_dir) |
| 53 | |
| 54 | def run_with_capture(self, func, *args, **kwargs): |
| 55 | with captured_stdout() as output: |
| 56 | with captured_stderr() as error: |
| 57 | func(*args, **kwargs) |
| 58 | return output.getvalue(), error.getvalue() |
| 59 | |
| 60 | def get_env_file(self, *args): |
| 61 | return os.path.join(self.env_dir, *args) |
| 62 | |
| 63 | def get_text_file_contents(self, *args): |
| 64 | with open(self.get_env_file(*args), 'r') as f: |
| 65 | result = f.read() |
| 66 | return result |
| 67 | |
| 68 | class BasicTest(BaseTest): |
| 69 | """Test venv module functionality.""" |
| 70 | |
Vinay Sajip | b3b49cd | 2012-05-27 18:39:22 +0100 | [diff] [blame] | 71 | def isdir(self, *args): |
| 72 | fn = self.get_env_file(*args) |
| 73 | self.assertTrue(os.path.isdir(fn)) |
| 74 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 75 | def test_defaults(self): |
| 76 | """ |
| 77 | Test the create function with default arguments. |
| 78 | """ |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 79 | shutil.rmtree(self.env_dir) |
| 80 | self.run_with_capture(venv.create, self.env_dir) |
Vinay Sajip | b3b49cd | 2012-05-27 18:39:22 +0100 | [diff] [blame] | 81 | self.isdir(self.bindir) |
| 82 | self.isdir(self.include) |
| 83 | self.isdir(*self.lib) |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 84 | data = self.get_text_file_contents('pyvenv.cfg') |
Vinay Sajip | 2895244 | 2012-06-25 00:47:46 +0100 | [diff] [blame] | 85 | if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 86 | in os.environ): |
Vinay Sajip | 2895244 | 2012-06-25 00:47:46 +0100 | [diff] [blame] | 87 | executable = os.environ['__PYVENV_LAUNCHER__'] |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 88 | else: |
| 89 | executable = sys.executable |
| 90 | path = os.path.dirname(executable) |
| 91 | self.assertIn('home = %s' % path, data) |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 92 | fn = self.get_env_file(self.bindir, self.exe) |
Vinay Sajip | 7e20349 | 2012-05-27 17:30:09 +0100 | [diff] [blame] | 93 | if not os.path.exists(fn): # diagnostics for Windows buildbot failures |
Vinay Sajip | b3b49cd | 2012-05-27 18:39:22 +0100 | [diff] [blame] | 94 | bd = self.get_env_file(self.bindir) |
| 95 | print('Contents of %r:' % bd) |
| 96 | print(' %r' % os.listdir(bd)) |
Vinay Sajip | 7e20349 | 2012-05-27 17:30:09 +0100 | [diff] [blame] | 97 | self.assertTrue(os.path.exists(fn), 'File %r should exist.' % fn) |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 98 | |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 99 | @skipInVenv |
Vinay Sajip | 3874e54 | 2012-07-03 16:56:40 +0100 | [diff] [blame] | 100 | def test_prefixes(self): |
| 101 | """ |
| 102 | Test that the prefix values are as expected. |
| 103 | """ |
| 104 | #check our prefixes |
| 105 | self.assertEqual(sys.base_prefix, sys.prefix) |
| 106 | self.assertEqual(sys.base_exec_prefix, sys.exec_prefix) |
| 107 | |
| 108 | # check a venv's prefixes |
| 109 | shutil.rmtree(self.env_dir) |
| 110 | self.run_with_capture(venv.create, self.env_dir) |
| 111 | envpy = os.path.join(self.env_dir, self.bindir, self.exe) |
| 112 | cmd = [envpy, '-c', None] |
| 113 | for prefix, expected in ( |
| 114 | ('prefix', self.env_dir), |
| 115 | ('prefix', self.env_dir), |
| 116 | ('base_prefix', sys.prefix), |
| 117 | ('base_exec_prefix', sys.exec_prefix)): |
| 118 | cmd[2] = 'import sys; print(sys.%s)' % prefix |
| 119 | p = subprocess.Popen(cmd, stdout=subprocess.PIPE, |
| 120 | stderr=subprocess.PIPE) |
| 121 | out, err = p.communicate() |
Antoine Pitrou | 9c92a69 | 2012-08-05 00:33:10 +0200 | [diff] [blame] | 122 | self.assertEqual(out.strip(), expected.encode()) |
Vinay Sajip | 3874e54 | 2012-07-03 16:56:40 +0100 | [diff] [blame] | 123 | |
Vinay Sajip | bd40d3e | 2012-10-11 17:22:45 +0100 | [diff] [blame] | 124 | if sys.platform == 'win32': |
| 125 | ENV_SUBDIRS = ( |
| 126 | ('Scripts',), |
| 127 | ('Include',), |
| 128 | ('Lib',), |
| 129 | ('Lib', 'site-packages'), |
| 130 | ) |
| 131 | else: |
| 132 | ENV_SUBDIRS = ( |
| 133 | ('bin',), |
| 134 | ('include',), |
| 135 | ('lib',), |
| 136 | ('lib', 'python%d.%d' % sys.version_info[:2]), |
| 137 | ('lib', 'python%d.%d' % sys.version_info[:2], 'site-packages'), |
| 138 | ) |
| 139 | |
| 140 | def create_contents(self, paths, filename): |
| 141 | """ |
| 142 | Create some files in the environment which are unrelated |
| 143 | to the virtual environment. |
| 144 | """ |
| 145 | for subdirs in paths: |
| 146 | d = os.path.join(self.env_dir, *subdirs) |
| 147 | os.mkdir(d) |
| 148 | fn = os.path.join(d, filename) |
| 149 | with open(fn, 'wb') as f: |
| 150 | f.write(b'Still here?') |
| 151 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 152 | def test_overwrite_existing(self): |
| 153 | """ |
Vinay Sajip | bd40d3e | 2012-10-11 17:22:45 +0100 | [diff] [blame] | 154 | Test creating environment in an existing directory. |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 155 | """ |
Vinay Sajip | bd40d3e | 2012-10-11 17:22:45 +0100 | [diff] [blame] | 156 | self.create_contents(self.ENV_SUBDIRS, 'foo') |
| 157 | venv.create(self.env_dir) |
| 158 | for subdirs in self.ENV_SUBDIRS: |
| 159 | fn = os.path.join(self.env_dir, *(subdirs + ('foo',))) |
| 160 | self.assertTrue(os.path.exists(fn)) |
| 161 | with open(fn, 'rb') as f: |
| 162 | self.assertEqual(f.read(), b'Still here?') |
| 163 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 164 | builder = venv.EnvBuilder(clear=True) |
| 165 | builder.create(self.env_dir) |
Vinay Sajip | bd40d3e | 2012-10-11 17:22:45 +0100 | [diff] [blame] | 166 | for subdirs in self.ENV_SUBDIRS: |
| 167 | fn = os.path.join(self.env_dir, *(subdirs + ('foo',))) |
| 168 | self.assertFalse(os.path.exists(fn)) |
| 169 | |
| 170 | def clear_directory(self, path): |
| 171 | for fn in os.listdir(path): |
| 172 | fn = os.path.join(path, fn) |
| 173 | if os.path.islink(fn) or os.path.isfile(fn): |
| 174 | os.remove(fn) |
| 175 | elif os.path.isdir(fn): |
| 176 | shutil.rmtree(fn) |
| 177 | |
| 178 | def test_unoverwritable_fails(self): |
| 179 | #create a file clashing with directories in the env dir |
| 180 | for paths in self.ENV_SUBDIRS[:3]: |
| 181 | fn = os.path.join(self.env_dir, *paths) |
| 182 | with open(fn, 'wb') as f: |
| 183 | f.write(b'') |
| 184 | self.assertRaises((ValueError, OSError), venv.create, self.env_dir) |
| 185 | self.clear_directory(self.env_dir) |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 186 | |
Vinay Sajip | b3b49cd | 2012-05-27 18:39:22 +0100 | [diff] [blame] | 187 | def test_upgrade(self): |
| 188 | """ |
| 189 | Test upgrading an existing environment directory. |
| 190 | """ |
| 191 | builder = venv.EnvBuilder(upgrade=True) |
| 192 | self.run_with_capture(builder.create, self.env_dir) |
| 193 | self.isdir(self.bindir) |
| 194 | self.isdir(self.include) |
| 195 | self.isdir(*self.lib) |
| 196 | fn = self.get_env_file(self.bindir, self.exe) |
| 197 | if not os.path.exists(fn): # diagnostics for Windows buildbot failures |
| 198 | bd = self.get_env_file(self.bindir) |
| 199 | print('Contents of %r:' % bd) |
| 200 | print(' %r' % os.listdir(bd)) |
| 201 | self.assertTrue(os.path.exists(fn), 'File %r should exist.' % fn) |
| 202 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 203 | def test_isolation(self): |
| 204 | """ |
| 205 | Test isolation from system site-packages |
| 206 | """ |
| 207 | for ssp, s in ((True, 'true'), (False, 'false')): |
| 208 | builder = venv.EnvBuilder(clear=True, system_site_packages=ssp) |
| 209 | builder.create(self.env_dir) |
| 210 | data = self.get_text_file_contents('pyvenv.cfg') |
| 211 | self.assertIn('include-system-site-packages = %s\n' % s, data) |
| 212 | |
| 213 | @unittest.skipUnless(can_symlink(), 'Needs symlinks') |
| 214 | def test_symlinking(self): |
| 215 | """ |
| 216 | Test symlinking works as expected |
| 217 | """ |
| 218 | for usl in (False, True): |
| 219 | builder = venv.EnvBuilder(clear=True, symlinks=usl) |
Vinay Sajip | 90db661 | 2012-07-17 17:33:46 +0100 | [diff] [blame] | 220 | builder.create(self.env_dir) |
| 221 | fn = self.get_env_file(self.bindir, self.exe) |
| 222 | # Don't test when False, because e.g. 'python' is always |
| 223 | # symlinked to 'python3.3' in the env, even when symlinking in |
| 224 | # general isn't wanted. |
| 225 | if usl: |
| 226 | self.assertTrue(os.path.islink(fn)) |
| 227 | |
| 228 | # If a venv is created from a source build and that venv is used to |
| 229 | # run the test, the pyvenv.cfg in the venv created in the test will |
| 230 | # point to the venv being used to run the test, and we lose the link |
| 231 | # to the source build - so Python can't initialise properly. |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 232 | @skipInVenv |
Vinay Sajip | 90db661 | 2012-07-17 17:33:46 +0100 | [diff] [blame] | 233 | def test_executable(self): |
| 234 | """ |
| 235 | Test that the sys.executable value is as expected. |
| 236 | """ |
| 237 | shutil.rmtree(self.env_dir) |
| 238 | self.run_with_capture(venv.create, self.env_dir) |
| 239 | envpy = os.path.join(os.path.realpath(self.env_dir), self.bindir, self.exe) |
| 240 | cmd = [envpy, '-c', 'import sys; print(sys.executable)'] |
| 241 | p = subprocess.Popen(cmd, stdout=subprocess.PIPE, |
| 242 | stderr=subprocess.PIPE) |
| 243 | out, err = p.communicate() |
Antoine Pitrou | 9c92a69 | 2012-08-05 00:33:10 +0200 | [diff] [blame] | 244 | self.assertEqual(out.strip(), envpy.encode()) |
Vinay Sajip | 90db661 | 2012-07-17 17:33:46 +0100 | [diff] [blame] | 245 | |
| 246 | @unittest.skipUnless(can_symlink(), 'Needs symlinks') |
| 247 | def test_executable_symlinks(self): |
| 248 | """ |
| 249 | Test that the sys.executable value is as expected. |
| 250 | """ |
| 251 | shutil.rmtree(self.env_dir) |
| 252 | builder = venv.EnvBuilder(clear=True, symlinks=True) |
| 253 | builder.create(self.env_dir) |
| 254 | envpy = os.path.join(os.path.realpath(self.env_dir), self.bindir, self.exe) |
| 255 | cmd = [envpy, '-c', 'import sys; print(sys.executable)'] |
| 256 | p = subprocess.Popen(cmd, stdout=subprocess.PIPE, |
| 257 | stderr=subprocess.PIPE) |
| 258 | out, err = p.communicate() |
Antoine Pitrou | 9c92a69 | 2012-08-05 00:33:10 +0200 | [diff] [blame] | 259 | self.assertEqual(out.strip(), envpy.encode()) |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 260 | |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 261 | |
| 262 | @skipInVenv |
| 263 | class EnsurePipTest(BaseTest): |
| 264 | """Test venv module installation of pip.""" |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 265 | def assert_pip_not_installed(self): |
| 266 | envpy = os.path.join(os.path.realpath(self.env_dir), |
| 267 | self.bindir, self.exe) |
| 268 | try_import = 'try:\n import pip\nexcept ImportError:\n print("OK")' |
| 269 | cmd = [envpy, '-c', try_import] |
| 270 | p = subprocess.Popen(cmd, stdout=subprocess.PIPE, |
| 271 | stderr=subprocess.PIPE) |
| 272 | out, err = p.communicate() |
| 273 | # We force everything to text, so unittest gives the detailed diff |
| 274 | # if we get unexpected results |
| 275 | err = err.decode("latin-1") # Force to text, prevent decoding errors |
| 276 | self.assertEqual(err, "") |
| 277 | out = out.decode("latin-1") # Force to text, prevent decoding errors |
| 278 | self.assertEqual(out.strip(), "OK") |
| 279 | |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 280 | |
| 281 | def test_no_pip_by_default(self): |
| 282 | shutil.rmtree(self.env_dir) |
| 283 | self.run_with_capture(venv.create, self.env_dir) |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 284 | self.assert_pip_not_installed() |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 285 | |
| 286 | def test_explicit_no_pip(self): |
| 287 | shutil.rmtree(self.env_dir) |
| 288 | self.run_with_capture(venv.create, self.env_dir, with_pip=False) |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 289 | self.assert_pip_not_installed() |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 290 | |
Nick Coghlan | ae2ee96 | 2013-12-23 23:07:07 +1000 | [diff] [blame] | 291 | # Requesting pip fails without SSL (http://bugs.python.org/issue19744) |
| 292 | @unittest.skipIf(ssl is None, ensurepip._MISSING_SSL_MESSAGE) |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 293 | def test_with_pip(self): |
| 294 | shutil.rmtree(self.env_dir) |
Nick Coghlan | d76cdc1 | 2013-11-23 11:37:28 +1000 | [diff] [blame] | 295 | with EnvironmentVarGuard() as envvars: |
| 296 | # pip's cross-version compatibility may trigger deprecation |
| 297 | # warnings in current versions of Python. Ensure related |
| 298 | # environment settings don't cause venv to fail. |
| 299 | envvars["PYTHONWARNINGS"] = "e" |
Nick Coghlan | 6256fcb | 2013-12-23 16:16:07 +1000 | [diff] [blame] | 300 | # ensurepip is different enough from a normal pip invocation |
| 301 | # that we want to ensure it ignores the normal pip environment |
| 302 | # variable settings. We set PIP_NO_INSTALL here specifically |
| 303 | # to check that ensurepip (and hence venv) ignores it. |
Nick Coghlan | 091167c | 2013-11-24 14:58:31 +1000 | [diff] [blame] | 304 | # See http://bugs.python.org/issue19734 for details |
Nick Coghlan | 6256fcb | 2013-12-23 16:16:07 +1000 | [diff] [blame] | 305 | envvars["PIP_NO_INSTALL"] = "1" |
Nick Coghlan | 6fd12f2 | 2013-11-24 11:36:31 +1000 | [diff] [blame] | 306 | try: |
| 307 | self.run_with_capture(venv.create, self.env_dir, with_pip=True) |
| 308 | except subprocess.CalledProcessError as exc: |
| 309 | # The output this produces can be a little hard to read, but |
| 310 | # least it has all the details |
| 311 | details = exc.output.decode(errors="replace") |
| 312 | msg = "{}\n\n**Subprocess Output**\n{}".format(exc, details) |
| 313 | self.fail(msg) |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 314 | # Ensure pip is available in the virtual environment |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 315 | envpy = os.path.join(os.path.realpath(self.env_dir), self.bindir, self.exe) |
Nick Coghlan | 1d1d834 | 2013-11-24 16:49:20 +1000 | [diff] [blame] | 316 | cmd = [envpy, '-Im', 'pip', '--version'] |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 317 | p = subprocess.Popen(cmd, stdout=subprocess.PIPE, |
Nick Coghlan | 1d1d834 | 2013-11-24 16:49:20 +1000 | [diff] [blame] | 318 | stderr=subprocess.PIPE) |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 319 | out, err = p.communicate() |
Nick Coghlan | 6fd12f2 | 2013-11-24 11:36:31 +1000 | [diff] [blame] | 320 | # We force everything to text, so unittest gives the detailed diff |
| 321 | # if we get unexpected results |
| 322 | err = err.decode("latin-1") # Force to text, prevent decoding errors |
| 323 | self.assertEqual(err, "") |
| 324 | out = out.decode("latin-1") # Force to text, prevent decoding errors |
Nick Coghlan | 1b1b178 | 2013-11-30 15:56:58 +1000 | [diff] [blame] | 325 | expected_version = "pip {}".format(ensurepip.version()) |
| 326 | self.assertEqual(out[:len(expected_version)], expected_version) |
Nick Coghlan | 6fd12f2 | 2013-11-24 11:36:31 +1000 | [diff] [blame] | 327 | env_dir = os.fsencode(self.env_dir).decode("latin-1") |
Nick Coghlan | 6fd12f2 | 2013-11-24 11:36:31 +1000 | [diff] [blame] | 328 | self.assertIn(env_dir, out) |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 329 | |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 330 | # http://bugs.python.org/issue19728 |
| 331 | # Check the private uninstall command provided for the Windows |
| 332 | # installers works (at least in a virtual environment) |
| 333 | cmd = [envpy, '-Im', 'ensurepip._uninstall'] |
| 334 | with EnvironmentVarGuard() as envvars: |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 335 | p = subprocess.Popen(cmd, stdout=subprocess.PIPE, |
| 336 | stderr=subprocess.PIPE) |
| 337 | out, err = p.communicate() |
| 338 | # We force everything to text, so unittest gives the detailed diff |
| 339 | # if we get unexpected results |
| 340 | err = err.decode("latin-1") # Force to text, prevent decoding errors |
| 341 | self.assertEqual(err, "") |
Nick Coghlan | 8ddd59e | 2013-11-30 18:35:32 +1000 | [diff] [blame] | 342 | # Being fairly specific regarding the expected behaviour for the |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 343 | # initial bundling phase in Python 3.4. If the output changes in |
Nick Coghlan | 8ddd59e | 2013-11-30 18:35:32 +1000 | [diff] [blame] | 344 | # future pip versions, this test can likely be relaxed further. |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 345 | out = out.decode("latin-1") # Force to text, prevent decoding errors |
Nick Coghlan | 8ddd59e | 2013-11-30 18:35:32 +1000 | [diff] [blame] | 346 | self.assertIn("Successfully uninstalled pip", out) |
| 347 | self.assertIn("Successfully uninstalled setuptools", out) |
| 348 | # Check pip is now gone from the virtual environment |
Nick Coghlan | fdf3a62 | 2013-11-30 17:15:09 +1000 | [diff] [blame] | 349 | self.assert_pip_not_installed() |
| 350 | |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 351 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 352 | def test_main(): |
Nick Coghlan | 8fbdb09 | 2013-11-23 00:30:34 +1000 | [diff] [blame] | 353 | run_unittest(BasicTest, EnsurePipTest) |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 354 | |
| 355 | if __name__ == "__main__": |
| 356 | test_main() |