summaryrefslogtreecommitdiff
path: root/scripts/cli/test_interfaces_ethernet.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/test_interfaces_ethernet.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/test_interfaces_ethernet.py')
-rwxr-xr-xscripts/cli/test_interfaces_ethernet.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/scripts/cli/test_interfaces_ethernet.py b/scripts/cli/test_interfaces_ethernet.py
index 373c81680..919caab8c 100755
--- a/scripts/cli/test_interfaces_ethernet.py
+++ b/scripts/cli/test_interfaces_ethernet.py
@@ -14,6 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+import os
import unittest
from base_interfaces_test import BasicInterfaceTest
@@ -29,10 +30,13 @@ class EthernetInterfaceTest(BasicInterfaceTest.BaseTest):
# we need to filter out VLAN interfaces identified by a dot (.)
# in their name - just in case!
- for tmp in Section.interfaces("ethernet"):
- if not '.' in tmp:
- self._interfaces.append(tmp)
-
+ if 'TEST_ETH' in os.environ:
+ tmp = os.environ['TEST_ETH'].split()
+ self._interfaces = tmp
+ else:
+ for tmp in Section.interfaces("ethernet"):
+ if not '.' in tmp:
+ self._interfaces.append(tmp)
if __name__ == '__main__':
unittest.main()