summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaoul Hidalgo Charman <raoul.hidalgocharman@codethink.co.uk>2019-07-05 15:59:51 +0100
committerRaoul Hidalgo Charman <raoul.hidalgocharman@codethink.co.uk>2019-07-05 15:59:51 +0100
commit55705aba3600f61f75859ce7f8af2c35f9f421ea (patch)
tree4cc95b7a45979c50e1df64850f2213d3987ae31c
parentb0795daa7e21b160e0f0c685c1d4762e07c14273 (diff)
downloadbuildstream-raoul/pull-refs.tar.gz
Add test for pulling artifact refsraoul/pull-refs
-rw-r--r--tests/frontend/pull.py49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/frontend/pull.py b/tests/frontend/pull.py
index a87a311d2..aa5853d37 100644
--- a/tests/frontend/pull.py
+++ b/tests/frontend/pull.py
@@ -6,6 +6,7 @@ import shutil
import stat
import pytest
from buildstream import utils
+from buildstream._exceptions import ErrorDomain
from buildstream.testing import cli # pylint: disable=unused-import
from tests.testutils import create_artifact_share, generate_junction, assert_shared, assert_not_shared
@@ -558,3 +559,51 @@ def test_pull_access_rights(cli, tmpdir, datafiles):
st = os.lstat(os.path.join(checkout, 'usr/share/big-file'))
assert stat.S_ISREG(st.st_mode)
assert stat.S_IMODE(st.st_mode) == 0o0644
+
+
+@pytest.mark.datafiles(DATA_DIR)
+def test_pull_artifact_ref(cli, tmpdir, datafiles):
+ project = str(datafiles)
+
+ with create_artifact_share(os.path.join(str(tmpdir), 'artifactshare')) as share:
+
+ # First build the target element and push to the remote.
+ cli.configure({
+ 'artifacts': {'url': share.repo, 'push': True}
+ })
+ result = cli.run(project=project, args=['build', 'target.bst'])
+ result.assert_success()
+ assert cli.get_element_state(project, 'target.bst') == 'cached'
+
+ # Assert that everything is now cached in the remote.
+ all_elements = ['target.bst', 'import-bin.bst', 'import-dev.bst', 'compose-all.bst']
+ for element_name in all_elements:
+ assert_shared(cli, share, project, element_name)
+
+ # get target cache key to pull ref of
+ cache_key = cli.get_element_key(project, 'target.bst')
+ target = "test/target/{}".format(cache_key)
+
+ # Now we've pushed, delete the user's local artifact cache
+ # directory and try to redownload it from the share
+ #
+ casdir = os.path.join(cli.directory, 'cas')
+ shutil.rmtree(casdir)
+ artifactdir = os.path.join(cli.directory, 'artifacts')
+ shutil.rmtree(artifactdir)
+
+ # Assert that nothing is cached locally anymore
+ states = cli.get_element_states(project, all_elements)
+ assert not any(states[e] == 'cached' for e in all_elements)
+
+ # Now try bst artifact pull
+ result = cli.run(project=project, args=['artifact', 'pull', target])
+ result.assert_success()
+
+ # And assert that it's again in the local cache, without having built
+ assert cli.get_element_state(project, 'target.bst') == 'cached'
+
+ # check that it fails if you try and pull with dependencies
+ result = cli.run(project=project, args=[
+ 'artifact', 'pull', '--deps', 'all', target])
+ result.assert_main_error(ErrorDomain.ELEMENT, None, debug=True)