Skip to content

Commit

Permalink
Merge pull request #5719 from cjerdonek/add-non-master-default-branch…
Browse files Browse the repository at this point in the history
…-test

Add a test of installing from a repo with a non-master default branch
  • Loading branch information
pradyunsg authored Aug 21, 2018
2 parents 1073b66 + f97baf9 commit fc4ce3d
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 6 deletions.
Empty file.
56 changes: 50 additions & 6 deletions tests/functional/test_install_vcs_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@
from tests.lib.local_repos import local_checkout


def _get_editable_branch(script, package_name):
"""
Return the current branch of an editable install.
"""
repo_dir = script.venv_path / 'src' / package_name
result = script.run(
'git', 'rev-parse', '--abbrev-ref', 'HEAD', cwd=repo_dir
)

return result.stdout.strip()


def _github_checkout(url_path, temp_dir, egg=None, scheme=None):
"""
Call local_checkout() with a GitHub URL, and return the resulting URL.
Expand Down Expand Up @@ -48,9 +60,10 @@ def _make_version_pkg_url(path, rev=None):
return url


def _install_version_pkg(script, path, rev=None, expect_stderr=False):
def _install_version_pkg_only(script, path, rev=None, expect_stderr=False):
"""
Install the version_pkg package, and return the version installed.
Install the version_pkg package in editable mode (without returning
the version).
Args:
path: a tests.lib.path.Path object pointing to a Git repository
Expand All @@ -59,6 +72,21 @@ def _install_version_pkg(script, path, rev=None, expect_stderr=False):
"""
version_pkg_url = _make_version_pkg_url(path, rev=rev)
script.pip('install', '-e', version_pkg_url, expect_stderr=expect_stderr)


def _install_version_pkg(script, path, rev=None, expect_stderr=False):
"""
Install the version_pkg package in editable mode, and return the version
installed.
Args:
path: a tests.lib.path.Path object pointing to a Git repository
containing the package.
rev: an optional revision to install like a branch name or tag.
"""
_install_version_pkg_only(
script, path, rev=rev, expect_stderr=expect_stderr,
)
result = script.run('version_pkg')
version = result.stdout.strip()

Expand Down Expand Up @@ -261,9 +289,8 @@ def test_git_branch_should_not_be_changed(script, tmpdir):
url_path = 'pypa/pip-test-package.git'
local_url = _github_checkout(url_path, tmpdir, egg='pip-test-package')
script.pip('install', '-e', local_url, expect_error=True)
source_dir = script.venv_path / 'src' / 'pip-test-package'
result = script.run('git', 'branch', cwd=source_dir)
assert '* master' in result.stdout, result.stdout
branch = _get_editable_branch(script, 'pip-test-package')
assert 'master' == branch


@pytest.mark.network
Expand Down Expand Up @@ -336,7 +363,24 @@ def test_git_works_with_editable_non_origin_repo(script):
assert "version-pkg==0.1" in result.stdout


def test_reinstalling_works_with_editible_non_master_branch(script):
def test_editable_non_master_default_branch(script):
"""
Test the branch you get after an editable install from a remote repo
with a non-master default branch.
"""
version_pkg_path = _create_test_package(script)
# Change the default branch of the remote repo to a name that is
# alphabetically after "master".
script.run(
'git', 'checkout', '-b', 'release', expect_stderr=True,
cwd=version_pkg_path,
)
_install_version_pkg_only(script, version_pkg_path)
branch = _get_editable_branch(script, 'version-pkg')
assert 'release' == branch


def test_reinstalling_works_with_editable_non_master_branch(script):
"""
Reinstalling an editable installation should not assume that the "master"
branch exists. See https://github.com/pypa/pip/issues/4448.
Expand Down

0 comments on commit fc4ce3d

Please sign in to comment.