diff options
| author | Carmine Scarpitta <cscarpit@cisco.com> | 2025-02-26 15:36:00 +0100 | 
|---|---|---|
| committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2025-02-28 14:16:16 +0000 | 
| commit | f8ceda5a0c6995e58b39d967b878fdad4ef534e4 (patch) | |
| tree | e6f096aa4d1492a34aa9ff499d9c695981d2cc94 | |
| parent | 720879b08a34ff7f166f3c1b8f5a1c75e7d00b9b (diff) | |
tests: Add test case to verify `no static-sids` command
Add a test case to verify that staticd removes all SIDs when the
`no static-sids` command is executed.
Signed-off-by: Carmine Scarpitta <cscarpit@cisco.com>
(cherry picked from commit 303be67e6ab185954b05c16c499a6b258311d897)
| -rw-r--r-- | tests/topotests/static_srv6_sids/expected_srv6_sids_delete_all.json | 1 | ||||
| -rwxr-xr-x | tests/topotests/static_srv6_sids/test_static_srv6_sids.py | 37 | 
2 files changed, 38 insertions, 0 deletions
diff --git a/tests/topotests/static_srv6_sids/expected_srv6_sids_delete_all.json b/tests/topotests/static_srv6_sids/expected_srv6_sids_delete_all.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/tests/topotests/static_srv6_sids/expected_srv6_sids_delete_all.json @@ -0,0 +1 @@ +{}
\ No newline at end of file diff --git a/tests/topotests/static_srv6_sids/test_static_srv6_sids.py b/tests/topotests/static_srv6_sids/test_static_srv6_sids.py index cdcc6fd29e..8f38fd55dd 100755 --- a/tests/topotests/static_srv6_sids/test_static_srv6_sids.py +++ b/tests/topotests/static_srv6_sids/test_static_srv6_sids.py @@ -172,6 +172,43 @@ def test_srv6_static_sids_sid_readd():      check_srv6_static_sids(router, "expected_srv6_sids.json") +def test_srv6_static_sids_sid_delete_all(): +    """ +    Remove all static SIDs and verify they get removed +    """ +    tgen = get_topogen() +    if tgen.routers_have_failure(): +        pytest.skip(tgen.errors) +    router = tgen.gears["r1"] + +    def _check_srv6_static_sids(router, expected_route_file): +        logger.info("checking zebra srv6 static sids") +        output = json.loads(router.vtysh_cmd("show ipv6 route static json")) +        expected = open_json_file("{}/{}".format(CWD, expected_route_file)) +        return topotest.json_cmp(output, expected, exact=True) + +    def check_srv6_static_sids(router, expected_file): +        func = functools.partial(_check_srv6_static_sids, router, expected_file) +        _, result = topotest.run_and_expect(func, None, count=15, wait=1) +        assert result is None, "Failed" + +    router.vtysh_cmd( +        """ +        configure terminal +         segment-routing +          srv6 +           no static-sids +        """ +    ) + +    # FOR DEVELOPER: +    # If you want to stop some specific line and start interactive shell, +    # please use tgen.mininet_cli() to start it. + +    logger.info("Test for srv6 sids configuration") +    check_srv6_static_sids(router, "expected_srv6_sids_delete_all.json") + +  if __name__ == "__main__":      args = ["-s"] + sys.argv[1:]      sys.exit(pytest.main(args))  | 
