summaryrefslogtreecommitdiff
path: root/tests/integration_tests/bugs/test_gh668.py
diff options
context:
space:
mode:
authorDaniel Watkins <oddbloke@ubuntu.com>2021-02-22 12:03:53 -0500
committerGitHub <noreply@github.com>2021-02-22 12:03:53 -0500
commit38aee6eebb160d46287c63a979bb897b15bb2f96 (patch)
tree6c15bd72e2d6a5e0eb5c363525a9d4853c642415 /tests/integration_tests/bugs/test_gh668.py
parent66e2d42dd1b722dc8e59f4e5990cea54f81ccd2a (diff)
downloadvyos-cloud-init-38aee6eebb160d46287c63a979bb897b15bb2f96.tar.gz
vyos-cloud-init-38aee6eebb160d46287c63a979bb897b15bb2f96.zip
integration_tests: introduce lxd_use_exec mark (#802)
pycloudlib has modified the way LXD executes tests (https://github.com/canonical/pycloudlib/pull/114): it will always use SSH to access them by default, instead of using `lxc exec`. This behaviour is transparent for them majority of cloud-init's integration tests, but some currently depend on using `lxc exec` to access instances with (intentionally) broken networking: obviously these are not accessible via SSH. pycloudlib retains support for switching an instance to use `lxc exec`. This commit introduces the `lxd_use_exec` mark, which tests can use to indicate to the integration testing framework that they should be so switched, and applies it to all applicable tests.
Diffstat (limited to 'tests/integration_tests/bugs/test_gh668.py')
-rw-r--r--tests/integration_tests/bugs/test_gh668.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/integration_tests/bugs/test_gh668.py b/tests/integration_tests/bugs/test_gh668.py
index 72fe0afc..ce57052e 100644
--- a/tests/integration_tests/bugs/test_gh668.py
+++ b/tests/integration_tests/bugs/test_gh668.py
@@ -37,6 +37,7 @@ EXPECTED_ROUTE = "{} via {}".format(DESTINATION_IP, GATEWAY_IP)
"user.network-config": NETWORK_CONFIG,
"volatile.eth0.hwaddr": MAC_ADDRESS,
})
+@pytest.mark.lxd_use_exec
def test_static_route_to_host(client: IntegrationInstance):
route = client.execute("ip route | grep {}".format(DESTINATION_IP))
assert route.startswith(EXPECTED_ROUTE)