diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2021-05-19 13:44:41 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 12:44:41 +0200 |
commit | a1ab13b533f300353579cf4d23f8e6a77ca02100 (patch) | |
tree | a42616905a6d72618f9666370f9fc9baafbe4e81 /smoketest/scripts/cli | |
parent | b14b67520e578d1ada8e12f4626f7d82b4cab9b4 (diff) | |
download | vyos-1x-a1ab13b533f300353579cf4d23f8e6a77ca02100.tar.gz vyos-1x-a1ab13b533f300353579cf4d23f8e6a77ca02100.zip |
ospfv3: T3554: add area-type "stub"
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_ospfv3.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_protocols_ospfv3.py b/smoketest/scripts/cli/test_protocols_ospfv3.py index 6bb551642..0b4b01993 100755 --- a/smoketest/scripts/cli/test_protocols_ospfv3.py +++ b/smoketest/scripts/cli/test_protocols_ospfv3.py @@ -150,5 +150,22 @@ class TestProtocolsOSPFv3(VyOSUnitTestSHIM.TestCase): cost = str(int(cost) + 10) priority = str(int(priority) + 5) + + def test_ospfv3_05_area_stub(self): + area_stub = '23' + area_stub_nosum = '26' + + self.cli_set(base_path + ['area', area_stub, 'area-type', 'stub']) + self.cli_set(base_path + ['area', area_stub_nosum, 'area-type', 'stub', 'no-summary']) + + # commit changes + self.cli_commit() + + # Verify FRR ospfd configuration + frrconfig = self.getFRRconfig('router ospf6') + self.assertIn(f'router ospf6', frrconfig) + self.assertIn(f' area {area_stub} stub', frrconfig) + self.assertIn(f' area {area_stub_nosum} stub no-summary', frrconfig) + if __name__ == '__main__': unittest.main(verbosity=2) |