summaryrefslogtreecommitdiff
path: root/tests/frontend/source_bundle.py
diff options
context:
space:
mode:
authorChandan Singh <csingh43@bloomberg.net>2018-09-18 18:14:06 +0100
committerChandan Singh <csingh43@bloomberg.net>2018-09-18 18:58:04 +0100
commit2a3359d31a69a54841d237a14bcaed4aa6ad40e1 (patch)
treea874a9ebb5067a0a68a0b297a58b5a7ef51020fe /tests/frontend/source_bundle.py
parent3b81d4510656fcff808e4c37e29ac4a2f5e38de6 (diff)
downloadbuildstream-chandan/fix-source-bundle.tar.gz
_stream.py: Ensure source-bundle's source directory existschandan/fix-source-bundle
Currently, `source-bundle` command is entirely broken as it tries to stage the sources in a directory that doesn't exist. Fix it by ensuring that we create the necessary directories before calling any methods that try to use those directories. This fix comes with a regression test to ensure that the basic use-case of `source-bundle` continues to work in future. Fixes https://gitlab.com/BuildStream/buildstream/issues/651.
Diffstat (limited to 'tests/frontend/source_bundle.py')
-rw-r--r--tests/frontend/source_bundle.py48
1 files changed, 48 insertions, 0 deletions
diff --git a/tests/frontend/source_bundle.py b/tests/frontend/source_bundle.py
new file mode 100644
index 000000000..f72e80a3b
--- /dev/null
+++ b/tests/frontend/source_bundle.py
@@ -0,0 +1,48 @@
+#
+# Copyright (C) 2018 Bloomberg Finance LP
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library. If not, see <http://www.gnu.org/licenses/>.
+#
+# Authors: Chandan Singh <csingh43@bloomberg.net>
+#
+
+import os
+import tarfile
+
+import pytest
+
+from tests.testutils import cli
+
+# Project directory
+DATA_DIR = os.path.join(
+ os.path.dirname(os.path.realpath(__file__)),
+ "project",
+)
+
+
+@pytest.mark.datafiles(DATA_DIR)
+def test_source_bundle(cli, tmpdir, datafiles):
+ project_path = os.path.join(datafiles.dirname, datafiles.basename)
+ element_name = 'source-bundle/source-bundle-hello.bst'
+ normal_name = 'source-bundle-source-bundle-hello'
+
+ # Verify that we can correctly produce a source-bundle
+ args = ['source-bundle', element_name, '--directory', str(tmpdir)]
+ result = cli.run(project=project_path, args=args)
+ result.assert_success()
+
+ # Verify that the source-bundle contains our sources and a build script
+ with tarfile.open(os.path.join(str(tmpdir), '{}.tar.gz'.format(normal_name))) as bundle:
+ assert os.path.join(normal_name, 'source', normal_name, 'llamas.txt') in bundle.getnames()
+ assert os.path.join(normal_name, 'build.sh') in bundle.getnames()