diff options
author | Javier Jardón <jjardon@gnome.org> | 2019-11-23 00:51:56 +0900 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2020-01-17 04:20:09 +0000 |
commit | 45507ccc97bed1fce5749ae0c01c098a8ecd265c (patch) | |
tree | 6651e729b48280c498de1bf370b12f2907f08a6c /tests/sources/deb.py | |
parent | a5b2396539e1621eef75a035b12c1c4266b5c9fe (diff) | |
download | buildstream-jjardon/move_deb_source.tar.gz |
Remove "deb" surce plugin, it has beem moved to bst-plugins-experimentaljjardon/move_deb_source
Diffstat (limited to 'tests/sources/deb.py')
-rw-r--r-- | tests/sources/deb.py | 166 |
1 files changed, 0 insertions, 166 deletions
diff --git a/tests/sources/deb.py b/tests/sources/deb.py deleted file mode 100644 index 96060a1a4..000000000 --- a/tests/sources/deb.py +++ /dev/null @@ -1,166 +0,0 @@ -# Pylint doesn't play well with fixtures and dependency injection from pytest -# pylint: disable=redefined-outer-name - -import os -import shutil - -import pytest - -from buildstream._exceptions import ErrorDomain -from buildstream import _yaml -from buildstream.testing import cli # pylint: disable=unused-import -from buildstream.testing._utils.site import HAVE_ARPY -from . import list_dir_contents - -DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "deb",) - -deb_name = "a_deb.deb" - - -def generate_project(project_dir, tmpdir): - project_file = os.path.join(project_dir, "project.conf") - _yaml.roundtrip_dump({"name": "foo", "aliases": {"tmpdir": "file:///" + str(tmpdir)}}, project_file) - - -def _copy_deb(start_location, tmpdir): - source = os.path.join(start_location, deb_name) - destination = os.path.join(str(tmpdir), deb_name) - shutil.copyfile(source, destination) - - -# Test that without ref, consistency is set appropriately. -@pytest.mark.skipif(HAVE_ARPY is False, reason="arpy is not available") -@pytest.mark.datafiles(os.path.join(DATA_DIR, "no-ref")) -def test_no_ref(cli, tmpdir, datafiles): - project = str(datafiles) - generate_project(project, tmpdir) - assert cli.get_element_state(project, "target.bst") == "no reference" - - -# Test that when I fetch a nonexistent URL, errors are handled gracefully and a retry is performed. -@pytest.mark.skipif(HAVE_ARPY is False, reason="arpy is not available") -@pytest.mark.datafiles(os.path.join(DATA_DIR, "fetch")) -def test_fetch_bad_url(cli, tmpdir, datafiles): - project = str(datafiles) - generate_project(project, tmpdir) - - # Try to fetch it - result = cli.run(project=project, args=["source", "fetch", "target.bst"]) - assert "FAILURE Try #" in result.stderr - result.assert_main_error(ErrorDomain.STREAM, None) - result.assert_task_error(ErrorDomain.SOURCE, None) - - -@pytest.mark.skipif(HAVE_ARPY is False, reason="arpy is not available") -@pytest.mark.datafiles(os.path.join(DATA_DIR, "fetch")) -def test_fetch_bad_ref(cli, tmpdir, datafiles): - project = str(datafiles) - generate_project(project, tmpdir) - - # Copy test deb to tmpdir - _copy_deb(DATA_DIR, tmpdir) - - # Try to fetch it - result = cli.run(project=project, args=["source", "fetch", "target.bst"]) - result.assert_main_error(ErrorDomain.STREAM, None) - result.assert_task_error(ErrorDomain.SOURCE, None) - - -# Test that when tracking with a ref set, there is a warning -@pytest.mark.skipif(HAVE_ARPY is False, reason="arpy is not available") -@pytest.mark.datafiles(os.path.join(DATA_DIR, "fetch")) -def test_track_warning(cli, tmpdir, datafiles): - project = str(datafiles) - generate_project(project, tmpdir) - - # Copy test deb to tmpdir - _copy_deb(DATA_DIR, tmpdir) - - # Track it - result = cli.run(project=project, args=["source", "track", "target.bst"]) - result.assert_success() - assert "Potential man-in-the-middle attack!" in result.stderr - - -# Test that a staged checkout matches what was tarred up, with the default first subdir -@pytest.mark.skipif(HAVE_ARPY is False, reason="arpy is not available") -@pytest.mark.datafiles(os.path.join(DATA_DIR, "fetch")) -def test_stage_default_basedir(cli, tmpdir, datafiles): - project = str(datafiles) - generate_project(project, tmpdir) - checkoutdir = os.path.join(str(tmpdir), "checkout") - - # Copy test deb to tmpdir - _copy_deb(DATA_DIR, tmpdir) - - # Track, fetch, build, checkout - result = cli.run(project=project, args=["source", "track", "target.bst"]) - result.assert_success() - result = cli.run(project=project, args=["source", "fetch", "target.bst"]) - result.assert_success() - result = cli.run(project=project, args=["build", "target.bst"]) - result.assert_success() - result = cli.run(project=project, args=["artifact", "checkout", "target.bst", "--directory", checkoutdir]) - result.assert_success() - - # Check that the content of the first directory is checked out (base-dir: '') - original_dir = os.path.join(str(datafiles), "content") - original_contents = list_dir_contents(original_dir) - checkout_contents = list_dir_contents(checkoutdir) - assert checkout_contents == original_contents - - -# Test that a staged checkout matches what was tarred up, with an empty base-dir -@pytest.mark.skipif(HAVE_ARPY is False, reason="arpy is not available") -@pytest.mark.datafiles(os.path.join(DATA_DIR, "no-basedir")) -def test_stage_no_basedir(cli, tmpdir, datafiles): - project = str(datafiles) - generate_project(project, tmpdir) - checkoutdir = os.path.join(str(tmpdir), "checkout") - - # Copy test deb to tmpdir - _copy_deb(DATA_DIR, tmpdir) - - # Track, fetch, build, checkout - result = cli.run(project=project, args=["source", "track", "target.bst"]) - result.assert_success() - result = cli.run(project=project, args=["source", "fetch", "target.bst"]) - result.assert_success() - result = cli.run(project=project, args=["build", "target.bst"]) - result.assert_success() - result = cli.run(project=project, args=["artifact", "checkout", "target.bst", "--directory", checkoutdir]) - result.assert_success() - - # Check that the full content of the tarball is checked out (base-dir: '') - original_dir = os.path.join(str(datafiles), "content") - original_contents = list_dir_contents(original_dir) - checkout_contents = list_dir_contents(checkoutdir) - assert checkout_contents == original_contents - - -# Test that a staged checkout matches what was tarred up, with an explicit basedir -@pytest.mark.skipif(HAVE_ARPY is False, reason="arpy is not available") -@pytest.mark.datafiles(os.path.join(DATA_DIR, "explicit-basedir")) -def test_stage_explicit_basedir(cli, tmpdir, datafiles): - project = str(datafiles) - generate_project(project, tmpdir) - checkoutdir = os.path.join(str(tmpdir), "checkout") - - # Copy test deb to tmpdir - _copy_deb(DATA_DIR, tmpdir) - - # Track, fetch, build, checkout - result = cli.run(project=project, args=["source", "track", "target.bst"]) - result.assert_success() - result = cli.run(project=project, args=["source", "fetch", "target.bst"]) - result.assert_success() - result = cli.run(project=project, args=["build", "target.bst"]) - result.assert_success() - result = cli.run(project=project, args=["artifact", "checkout", "target.bst", "--directory", checkoutdir]) - result.assert_success() - - # Check that the content of the first directory is checked out (base-dir: '') - original_dir = os.path.join(str(datafiles), "content") - original_contents = list_dir_contents(original_dir) - checkout_contents = list_dir_contents(checkoutdir) - assert checkout_contents == original_contents |