diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-12-05 09:58:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 09:58:34 +0000 |
commit | 26723840edb0eea95f4d31fa228f165bfe5f4292 (patch) | |
tree | fd3de2f8e6f27484ae84592696362e0b4c0df36c /smoketest/scripts/cli | |
parent | 9b40b4c047f35b3ec09c92a95ad8381afdb2b30d (diff) | |
parent | e4befa4987404aecc83e3e48b3d52dd4b64f7d99 (diff) | |
download | vyos-1x-26723840edb0eea95f4d31fa228f165bfe5f4292.tar.gz vyos-1x-26723840edb0eea95f4d31fa228f165bfe5f4292.zip |
Merge pull request #1690 from fett0/T4854
T4854: Route reflector allows to apply route-maps
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_bgp.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_protocols_bgp.py b/smoketest/scripts/cli/test_protocols_bgp.py index d2dad8c1a..debc8270c 100755 --- a/smoketest/scripts/cli/test_protocols_bgp.py +++ b/smoketest/scripts/cli/test_protocols_bgp.py @@ -294,6 +294,7 @@ class TestProtocolsBGP(VyOSUnitTestSHIM.TestCase): self.cli_set(base_path + ['parameters', 'minimum-holdtime', min_hold_time]) self.cli_set(base_path + ['parameters', 'no-suppress-duplicates']) self.cli_set(base_path + ['parameters', 'reject-as-sets']) + self.cli_set(base_path + ['parameters', 'route-reflector-allow-outbound-policy']) self.cli_set(base_path + ['parameters', 'shutdown']) self.cli_set(base_path + ['parameters', 'suppress-fib-pending']) @@ -322,6 +323,7 @@ class TestProtocolsBGP(VyOSUnitTestSHIM.TestCase): self.assertIn(f' bgp bestpath peer-type multipath-relax', frrconfig) self.assertIn(f' bgp minimum-holdtime {min_hold_time}', frrconfig) self.assertIn(f' bgp reject-as-sets', frrconfig) + self.assertIn(f' bgp route-reflector allow-outbound-policy', frrconfig) self.assertIn(f' bgp shutdown', frrconfig) self.assertIn(f' bgp suppress-fib-pending', frrconfig) self.assertNotIn(f'bgp ebgp-requires-policy', frrconfig) |