diff options
| author | Christian Breunig <christian@breunig.cc> | 2023-04-15 22:14:25 +0200 | 
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2023-04-15 22:14:31 +0200 | 
| commit | 8550b8dbdd445399e7f97f76319df7d66fcc2502 (patch) | |
| tree | 5e2e1d5018773824f12c4bf2362a1f998d3cc33d | |
| parent | 7700da10b8d1d1b3d0db914ab48aebf8ff536da1 (diff) | |
| download | vyos-1x-8550b8dbdd445399e7f97f76319df7d66fcc2502.tar.gz vyos-1x-8550b8dbdd445399e7f97f76319df7d66fcc2502.zip | |
smoketest: T5150: remove deprecated tests
There is no need for protocol specific embedded smoketests as the route-map
option got removed. Tests are now conducted under the new CLI tree.
| -rwxr-xr-x | smoketest/scripts/cli/test_protocols_isis.py | 47 | ||||
| -rwxr-xr-x | smoketest/scripts/cli/test_protocols_ospf.py | 32 | ||||
| -rwxr-xr-x | smoketest/scripts/cli/test_protocols_static.py | 25 | 
3 files changed, 13 insertions, 91 deletions
| diff --git a/smoketest/scripts/cli/test_protocols_isis.py b/smoketest/scripts/cli/test_protocols_isis.py index 61e29c449..f1a030e77 100755 --- a/smoketest/scripts/cli/test_protocols_isis.py +++ b/smoketest/scripts/cli/test_protocols_isis.py @@ -119,39 +119,6 @@ class TestProtocolsISIS(VyOSUnitTestSHIM.TestCase):          self.cli_delete(['vrf', 'name', vrf])          self.cli_delete(['interfaces', 'ethernet', vrf_iface, 'vrf']) -    def test_isis_03_zebra_route_map(self): -        # Implemented because of T3328 -        route_map = 'foo-isis-in' - -        self.cli_set(['policy', 'route-map', route_map, 'rule', '10', 'action', 'permit']) - -        self.isis_base_config() -        self.cli_set(base_path + ['redistribute', 'ipv4', 'connected', 'level-2', 'route-map', route_map]) -        self.cli_set(base_path + ['route-map', route_map]) -        self.cli_set(base_path + ['level', 'level-2']) - -        # commit changes -        self.cli_commit() - -        # Verify FRR configuration -        zebra_route_map = f'ip protocol isis route-map {route_map}' -        frrconfig = self.getFRRconfig(zebra_route_map, daemon='zebra') -        self.assertIn(zebra_route_map, frrconfig) - -        tmp = self.getFRRconfig(f'router isis {domain}', daemon='isisd') -        self.assertIn(' is-type level-2-only', tmp) - -        # Remove the route-map again -        self.cli_delete(base_path + ['route-map']) -        # commit changes -        self.cli_commit() - -        # Verify FRR configuration -        frrconfig = self.getFRRconfig(zebra_route_map, daemon='zebra') -        self.assertNotIn(zebra_route_map, frrconfig) - -        self.cli_delete(['policy', 'route-map', route_map]) -      def test_isis_04_default_information(self):          metric = '50'          route_map = 'default-foo-' @@ -293,7 +260,7 @@ class TestProtocolsISIS(VyOSUnitTestSHIM.TestCase):          self.cli_set(base_path + ['segment-routing', 'prefix', prefix_three, 'absolute', 'explicit-null'])          self.cli_set(base_path + ['segment-routing', 'prefix', prefix_four, 'absolute', 'value', prefix_four_value])          self.cli_set(base_path + ['segment-routing', 'prefix', prefix_four, 'absolute', 'no-php-flag']) -         +          # Commit all changes          self.cli_commit() @@ -315,16 +282,16 @@ class TestProtocolsISIS(VyOSUnitTestSHIM.TestCase):          self.cli_set(base_path + ['net', net])          self.cli_set(base_path + ['interface', interface])          self.cli_set(base_path + ['ldp-sync', 'holddown', holddown]) -         +          # Commit main ISIS changes          self.cli_commit() -         +          # Verify main ISIS changes          tmp = self.getFRRconfig(f'router isis {domain}', daemon='isisd')          self.assertIn(f' net {net}', tmp)          self.assertIn(f' mpls ldp-sync', tmp)          self.assertIn(f' mpls ldp-sync holddown {holddown}', tmp) -         +          for interface in self._interfaces:              self.cli_set(base_path + ['interface', interface, 'ldp-sync', 'holddown', holddown]) @@ -337,13 +304,13 @@ class TestProtocolsISIS(VyOSUnitTestSHIM.TestCase):              self.assertIn(f' ip router isis {domain}', tmp)              self.assertIn(f' ipv6 router isis {domain}', tmp)              self.assertIn(f' isis mpls ldp-sync holddown {holddown}', tmp) -             +          for interface in self._interfaces:              self.cli_set(base_path + ['interface', interface, 'ldp-sync', 'disable']) -             +              # Commit interface changes for disable              self.cli_commit() -             +              # Verify interface changes for disable              tmp = self.getFRRconfig(f'interface {interface}', daemon='isisd')              self.assertIn(f'interface {interface}', tmp) diff --git a/smoketest/scripts/cli/test_protocols_ospf.py b/smoketest/scripts/cli/test_protocols_ospf.py index d4c85f2b2..6fe6dd979 100755 --- a/smoketest/scripts/cli/test_protocols_ospf.py +++ b/smoketest/scripts/cli/test_protocols_ospf.py @@ -300,26 +300,6 @@ class TestProtocolsOSPF(VyOSUnitTestSHIM.TestCase):              self.assertIn(f' no ip ospf passive', config)              self.assertIn(f' bandwidth {bandwidth}', config) -    def test_ospf_10_zebra_route_map(self): -        # Implemented because of T3328 -        self.cli_set(base_path + ['route-map', route_map]) -        # commit changes -        self.cli_commit() - -        # Verify FRR configuration -        zebra_route_map = f'ip protocol ospf route-map {route_map}' -        frrconfig = self.getFRRconfig(zebra_route_map) -        self.assertIn(zebra_route_map, frrconfig) - -        # Remove the route-map again -        self.cli_delete(base_path + ['route-map']) -        # commit changes -        self.cli_commit() - -        # Verify FRR configuration -        frrconfig = self.getFRRconfig(zebra_route_map) -        self.assertNotIn(zebra_route_map, frrconfig) -      def test_ospf_11_interface_area(self):          area = '0'          interfaces = Section.interfaces('ethernet') @@ -441,16 +421,16 @@ class TestProtocolsOSPF(VyOSUnitTestSHIM.TestCase):          self.cli_set(base_path + ['interface', interface])          self.cli_set(base_path + ['ldp-sync', 'holddown', holddown]) -         +          # Commit main OSPF changes          self.cli_commit() -         +          # Verify main OSPF changes          frrconfig = self.getFRRconfig('router ospf')          self.assertIn(f'router ospf', frrconfig)          self.assertIn(f' timers throttle spf 200 1000 10000', frrconfig)          self.assertIn(f' mpls ldp-sync holddown {holddown}', frrconfig) -         +          for interface in interfaces:              self.cli_set(base_path + ['interface', interface, 'ldp-sync', 'holddown', holddown]) @@ -463,13 +443,13 @@ class TestProtocolsOSPF(VyOSUnitTestSHIM.TestCase):              self.assertIn(f' ip ospf dead-interval 40', config)              self.assertIn(f' ip ospf mpls ldp-sync', config)              self.assertIn(f' ip ospf mpls ldp-sync holddown {holddown}', config) -             +          for interface in interfaces:              self.cli_set(base_path + ['interface', interface, 'ldp-sync', 'disable']) -             +              # Commit interface changes for disable              self.cli_commit() -             +              # Verify interface changes for disable              config = self.getFRRconfig(f'interface {interface}')              self.assertIn(f'interface {interface}', config) diff --git a/smoketest/scripts/cli/test_protocols_static.py b/smoketest/scripts/cli/test_protocols_static.py index 19efe7786..bc023f3f2 100755 --- a/smoketest/scripts/cli/test_protocols_static.py +++ b/smoketest/scripts/cli/test_protocols_static.py @@ -433,30 +433,5 @@ class TestProtocolsStatic(VyOSUnitTestSHIM.TestCase):                      self.assertIn(tmp, frrconfig) -    def test_04_static_zebra_route_map(self): -        # Implemented because of T3328 -        route_map = 'foo-static-in' -        self.cli_set(['policy', 'route-map', route_map, 'rule', '10', 'action', 'permit']) - -        self.cli_set(base_path + ['route-map', route_map]) -        # commit changes -        self.cli_commit() - -        # Verify FRR configuration -        zebra_route_map = f'ip protocol static route-map {route_map}' -        frrconfig = self.getFRRconfig(zebra_route_map) -        self.assertIn(zebra_route_map, frrconfig) - -        # Remove the route-map again -        self.cli_delete(base_path + ['route-map']) -        # commit changes -        self.cli_commit() - -        # Verify FRR configuration -        frrconfig = self.getFRRconfig(zebra_route_map) -        self.assertNotIn(zebra_route_map, frrconfig) - -        self.cli_delete(['policy', 'route-map', route_map]) -  if __name__ == '__main__':      unittest.main(verbosity=2) | 
