summaryrefslogtreecommitdiff
path: root/tests/artifactcache
diff options
context:
space:
mode:
authorJames Ennis <james.ennis@codethink.co.uk>2019-08-01 12:50:46 +0100
committerJames Ennis <james.ennis@codethink.com>2019-08-06 13:03:47 +0000
commitef778ca58d13be60faad37d55a4a64918c1b3d00 (patch)
treec6dc8ab2f03662d91416450fb0456eac92bcd862 /tests/artifactcache
parentef757b5e8ee7d1bfab8750d4a87cbc374eda295e (diff)
downloadbuildstream-ef778ca58d13be60faad37d55a4a64918c1b3d00.tar.gz
plugins/elements/junction.py: Add 'ignore-junction-remotes' option
This option allows us to completely ignore remotes defined in the subproject. As a user, we may not wish to interact with subproject remotes as we may not be able to trust them, for example. An appropriate test and some documentation has also been added.
Diffstat (limited to 'tests/artifactcache')
-rw-r--r--tests/artifactcache/junctions.py62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/artifactcache/junctions.py b/tests/artifactcache/junctions.py
index bfddcedac..1fafb11f1 100644
--- a/tests/artifactcache/junctions.py
+++ b/tests/artifactcache/junctions.py
@@ -133,3 +133,65 @@ def test_caching_junction_elements(cli, tmpdir, datafiles):
assert_not_shared(cli, base_share, project, 'target.bst', project_name='parent')
assert_not_shared(cli, base_share, project, 'app.bst', project_name='parent')
assert_shared(cli, base_share, base_project, 'base-element.bst', project_name='base')
+
+
+@pytest.mark.datafiles(DATA_DIR)
+def test_ignore_junction_remotes(cli, tmpdir, datafiles):
+ project = os.path.join(str(datafiles), 'parent')
+ base_project = os.path.join(str(project), 'base')
+
+ # Load the junction element
+ junction_element = os.path.join(project, 'base.bst')
+ junction_data = _yaml.roundtrip_load(junction_element)
+
+ with create_artifact_share(os.path.join(str(tmpdir), 'artifactshare-parent')) as share,\
+ create_artifact_share(os.path.join(str(tmpdir), 'artifactshare-base')) as base_share:
+
+ # Immediately declare the artifact caches in the appropriate project configs
+ project_set_artifacts(project, share.repo)
+ project_set_artifacts(base_project, base_share.repo)
+
+ # Build and populate the project remotes with their respective elements
+ result = cli.run(project=project, args=['build', 'target.bst'])
+ assert result.exit_code == 0
+
+ # And finally assert that the artifacts are in the right shares
+ #
+ # The parent project's cache should only contain project elements
+ assert_shared(cli, share, project, 'target.bst', project_name='parent')
+ assert_shared(cli, share, project, 'app.bst', project_name='parent')
+ assert_not_shared(cli, share, base_project, 'base-element.bst', project_name='base')
+
+ # The junction project's cache should only contain elements in the junction project
+ assert_not_shared(cli, base_share, project, 'target.bst', project_name='parent')
+ assert_not_shared(cli, base_share, project, 'app.bst', project_name='parent')
+ assert_shared(cli, base_share, base_project, 'base-element.bst', project_name='base')
+
+ # Ensure that, from now on, we ignore junction element remotes
+ junction_data['config'] = {"ignore-junction-remotes": True}
+ _yaml.roundtrip_dump(junction_data, junction_element)
+
+ # Now delete everything from the local cache and try to
+ # redownload from the shares.
+ #
+ cas = os.path.join(cli.directory, 'cas')
+ shutil.rmtree(cas)
+ artifact_dir = os.path.join(cli.directory, 'artifacts')
+ shutil.rmtree(artifact_dir)
+
+ # Assert that nothing is cached locally anymore
+ state = cli.get_element_state(project, 'target.bst')
+ assert state != 'cached'
+ state = cli.get_element_state(base_project, 'base-element.bst')
+ assert state != 'cached'
+
+ # Now try bst artifact pull
+ result = cli.run(project=project, args=['artifact', 'pull', '--deps', 'all', 'target.bst'])
+ assert result.exit_code == 0
+
+ # And assert that they are again in the local cache, without having built
+ state = cli.get_element_state(project, 'target.bst')
+ assert state == 'cached'
+ # We shouldn't be able to download base-element!
+ state = cli.get_element_state(base_project, 'base-element.bst')
+ assert state != 'cached'