summaryrefslogtreecommitdiff
path: root/scripts/cli/base_interfaces_test.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-07-17 19:42:41 +0200
committerChristian Poessinger <christian@poessinger.com>2020-07-17 19:42:41 +0200
commita06b0051ff3643fdf532db71cceb3a5c9cc40dea (patch)
treed520f4f59a1bb61ad315056fcac60146f8704205 /scripts/cli/base_interfaces_test.py
parent01d7ff6ad2919775e6813eeafdcf2f5bb860a1b0 (diff)
downloadvyos-1x-a06b0051ff3643fdf532db71cceb3a5c9cc40dea.tar.gz
vyos-1x-a06b0051ff3643fdf532db71cceb3a5c9cc40dea.zip
ethernet: support testing via SSH
Instead of running the smoketest on all available interfaces it is now possible to specify a whitespace separated list as environment variable where the test is performed. This is especially usefull when developing/testing via SSH and to limit the test to an interface you are not connected to. Test only with interface eth1: $ TEST_ETH='eth1' /usr/libexec/vyos/tests/smoke/cli/test_interfaces_ethernet.py
Diffstat (limited to 'scripts/cli/base_interfaces_test.py')
-rw-r--r--scripts/cli/base_interfaces_test.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/cli/base_interfaces_test.py b/scripts/cli/base_interfaces_test.py
index 53fe553bc..00a6f16e4 100644
--- a/scripts/cli/base_interfaces_test.py
+++ b/scripts/cli/base_interfaces_test.py
@@ -38,8 +38,11 @@ class BasicInterfaceTest:
def tearDown(self):
# we should not remove ethernet from the overall CLI
if 'ethernet' in self._base_path:
- self.session.delete(self._base_path)
for intf in self._interfaces:
+ # when using a dedicated interface to test via TEST_ETH environment
+ # variable only this one will be cleared in the end - usable to test
+ # ethernet interfaces via SSH
+ self.session.delete(self._base_path + [intf])
self.session.set(self._base_path + [intf])
else:
self.session.delete(self._base_path)