diff options
author | Valentin David <valentin.david@codethink.co.uk> | 2018-08-15 17:25:43 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2018-08-28 15:29:48 +0200 |
commit | 1a96b53792cc532298ff730c8b05c8c18b2231ee (patch) | |
tree | 0f928c5fefe5bee62703584fb0a0383f3f73e6ce | |
parent | 76a66abf99b701e8733703f3a512a6684a2734f3 (diff) | |
download | buildstream-1a96b53792cc532298ff730c8b05c8c18b2231ee.tar.gz |
tests/frontend/workspace.py: Add test for workspaced dependencies
This adds a regression test for #461.
-rw-r--r-- | tests/frontend/workspace.py | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/tests/frontend/workspace.py b/tests/frontend/workspace.py index 97fcd93d4..f5136a6f7 100644 --- a/tests/frontend/workspace.py +++ b/tests/frontend/workspace.py @@ -712,3 +712,73 @@ def test_inconsitent_pipeline_message(cli, tmpdir, datafiles, kind): 'build', element_name ]) result.assert_main_error(ErrorDomain.PIPELINE, "inconsistent-pipeline-workspaced") + + +@pytest.mark.datafiles(DATA_DIR) +@pytest.mark.parametrize("kind", repo_kinds) +@pytest.mark.parametrize("strict", [("strict"), ("non-strict")]) +def test_cache_key_workspace_in_dependencies(cli, tmpdir, datafiles, kind, strict): + checkout = os.path.join(str(tmpdir), 'checkout') + element_name, project, workspace = open_workspace(cli, os.path.join(str(tmpdir), 'repo-a'), datafiles, kind, False) + + element_path = os.path.join(project, 'elements') + back_dep_element_name = 'workspace-test-{}-back-dep.bst'.format(kind) + + # Write out our test target + element = { + 'kind': 'compose', + 'depends': [ + { + 'filename': element_name, + 'type': 'build' + } + ] + } + _yaml.dump(element, + os.path.join(element_path, + back_dep_element_name)) + + # Modify workspace + shutil.rmtree(os.path.join(workspace, 'usr', 'bin')) + os.makedirs(os.path.join(workspace, 'etc')) + with open(os.path.join(workspace, 'etc', 'pony.conf'), 'w') as f: + f.write("PONY='pink'") + + # Configure strict mode + strict_mode = True + if strict != 'strict': + strict_mode = False + cli.configure({ + 'projects': { + 'test': { + 'strict': strict_mode + } + } + }) + + # Build artifact with dependency's modified workspace + assert cli.get_element_state(project, element_name) == 'buildable' + assert cli.get_element_key(project, element_name) == "{:?<64}".format('') + assert cli.get_element_state(project, back_dep_element_name) == 'waiting' + assert cli.get_element_key(project, back_dep_element_name) == "{:?<64}".format('') + result = cli.run(project=project, args=['build', back_dep_element_name]) + result.assert_success() + assert cli.get_element_state(project, element_name) == 'cached' + assert cli.get_element_key(project, element_name) != "{:?<64}".format('') + assert cli.get_element_state(project, back_dep_element_name) == 'cached' + assert cli.get_element_key(project, back_dep_element_name) != "{:?<64}".format('') + result = cli.run(project=project, args=['build', back_dep_element_name]) + result.assert_success() + + # Checkout the result + result = cli.run(project=project, args=[ + 'checkout', back_dep_element_name, checkout + ]) + result.assert_success() + + # Check that the pony.conf from the modified workspace exists + filename = os.path.join(checkout, 'etc', 'pony.conf') + assert os.path.exists(filename) + + # Check that the original /usr/bin/hello is not in the checkout + assert not os.path.exists(os.path.join(checkout, 'usr', 'bin', 'hello')) |