Currently `vcs.head_ref` is actually the revision for hg and git, but the change id for jj. This inconsistency makes it tricky to find the right thing across all three. In reality, this property is simply wrong for Git and Hg. A ref is not a revision. To clear things up, this renames `head_ref` -> `head_rev` (implementing it for jj). Then adds new implementations for `head_ref` that actually return a ref. This is basically the same as `vcs.branch` but with a fallback if no branch or bookmark is active. Differential Revision: https://phabricator.services.mozilla.com/D294177
64 lines
1.3 KiB
Python
64 lines
1.3 KiB
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
import re
|
|
|
|
import mozunit
|
|
|
|
from mozversioncontrol import get_repository_object
|
|
|
|
STEPS = {
|
|
"hg": [
|
|
"""
|
|
hg bookmark test
|
|
""",
|
|
"""
|
|
echo "bar" > foo
|
|
hg commit -m "second commit"
|
|
""",
|
|
],
|
|
"git": [
|
|
"""
|
|
git checkout -b test
|
|
""",
|
|
"""
|
|
echo "bar" > foo
|
|
git commit -a -m "second commit"
|
|
""",
|
|
],
|
|
"jj": [],
|
|
}
|
|
|
|
|
|
def test_branch(repo):
|
|
vcs = get_repository_object(repo.dir)
|
|
if vcs.name == "jj":
|
|
mozunit.pytest.skip("jj does not have an active branch")
|
|
|
|
if vcs.name == "git":
|
|
assert vcs.branch == "master"
|
|
else:
|
|
assert vcs.branch is None
|
|
|
|
repo.execute_next_step()
|
|
assert vcs.branch == "test"
|
|
|
|
repo.execute_next_step()
|
|
assert vcs.branch == "test"
|
|
|
|
vcs.update(vcs.head_rev)
|
|
assert vcs.branch is None
|
|
|
|
vcs.update("test")
|
|
assert vcs.branch == "test"
|
|
|
|
|
|
def test_head_rev(repo):
|
|
vcs = get_repository_object(repo.dir)
|
|
assert re.fullmatch(r"[0-9a-f]{40}", vcs.head_rev)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
mozunit.main()
|