summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2019-04-15 18:32:32 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2019-04-15 20:13:13 +0900
commit188c0983aa610b42925c4ec120f3caa9f28bf8c8 (patch)
tree4ca28404c1d992310e62a6ce76e94712543ad979
parent138083752bc74f64c7bcce2f633f2114a3a6efa5 (diff)
downloadbuildstream-188c0983aa610b42925c4ec120f3caa9f28bf8c8.tar.gz
tests/frontend/push.py: Test pushing artifacts in non-strict mode
This is a regression test for issue #990
-rw-r--r--tests/frontend/push.py55
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/frontend/push.py b/tests/frontend/push.py
index 7b4e944d4..b2991ada7 100644
--- a/tests/frontend/push.py
+++ b/tests/frontend/push.py
@@ -454,3 +454,58 @@ def test_build_remote_option(caplog, cli, tmpdir, datafiles):
assert_shared(cli, sharecli, project, element_name)
assert_not_shared(cli, shareuser, project, element_name)
assert_not_shared(cli, shareproject, project, element_name)
+
+
+# This test ensures that we are able to run `bst artifact push` in non strict mode
+# and that we do not crash when trying to push elements even though they
+# have not yet been pulled.
+#
+# This is a regression test for issue #990
+#
+@pytest.mark.datafiles(DATA_DIR)
+@pytest.mark.parametrize("buildtrees", [('buildtrees'), ('normal')])
+def test_push_no_strict(caplog, cli, tmpdir, datafiles, buildtrees):
+ project = os.path.join(datafiles.dirname, datafiles.basename)
+ caplog.set_level(1)
+
+ with create_artifact_share(os.path.join(str(tmpdir), 'artifactshare')) as share:
+ cli.configure({
+ 'artifacts': {
+ 'url': share.repo,
+ 'push': True
+ },
+ 'projects': {
+ 'test': {
+ 'strict': False
+ }
+ }
+ })
+
+ # First get us a build
+ result = cli.run(project=project, args=['build', 'target.bst'])
+ result.assert_success()
+
+ # Now cause one of the dependenies to change their cache key
+ #
+ # Here we just add a file, causing the strong cache key of the
+ # import-bin.bst element to change due to the local files it
+ # imports changing.
+ path = os.path.join(project, 'files', 'bin-files', 'newfile')
+ with open(path, 'w') as f:
+ f.write("PONY !")
+
+ # Now build again after having changed the dependencies
+ result = cli.run(project=project, args=['build', 'target.bst'])
+ result.assert_success()
+
+ # Now run `bst artifact push`.
+ #
+ # Optionally try it with --pull-buildtrees, since this causes
+ # a pull queue to be added to the `push` command, the behavior
+ # around this is different.
+ args = []
+ if buildtrees == 'buildtrees':
+ args += ['--pull-buildtrees']
+ args += ['artifact', 'push', '--deps', 'all', 'target.bst']
+ result = cli.run(project=project, args=args)
+ result.assert_success()