2013-11-11 08:11:55 -04:00
|
|
|
import unittest
|
|
|
|
import unittest.mock
|
|
|
|
import test.support
|
2013-11-13 08:24:58 -04:00
|
|
|
import os
|
|
|
|
import os.path
|
2013-11-30 03:15:09 -04:00
|
|
|
import contextlib
|
|
|
|
import sys
|
2013-11-11 08:11:55 -04:00
|
|
|
|
2013-12-23 04:20:34 -04:00
|
|
|
import ensurepip
|
|
|
|
import ensurepip._uninstall
|
2013-11-11 08:11:55 -04:00
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
# pip currently requires ssl support, so we ensure we handle
|
|
|
|
# it being missing (http://bugs.python.org/issue19744)
|
|
|
|
ensurepip_no_ssl = test.support.import_fresh_module("ensurepip",
|
|
|
|
blocked=["ssl"])
|
|
|
|
try:
|
|
|
|
import ssl
|
|
|
|
except ImportError:
|
|
|
|
def requires_usable_pip(f):
|
|
|
|
deco = unittest.skip(ensurepip._MISSING_SSL_MESSAGE)
|
|
|
|
return deco(f)
|
|
|
|
else:
|
|
|
|
def requires_usable_pip(f):
|
|
|
|
return f
|
|
|
|
|
2013-11-11 08:11:55 -04:00
|
|
|
class TestEnsurePipVersion(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_returns_version(self):
|
|
|
|
self.assertEqual(ensurepip._PIP_VERSION, ensurepip.version())
|
|
|
|
|
2013-12-23 04:20:34 -04:00
|
|
|
class EnsurepipMixin:
|
2013-11-11 08:11:55 -04:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
run_pip_patch = unittest.mock.patch("ensurepip._run_pip")
|
|
|
|
self.run_pip = run_pip_patch.start()
|
|
|
|
self.addCleanup(run_pip_patch.stop)
|
|
|
|
|
2013-11-13 08:24:58 -04:00
|
|
|
# Avoid side effects on the actual os module
|
2014-02-04 09:02:36 -04:00
|
|
|
real_devnull = os.devnull
|
2013-11-13 08:24:58 -04:00
|
|
|
os_patch = unittest.mock.patch("ensurepip.os")
|
|
|
|
patched_os = os_patch.start()
|
|
|
|
self.addCleanup(os_patch.stop)
|
2014-02-04 09:02:36 -04:00
|
|
|
patched_os.devnull = real_devnull
|
2013-11-13 08:24:58 -04:00
|
|
|
patched_os.path = os.path
|
|
|
|
self.os_environ = patched_os.environ = os.environ.copy()
|
2013-11-11 08:11:55 -04:00
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
|
2013-12-23 04:20:34 -04:00
|
|
|
class TestBootstrap(EnsurepipMixin, unittest.TestCase):
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
def test_basic_bootstrapping(self):
|
|
|
|
ensurepip.bootstrap()
|
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
[
|
|
|
|
"install", "--no-index", "--find-links",
|
2014-01-02 10:33:35 -04:00
|
|
|
unittest.mock.ANY, "setuptools", "pip",
|
2013-11-11 08:11:55 -04:00
|
|
|
],
|
|
|
|
unittest.mock.ANY,
|
|
|
|
)
|
|
|
|
|
|
|
|
additional_paths = self.run_pip.call_args[0][1]
|
|
|
|
self.assertEqual(len(additional_paths), 2)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
def test_bootstrapping_with_root(self):
|
|
|
|
ensurepip.bootstrap(root="/foo/bar/")
|
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
[
|
|
|
|
"install", "--no-index", "--find-links",
|
2014-01-02 10:33:35 -04:00
|
|
|
unittest.mock.ANY, "--root", "/foo/bar/",
|
2013-11-11 08:11:55 -04:00
|
|
|
"setuptools", "pip",
|
|
|
|
],
|
|
|
|
unittest.mock.ANY,
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
def test_bootstrapping_with_user(self):
|
|
|
|
ensurepip.bootstrap(user=True)
|
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
[
|
|
|
|
"install", "--no-index", "--find-links",
|
2014-01-02 10:33:35 -04:00
|
|
|
unittest.mock.ANY, "--user", "setuptools", "pip",
|
2013-11-11 08:11:55 -04:00
|
|
|
],
|
|
|
|
unittest.mock.ANY,
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
def test_bootstrapping_with_upgrade(self):
|
|
|
|
ensurepip.bootstrap(upgrade=True)
|
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
[
|
|
|
|
"install", "--no-index", "--find-links",
|
2014-01-02 10:33:35 -04:00
|
|
|
unittest.mock.ANY, "--upgrade", "setuptools", "pip",
|
2013-11-11 08:11:55 -04:00
|
|
|
],
|
|
|
|
unittest.mock.ANY,
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
def test_bootstrapping_with_verbosity_1(self):
|
|
|
|
ensurepip.bootstrap(verbosity=1)
|
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
[
|
|
|
|
"install", "--no-index", "--find-links",
|
2014-01-02 10:33:35 -04:00
|
|
|
unittest.mock.ANY, "-v", "setuptools", "pip",
|
2013-11-11 08:11:55 -04:00
|
|
|
],
|
|
|
|
unittest.mock.ANY,
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
def test_bootstrapping_with_verbosity_2(self):
|
|
|
|
ensurepip.bootstrap(verbosity=2)
|
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
[
|
|
|
|
"install", "--no-index", "--find-links",
|
2014-01-02 10:33:35 -04:00
|
|
|
unittest.mock.ANY, "-vv", "setuptools", "pip",
|
2013-11-11 08:11:55 -04:00
|
|
|
],
|
|
|
|
unittest.mock.ANY,
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
def test_bootstrapping_with_verbosity_3(self):
|
|
|
|
ensurepip.bootstrap(verbosity=3)
|
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
[
|
|
|
|
"install", "--no-index", "--find-links",
|
2014-01-02 10:33:35 -04:00
|
|
|
unittest.mock.ANY, "-vvv", "setuptools", "pip",
|
2013-11-11 08:11:55 -04:00
|
|
|
],
|
|
|
|
unittest.mock.ANY,
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
def test_bootstrapping_with_regular_install(self):
|
|
|
|
ensurepip.bootstrap()
|
|
|
|
self.assertEqual(self.os_environ["ENSUREPIP_OPTIONS"], "install")
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
def test_bootstrapping_with_alt_install(self):
|
|
|
|
ensurepip.bootstrap(altinstall=True)
|
|
|
|
self.assertEqual(self.os_environ["ENSUREPIP_OPTIONS"], "altinstall")
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-11 08:11:55 -04:00
|
|
|
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)
|
2014-04-16 17:06:39 -03:00
|
|
|
self.assertFalse(self.run_pip.called)
|
2013-11-30 03:15:09 -04:00
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-12-23 02:16:07 -04:00
|
|
|
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)
|
|
|
|
|
2014-02-04 09:02:36 -04:00
|
|
|
@requires_usable_pip
|
|
|
|
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)
|
2013-12-23 02:16:07 -04:00
|
|
|
|
2013-11-30 03:15:09 -04:00
|
|
|
@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
|
|
|
|
|
2013-12-23 04:20:34 -04:00
|
|
|
class TestUninstall(EnsurepipMixin, unittest.TestCase):
|
2013-12-23 03:39:12 -04:00
|
|
|
|
2013-11-30 03:15:09 -04:00
|
|
|
def test_uninstall_skipped_when_not_installed(self):
|
|
|
|
with fake_pip(None):
|
2013-12-23 04:20:34 -04:00
|
|
|
ensurepip._uninstall_helper()
|
2014-04-16 17:06:39 -03:00
|
|
|
self.assertFalse(self.run_pip.called)
|
2013-11-30 03:15:09 -04:00
|
|
|
|
2014-02-28 09:35:05 -04:00
|
|
|
def test_uninstall_skipped_with_warning_for_wrong_version(self):
|
2013-11-30 03:15:09 -04:00
|
|
|
with fake_pip("not a valid version"):
|
2014-02-28 09:35:05 -04:00
|
|
|
with test.support.captured_stderr() as stderr:
|
2013-12-23 04:20:34 -04:00
|
|
|
ensurepip._uninstall_helper()
|
2014-02-28 09:35:05 -04:00
|
|
|
warning = stderr.getvalue().strip()
|
|
|
|
self.assertIn("only uninstall a matching version", warning)
|
2014-04-16 17:06:39 -03:00
|
|
|
self.assertFalse(self.run_pip.called)
|
2013-11-30 03:15:09 -04:00
|
|
|
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-30 03:15:09 -04:00
|
|
|
def test_uninstall(self):
|
|
|
|
with fake_pip():
|
2013-12-23 04:20:34 -04:00
|
|
|
ensurepip._uninstall_helper()
|
2013-11-30 03:15:09 -04:00
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
["uninstall", "-y", "pip", "setuptools"]
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-30 03:15:09 -04:00
|
|
|
def test_uninstall_with_verbosity_1(self):
|
|
|
|
with fake_pip():
|
2013-12-23 04:20:34 -04:00
|
|
|
ensurepip._uninstall_helper(verbosity=1)
|
2013-11-30 03:15:09 -04:00
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
["uninstall", "-y", "-v", "pip", "setuptools"]
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-30 03:15:09 -04:00
|
|
|
def test_uninstall_with_verbosity_2(self):
|
|
|
|
with fake_pip():
|
2013-12-23 04:20:34 -04:00
|
|
|
ensurepip._uninstall_helper(verbosity=2)
|
2013-11-30 03:15:09 -04:00
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
["uninstall", "-y", "-vv", "pip", "setuptools"]
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-11-30 03:15:09 -04:00
|
|
|
def test_uninstall_with_verbosity_3(self):
|
|
|
|
with fake_pip():
|
2013-12-23 04:20:34 -04:00
|
|
|
ensurepip._uninstall_helper(verbosity=3)
|
2013-11-30 03:15:09 -04:00
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
["uninstall", "-y", "-vvv", "pip", "setuptools"]
|
|
|
|
)
|
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-12-23 03:39:12 -04:00
|
|
|
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():
|
2013-12-23 04:20:34 -04:00
|
|
|
ensurepip._uninstall_helper()
|
2013-12-23 03:39:12 -04:00
|
|
|
self.assertNotIn("PIP_THIS_SHOULD_GO_AWAY", self.os_environ)
|
2013-11-30 03:15:09 -04:00
|
|
|
|
2014-02-04 09:02:36 -04:00
|
|
|
@requires_usable_pip
|
|
|
|
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)
|
|
|
|
|
2013-11-11 08:11:55 -04:00
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
class TestMissingSSL(EnsurepipMixin, unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
sys.modules["ensurepip"] = ensurepip_no_ssl
|
|
|
|
@self.addCleanup
|
|
|
|
def restore_module():
|
|
|
|
sys.modules["ensurepip"] = ensurepip
|
|
|
|
super().setUp()
|
|
|
|
|
|
|
|
def test_bootstrap_requires_ssl(self):
|
|
|
|
self.os_environ["PIP_THIS_SHOULD_STAY"] = "test fodder"
|
|
|
|
with self.assertRaisesRegex(RuntimeError, "requires SSL/TLS"):
|
|
|
|
ensurepip_no_ssl.bootstrap()
|
2014-04-16 17:06:39 -03:00
|
|
|
self.assertFalse(self.run_pip.called)
|
2013-12-23 09:07:07 -04:00
|
|
|
self.assertIn("PIP_THIS_SHOULD_STAY", self.os_environ)
|
|
|
|
|
|
|
|
def test_uninstall_requires_ssl(self):
|
|
|
|
self.os_environ["PIP_THIS_SHOULD_STAY"] = "test fodder"
|
|
|
|
with self.assertRaisesRegex(RuntimeError, "requires SSL/TLS"):
|
|
|
|
with fake_pip():
|
|
|
|
ensurepip_no_ssl._uninstall_helper()
|
2014-04-16 17:06:39 -03:00
|
|
|
self.assertFalse(self.run_pip.called)
|
2013-12-23 09:07:07 -04:00
|
|
|
self.assertIn("PIP_THIS_SHOULD_STAY", self.os_environ)
|
|
|
|
|
2014-02-14 19:14:54 -04:00
|
|
|
def test_main_exits_early_with_warning(self):
|
|
|
|
with test.support.captured_stderr() as stderr:
|
|
|
|
ensurepip_no_ssl._main(["--version"])
|
|
|
|
warning = stderr.getvalue().strip()
|
|
|
|
self.assertTrue(warning.endswith("requires SSL/TLS"), warning)
|
2014-04-16 17:06:39 -03:00
|
|
|
self.assertFalse(self.run_pip.called)
|
2014-02-14 19:14:54 -04:00
|
|
|
|
2013-12-23 04:20:34 -04:00
|
|
|
# Basic testing of the main functions and their argument parsing
|
|
|
|
|
|
|
|
EXPECTED_VERSION_OUTPUT = "pip " + ensurepip._PIP_VERSION
|
|
|
|
|
|
|
|
class TestBootstrappingMainFunction(EnsurepipMixin, unittest.TestCase):
|
|
|
|
|
2014-02-14 19:14:54 -04:00
|
|
|
@requires_usable_pip
|
2013-12-23 04:20:34 -04:00
|
|
|
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)
|
2014-04-16 17:06:39 -03:00
|
|
|
self.assertFalse(self.run_pip.called)
|
2013-12-23 04:20:34 -04:00
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-12-23 04:20:34 -04:00
|
|
|
def test_basic_bootstrapping(self):
|
|
|
|
ensurepip._main([])
|
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
[
|
|
|
|
"install", "--no-index", "--find-links",
|
2014-01-02 10:33:35 -04:00
|
|
|
unittest.mock.ANY, "setuptools", "pip",
|
2013-12-23 04:20:34 -04:00
|
|
|
],
|
|
|
|
unittest.mock.ANY,
|
|
|
|
)
|
|
|
|
|
|
|
|
additional_paths = self.run_pip.call_args[0][1]
|
|
|
|
self.assertEqual(len(additional_paths), 2)
|
|
|
|
|
|
|
|
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)
|
2014-04-16 17:06:39 -03:00
|
|
|
self.assertFalse(self.run_pip.called)
|
2013-12-23 04:20:34 -04:00
|
|
|
|
2013-12-23 09:07:07 -04:00
|
|
|
@requires_usable_pip
|
2013-12-23 04:20:34 -04:00
|
|
|
def test_basic_uninstall(self):
|
|
|
|
with fake_pip():
|
|
|
|
ensurepip._uninstall._main([])
|
|
|
|
|
|
|
|
self.run_pip.assert_called_once_with(
|
|
|
|
["uninstall", "-y", "pip", "setuptools"]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2013-11-11 08:11:55 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test.support.run_unittest(__name__)
|