summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Mewett <tom.mewett@codethink.co.uk>2020-01-09 14:40:43 +0000
committerTom Mewett <tom.mewett@codethink.co.uk>2020-01-14 10:54:17 +0000
commit4edac5df1d93fa9f2ddbce6d175d03906238089d (patch)
tree898160496471ec4b7db4805ff638bf5116ec0d35
parent946fb13a430914de60cf5db44d3d81524c3ad81e (diff)
downloadbuildstream-4edac5df1d93fa9f2ddbce6d175d03906238089d.tar.gz
Add Git source test for tracking multiple branches
-rw-r--r--tests/sources/git.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/sources/git.py b/tests/sources/git.py
index 096338bbe..0cf8b5b35 100644
--- a/tests/sources/git.py
+++ b/tests/sources/git.py
@@ -713,6 +713,37 @@ def test_track_fetch(cli, tmpdir, datafiles, ref_format, tag, extra_commit):
@pytest.mark.skipif(HAVE_GIT is False, reason="git is not available")
+@pytest.mark.datafiles(os.path.join(DATA_DIR, "template"))
+def test_track_multiple_branches(cli, tmpdir, datafiles):
+ project = str(datafiles)
+ now = 1320966000 # arbitrary, but taken from testing/_utils/site.py GIT_ENV
+
+ # Create the repo from 'repofiles' subdir
+ repo = create_repo("git", str(tmpdir))
+ repo.create(os.path.join(project, "repofiles"))
+ repo.add_commit(date=now)
+ repo.branch("branch")
+ repo.add_commit(date=now + 100)
+ expected_ref = repo.latest_commit() # store the commit we expect to track
+
+ # Write out our test target
+ config = repo.source_config()
+ config["track"] = [config["track"], "branch"]
+ element = {"kind": "import", "sources": [config]}
+ element_path = os.path.join(project, "target.bst")
+ _yaml.roundtrip_dump(element, element_path)
+
+ # Track it
+ result = cli.run(project=project, args=["source", "track", "target.bst"])
+ result.assert_success()
+
+ element = _yaml.load(element_path)
+ new_ref = element.get_sequence("sources").mapping_at(0).get_str("ref")
+
+ assert new_ref == expected_ref
+
+
+@pytest.mark.skipif(HAVE_GIT is False, reason="git is not available")
@pytest.mark.skipif(HAVE_OLD_GIT, reason="old git describe lacks --first-parent")
@pytest.mark.datafiles(os.path.join(DATA_DIR, "template"))
@pytest.mark.parametrize("ref_storage", [("inline"), ("project.refs")])