diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-16 16:37:22 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-16 18:05:13 +0100 |
commit | b373d3841608838fd28f98691cb14e42c128c216 (patch) | |
tree | 4d0cd4e2bf7b9bd53b7e384a6016dfe31fdd20a3 /smoketest/scripts/cli/base_interfaces_test.py | |
parent | 630800af3f9498c766f264927b57fcc606a6169a (diff) | |
download | vyos-1x-b373d3841608838fd28f98691cb14e42c128c216.tar.gz vyos-1x-b373d3841608838fd28f98691cb14e42c128c216.zip |
smoketest: loopback: interface can not be deleted, it must always exist
Commit 35b049aa ("smoketest: interfaces: verify deletion of interfaces")
validated that when the test completed (tearDown()) there must be no
interfaces left registered for the tests. This is invalid for the loopback
interface as it can not be deleted from the system.
Diffstat (limited to 'smoketest/scripts/cli/base_interfaces_test.py')
-rw-r--r-- | smoketest/scripts/cli/base_interfaces_test.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/base_interfaces_test.py b/smoketest/scripts/cli/base_interfaces_test.py index fbedca3f3..8b25d85e6 100644 --- a/smoketest/scripts/cli/base_interfaces_test.py +++ b/smoketest/scripts/cli/base_interfaces_test.py @@ -18,9 +18,10 @@ import json from binascii import hexlify -from netifaces import ifaddresses from netifaces import AF_INET from netifaces import AF_INET6 +from netifaces import ifaddresses +from netifaces import interfaces from vyos.configsession import ConfigSession from vyos.ifconfig import Interface @@ -96,7 +97,7 @@ class BasicInterfaceTest: # Ethernet is handled in its derived class if 'ethernet' not in self._base_path: for intf in self._interfaces: - self.assertFalse(os.path.isdir('/sys/class/net/{intf}')) + self.assertTrue(intf not in interfaces()) def test_span_mirror(self): if not self._mirror_interfaces: |