diff options
author | James Falcon <TheRealFalcon@users.noreply.github.com> | 2020-12-15 14:06:20 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-15 14:06:20 -0600 |
commit | 9e89ca7063e121065d9af5d0d6dbb42e8cccf2e3 (patch) | |
tree | 4859f1da60c9c1220a2342a9f2b24be4285910bc | |
parent | 2022bc72829869939fb0b75dea5e96da81f29bfc (diff) | |
download | vyos-cloud-init-9e89ca7063e121065d9af5d0d6dbb42e8cccf2e3.tar.gz vyos-cloud-init-9e89ca7063e121065d9af5d0d6dbb42e8cccf2e3.zip |
Add integration tests for CLI functionality (#729)
This currently covers functionality added in #575
-rw-r--r-- | tests/integration_tests/modules/test_cli.py | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/tests/integration_tests/modules/test_cli.py b/tests/integration_tests/modules/test_cli.py new file mode 100644 index 00000000..3f41b34d --- /dev/null +++ b/tests/integration_tests/modules/test_cli.py @@ -0,0 +1,45 @@ +"""Integration tests for CLI functionality + +These would be for behavior manually invoked by user from the command line +""" + +import pytest + +from tests.integration_tests.instances import IntegrationInstance + + +VALID_USER_DATA = """\ +#cloud-config +runcmd: + - echo 'hi' > /var/tmp/test +""" + +INVALID_USER_DATA = """\ +runcmd: + - echo 'hi' > /var/tmp/test +""" + + +@pytest.mark.sru_2020_11 +@pytest.mark.user_data(VALID_USER_DATA) +def test_valid_userdata(client: IntegrationInstance): + """Test `cloud-init devel schema` with valid userdata. + + PR #575 + """ + result = client.execute('cloud-init devel schema --system') + assert result.ok + assert 'Valid cloud-config: system userdata' == result.stdout.strip() + + +@pytest.mark.sru_2020_11 +@pytest.mark.user_data(INVALID_USER_DATA) +def test_invalid_userdata(client: IntegrationInstance): + """Test `cloud-init devel schema` with invalid userdata. + + PR #575 + """ + result = client.execute('cloud-init devel schema --system') + assert not result.ok + assert 'Cloud config schema errors' in result.stderr + assert 'needs to begin with "#cloud-config"' in result.stderr |