summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_interfaces_bonding.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-05-10 15:17:22 +0200
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-05-10 13:21:59 +0000
commitbced1b4ef04f9e1a12c083c08839e4c1a54e2549 (patch)
tree9d1977454f35746adc20df4f7c1b7739f176f3b6 /smoketest/scripts/cli/test_interfaces_bonding.py
parent82552e2abc77640b3a81560e3f8c5be2c21e3ad2 (diff)
downloadvyos-1x-bced1b4ef04f9e1a12c083c08839e4c1a54e2549.tar.gz
vyos-1x-bced1b4ef04f9e1a12c083c08839e4c1a54e2549.zip
bond: T6303: must reset system-mac to 00:00:00:00:00:00 on deletion
(cherry picked from commit 314901e7b45782fb6266b35b0e788ab7ea1404b8)
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_bonding.py')
-rwxr-xr-xsmoketest/scripts/cli/test_interfaces_bonding.py16
1 files changed, 14 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_bonding.py b/smoketest/scripts/cli/test_interfaces_bonding.py
index 091a7a3c5..f436424b8 100755
--- a/smoketest/scripts/cli/test_interfaces_bonding.py
+++ b/smoketest/scripts/cli/test_interfaces_bonding.py
@@ -243,7 +243,9 @@ class BondingInterfaceTest(BasicInterfaceTest.TestCase):
def test_bonding_system_mac(self):
# configure member interfaces and system-mac
+ default_system_mac = '00:00:00:00:00:00' # default MAC is all zeroes
system_mac = '00:50:ab:cd:ef:11'
+
for interface in self._interfaces:
for option in self._options.get(interface, []):
self.cli_set(self._base_path + [interface] + option.split())
@@ -254,8 +256,18 @@ class BondingInterfaceTest(BasicInterfaceTest.TestCase):
# verify config
for interface in self._interfaces:
- defined_mac = read_file(f'/sys/class/net/{interface}/bonding/ad_actor_system')
- self.assertIn(defined_mac, system_mac)
+ tmp = read_file(f'/sys/class/net/{interface}/bonding/ad_actor_system')
+ self.assertIn(tmp, system_mac)
+
+ for interface in self._interfaces:
+ self.cli_delete(self._base_path + [interface, 'system-mac'])
+
+ self.cli_commit()
+
+ # verify default value
+ for interface in self._interfaces:
+ tmp = read_file(f'/sys/class/net/{interface}/bonding/ad_actor_system')
+ self.assertIn(tmp, default_system_mac)
def test_bonding_evpn_multihoming(self):
id = '5'