test_ensurepip.py 9.69 KB
Newer Older
1 2 3
import unittest
import unittest.mock
import test.support
4 5
import os
import os.path
6 7
import contextlib
import sys
8

9 10
import ensurepip
import ensurepip._uninstall
11

12

13 14 15 16 17
class TestEnsurePipVersion(unittest.TestCase):

    def test_returns_version(self):
        self.assertEqual(ensurepip._PIP_VERSION, ensurepip.version())

18
class EnsurepipMixin:
19 20 21 22

    def setUp(self):
        run_pip_patch = unittest.mock.patch("ensurepip._run_pip")
        self.run_pip = run_pip_patch.start()
23
        self.run_pip.return_value = 0
24 25
        self.addCleanup(run_pip_patch.stop)

26
        # Avoid side effects on the actual os module
27
        real_devnull = os.devnull
28 29 30
        os_patch = unittest.mock.patch("ensurepip.os")
        patched_os = os_patch.start()
        self.addCleanup(os_patch.stop)
31
        patched_os.devnull = real_devnull
32 33
        patched_os.path = os.path
        self.os_environ = patched_os.environ = os.environ.copy()
34

35

36 37
class TestBootstrap(EnsurepipMixin, unittest.TestCase):

38 39 40 41 42 43
    def test_basic_bootstrapping(self):
        ensurepip.bootstrap()

        self.run_pip.assert_called_once_with(
            [
                "install", "--no-index", "--find-links",
44
                unittest.mock.ANY, "setuptools", "pip",
45 46 47 48 49 50 51 52 53 54 55 56 57
            ],
            unittest.mock.ANY,
        )

        additional_paths = self.run_pip.call_args[0][1]
        self.assertEqual(len(additional_paths), 2)

    def test_bootstrapping_with_root(self):
        ensurepip.bootstrap(root="/foo/bar/")

        self.run_pip.assert_called_once_with(
            [
                "install", "--no-index", "--find-links",
58
                unittest.mock.ANY, "--root", "/foo/bar/",
59 60 61 62 63 64 65 66 67 68 69
                "setuptools", "pip",
            ],
            unittest.mock.ANY,
        )

    def test_bootstrapping_with_user(self):
        ensurepip.bootstrap(user=True)

        self.run_pip.assert_called_once_with(
            [
                "install", "--no-index", "--find-links",
70
                unittest.mock.ANY, "--user", "setuptools", "pip",
71 72 73 74 75 76 77 78 79 80
            ],
            unittest.mock.ANY,
        )

    def test_bootstrapping_with_upgrade(self):
        ensurepip.bootstrap(upgrade=True)

        self.run_pip.assert_called_once_with(
            [
                "install", "--no-index", "--find-links",
81
                unittest.mock.ANY, "--upgrade", "setuptools", "pip",
82 83 84 85 86 87 88 89 90 91
            ],
            unittest.mock.ANY,
        )

    def test_bootstrapping_with_verbosity_1(self):
        ensurepip.bootstrap(verbosity=1)

        self.run_pip.assert_called_once_with(
            [
                "install", "--no-index", "--find-links",
92
                unittest.mock.ANY, "-v", "setuptools", "pip",
93 94 95 96 97 98 99 100 101 102
            ],
            unittest.mock.ANY,
        )

    def test_bootstrapping_with_verbosity_2(self):
        ensurepip.bootstrap(verbosity=2)

        self.run_pip.assert_called_once_with(
            [
                "install", "--no-index", "--find-links",
103
                unittest.mock.ANY, "-vv", "setuptools", "pip",
104 105 106 107 108 109 110 111 112 113
            ],
            unittest.mock.ANY,
        )

    def test_bootstrapping_with_verbosity_3(self):
        ensurepip.bootstrap(verbosity=3)

        self.run_pip.assert_called_once_with(
            [
                "install", "--no-index", "--find-links",
114
                unittest.mock.ANY, "-vvv", "setuptools", "pip",
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
            ],
            unittest.mock.ANY,
        )

    def test_bootstrapping_with_regular_install(self):
        ensurepip.bootstrap()
        self.assertEqual(self.os_environ["ENSUREPIP_OPTIONS"], "install")

    def test_bootstrapping_with_alt_install(self):
        ensurepip.bootstrap(altinstall=True)
        self.assertEqual(self.os_environ["ENSUREPIP_OPTIONS"], "altinstall")

    def test_bootstrapping_with_default_pip(self):
        ensurepip.bootstrap(default_pip=True)
        self.assertNotIn("ENSUREPIP_OPTIONS", self.os_environ)

    def test_altinstall_default_pip_conflict(self):
        with self.assertRaises(ValueError):
            ensurepip.bootstrap(altinstall=True, default_pip=True)
134
        self.assertFalse(self.run_pip.called)
135

136 137 138 139 140 141 142
    def test_pip_environment_variables_removed(self):
        # ensurepip deliberately ignores all pip environment variables
        # See http://bugs.python.org/issue19734 for details
        self.os_environ["PIP_THIS_SHOULD_GO_AWAY"] = "test fodder"
        ensurepip.bootstrap()
        self.assertNotIn("PIP_THIS_SHOULD_GO_AWAY", self.os_environ)

143 144 145 146 147
    def test_pip_config_file_disabled(self):
        # ensurepip deliberately ignores the pip config file
        # See http://bugs.python.org/issue20053 for details
        ensurepip.bootstrap()
        self.assertEqual(self.os_environ["PIP_CONFIG_FILE"], os.devnull)
148

149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
@contextlib.contextmanager
def fake_pip(version=ensurepip._PIP_VERSION):
    if version is None:
        pip = None
    else:
        class FakePip():
            __version__ = version
        pip = FakePip()
    sentinel = object()
    orig_pip = sys.modules.get("pip", sentinel)
    sys.modules["pip"] = pip
    try:
        yield pip
    finally:
        if orig_pip is sentinel:
            del sys.modules["pip"]
        else:
            sys.modules["pip"] = orig_pip

168
class TestUninstall(EnsurepipMixin, unittest.TestCase):
169

170 171
    def test_uninstall_skipped_when_not_installed(self):
        with fake_pip(None):
172
            ensurepip._uninstall_helper()
173
        self.assertFalse(self.run_pip.called)
174

175
    def test_uninstall_skipped_with_warning_for_wrong_version(self):
176
        with fake_pip("not a valid version"):
177
            with test.support.captured_stderr() as stderr:
178
                ensurepip._uninstall_helper()
179 180
        warning = stderr.getvalue().strip()
        self.assertIn("only uninstall a matching version", warning)
181
        self.assertFalse(self.run_pip.called)
182 183 184 185


    def test_uninstall(self):
        with fake_pip():
186
            ensurepip._uninstall_helper()
187 188

        self.run_pip.assert_called_once_with(
189 190 191 192
            [
                "uninstall", "-y", "--disable-pip-version-check", "pip",
                "setuptools",
            ]
193 194 195 196
        )

    def test_uninstall_with_verbosity_1(self):
        with fake_pip():
197
            ensurepip._uninstall_helper(verbosity=1)
198 199

        self.run_pip.assert_called_once_with(
200 201 202 203
            [
                "uninstall", "-y", "--disable-pip-version-check", "-v", "pip",
                "setuptools",
            ]
204 205 206 207
        )

    def test_uninstall_with_verbosity_2(self):
        with fake_pip():
208
            ensurepip._uninstall_helper(verbosity=2)
209 210

        self.run_pip.assert_called_once_with(
211 212 213 214
            [
                "uninstall", "-y", "--disable-pip-version-check", "-vv", "pip",
                "setuptools",
            ]
215 216 217 218
        )

    def test_uninstall_with_verbosity_3(self):
        with fake_pip():
219
            ensurepip._uninstall_helper(verbosity=3)
220 221

        self.run_pip.assert_called_once_with(
222 223 224 225
            [
                "uninstall", "-y", "--disable-pip-version-check", "-vvv",
                "pip", "setuptools",
            ]
226 227
        )

228 229 230 231 232
    def test_pip_environment_variables_removed(self):
        # ensurepip deliberately ignores all pip environment variables
        # See http://bugs.python.org/issue19734 for details
        self.os_environ["PIP_THIS_SHOULD_GO_AWAY"] = "test fodder"
        with fake_pip():
233
            ensurepip._uninstall_helper()
234
        self.assertNotIn("PIP_THIS_SHOULD_GO_AWAY", self.os_environ)
235

236 237 238 239 240 241 242
    def test_pip_config_file_disabled(self):
        # ensurepip deliberately ignores the pip config file
        # See http://bugs.python.org/issue20053 for details
        with fake_pip():
            ensurepip._uninstall_helper()
        self.assertEqual(self.os_environ["PIP_CONFIG_FILE"], os.devnull)

243

244 245 246 247 248 249 250 251 252 253 254 255
# Basic testing of the main functions and their argument parsing

EXPECTED_VERSION_OUTPUT = "pip " + ensurepip._PIP_VERSION

class TestBootstrappingMainFunction(EnsurepipMixin, unittest.TestCase):

    def test_bootstrap_version(self):
        with test.support.captured_stdout() as stdout:
            with self.assertRaises(SystemExit):
                ensurepip._main(["--version"])
        result = stdout.getvalue().strip()
        self.assertEqual(result, EXPECTED_VERSION_OUTPUT)
256
        self.assertFalse(self.run_pip.called)
257 258

    def test_basic_bootstrapping(self):
259
        exit_code = ensurepip._main([])
260 261 262 263

        self.run_pip.assert_called_once_with(
            [
                "install", "--no-index", "--find-links",
264
                unittest.mock.ANY, "setuptools", "pip",
265 266 267 268 269 270
            ],
            unittest.mock.ANY,
        )

        additional_paths = self.run_pip.call_args[0][1]
        self.assertEqual(len(additional_paths), 2)
271 272 273 274 275 276 277
        self.assertEqual(exit_code, 0)

    def test_bootstrapping_error_code(self):
        self.run_pip.return_value = 2
        exit_code = ensurepip._main([])
        self.assertEqual(exit_code, 2)

278 279 280 281 282 283 284 285 286

class TestUninstallationMainFunction(EnsurepipMixin, unittest.TestCase):

    def test_uninstall_version(self):
        with test.support.captured_stdout() as stdout:
            with self.assertRaises(SystemExit):
                ensurepip._uninstall._main(["--version"])
        result = stdout.getvalue().strip()
        self.assertEqual(result, EXPECTED_VERSION_OUTPUT)
287
        self.assertFalse(self.run_pip.called)
288 289 290

    def test_basic_uninstall(self):
        with fake_pip():
291
            exit_code = ensurepip._uninstall._main([])
292 293

        self.run_pip.assert_called_once_with(
294 295 296 297
            [
                "uninstall", "-y", "--disable-pip-version-check", "pip",
                "setuptools",
            ]
298 299
        )

300 301 302 303 304 305 306
        self.assertEqual(exit_code, 0)

    def test_uninstall_error_code(self):
        with fake_pip():
            self.run_pip.return_value = 2
            exit_code = ensurepip._uninstall._main([])
        self.assertEqual(exit_code, 2)
307

308 309

if __name__ == "__main__":
310
    unittest.main()