-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tests/generic_config_updater] implement GCU test for bgp prefix hija…
…ck (#5268) Summary: Testcase of bgp prefix hijack config for generic updater apply-patch What is the motivation for this PR? End to End test support for Generic Updater apply-patch This PR is to verify the usage of 'config apply-patch' works on bgp allowed prefix config How did you do it? Add bgp prefix config to dut and check if config change as expected How did you verify/test it? Run test of sonic-mgmt/tests/generic_config_updater/test_bgp_prefix.py on KVM
- Loading branch information
Showing
1 changed file
with
217 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,217 @@ | ||
import logging | ||
import pytest | ||
import re | ||
|
||
from tests.common.helpers.assertions import pytest_assert | ||
from tests.generic_config_updater.gu_utils import apply_patch, expect_op_failure, expect_op_success | ||
from tests.generic_config_updater.gu_utils import generate_tmpfile, delete_tmpfile | ||
from tests.generic_config_updater.gu_utils import create_checkpoint, delete_checkpoint, rollback_or_reload | ||
|
||
pytestmark = [ | ||
pytest.mark.topology('t1'), #It is a t1 only feature | ||
] | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
PREFIXES_V4_INIT = "10.20.0.0/16" | ||
PREFIXES_V6_INIT = "fc01:20::/64" | ||
PREFIXES_V4_DUMMY = "10.30.0.0/16" | ||
PREFIXES_V6_DUMMY = "fc01:30::/64" | ||
|
||
PREFIXES_V4_RE = "ip prefix-list PL_ALLOW_LIST_DEPLOYMENT_ID_0_COMMUNITY_{}_V4 seq \d+ permit {}" | ||
PREFIXES_V6_RE = "ipv6 prefix-list PL_ALLOW_LIST_DEPLOYMENT_ID_0_COMMUNITY_{}_V6 seq \d+ permit {}" | ||
|
||
@pytest.fixture(autouse=True) | ||
def setup_env(duthosts, rand_one_dut_hostname): | ||
""" | ||
Setup/teardown fixture for bgp prefix config | ||
Args: | ||
duthosts: list of DUTs. | ||
rand_selected_dut: The fixture returns a randomly selected DuT. | ||
""" | ||
duthost = duthosts[rand_one_dut_hostname] | ||
create_checkpoint(duthost) | ||
|
||
yield | ||
|
||
try: | ||
logger.info("Rolled back to original checkpoint") | ||
rollback_or_reload(duthost) | ||
finally: | ||
delete_checkpoint(duthost) | ||
|
||
def bgp_prefix_test_setup(duthost): | ||
""" Clean up bgp prefix config before test | ||
""" | ||
cmds = 'sonic-db-cli CONFIG_DB del "BGP_ALLOWED_PREFIXES|*"' | ||
output = duthost.shell(cmds) | ||
pytest_assert(not output['rc'], | ||
"bgp prefix test setup failed." | ||
) | ||
|
||
def show_bgp_running_config(duthost): | ||
return duthost.shell("show runningconfiguration bgp")['stdout'] | ||
|
||
def bgp_prefix_tc1_add_config(duthost, community, community_table): | ||
""" Test to add prefix config | ||
Sample output of runningconfiguration bgp after config | ||
Without community id: | ||
ip prefix-list PL_ALLOW_LIST_DEPLOYMENT_ID_0_COMMUNITY_empty_V4 seq 30 permit 10.20.0.0/16 le 32 | ||
ipv6 prefix-list PL_ALLOW_LIST_DEPLOYMENT_ID_0_COMMUNITY_empty_V6 seq 40 permit fc02:20::/64 le 128 | ||
With community id as '1010:1010': | ||
ip prefix-list PL_ALLOW_LIST_DEPLOYMENT_ID_0_COMMUNITY_1010:1010_V4 seq 30 permit 10.20.0.0/16 le 32 | ||
ipv6 prefix-list PL_ALLOW_LIST_DEPLOYMENT_ID_0_COMMUNITY_1010:1010_V6 seq 40 permit fc02:20::/64 le 128 | ||
""" | ||
json_patch = [ | ||
{ | ||
"op": "add", | ||
"path": "/BGP_ALLOWED_PREFIXES", | ||
"value": { | ||
"DEPLOYMENT_ID|0{}".format(community_table): { | ||
"prefixes_v4": [ | ||
PREFIXES_V4_INIT | ||
], | ||
"prefixes_v6": [ | ||
PREFIXES_V6_INIT | ||
] | ||
} | ||
} | ||
} | ||
] | ||
|
||
tmpfile = generate_tmpfile(duthost) | ||
logger.info("tmpfile {}".format(tmpfile)) | ||
|
||
try: | ||
output = apply_patch(duthost, json_data=json_patch, dest_file=tmpfile) | ||
expect_op_success(duthost, output) | ||
|
||
bgp_config = show_bgp_running_config(duthost) | ||
pytest_assert(re.search(PREFIXES_V4_RE.format(community, PREFIXES_V4_INIT), bgp_config), | ||
"Failed to add bgp prefix v4 config." | ||
) | ||
pytest_assert(re.search(PREFIXES_V6_RE.format(community, PREFIXES_V6_INIT), bgp_config), | ||
"Failed to add bgp prefix v6 config." | ||
) | ||
|
||
finally: | ||
delete_tmpfile(duthost, tmpfile) | ||
|
||
def bgp_prefix_tc1_xfail(duthost, community_table): | ||
""" Test input with invalid prefixes | ||
""" | ||
xfail_input = [ | ||
("add", "10.256.0.0/16", PREFIXES_V6_DUMMY), # Invalid v4 prefix | ||
("add", PREFIXES_V4_DUMMY, "fc01:xyz::/64"), # Invalid v6 prefix | ||
("remove", PREFIXES_V4_DUMMY, PREFIXES_V6_INIT), # Unexisted v4 prefix | ||
("remove", PREFIXES_V4_INIT, PREFIXES_V6_DUMMY) # Unexisted v6 prefix | ||
] | ||
for op, prefixes_v4, prefixes_v6 in xfail_input: | ||
json_patch = [ | ||
{ | ||
"op": op, | ||
"path": "/BGP_ALLOWED_PREFIXES/DEPLOYMENT_ID|0{}/prefixes_v6/0".format(community_table), | ||
"value": prefixes_v6 | ||
}, | ||
{ | ||
"op": op, | ||
"path": "/BGP_ALLOWED_PREFIXES/DEPLOYMENT_ID|0{}/prefixes_v4/0".format(community_table), | ||
"value": prefixes_v4 | ||
} | ||
] | ||
|
||
tmpfile = generate_tmpfile(duthost) | ||
logger.info("tmpfile {}".format(tmpfile)) | ||
|
||
try: | ||
output = apply_patch(duthost, json_data=json_patch, dest_file=tmpfile) | ||
expect_op_failure(output) | ||
|
||
finally: | ||
delete_tmpfile(duthost, tmpfile) | ||
|
||
def bgp_prefix_tc1_replace(duthost, community, community_table): | ||
""" Test to replace prefixes | ||
""" | ||
json_patch = [ | ||
{ | ||
"op": "replace", | ||
"path": "/BGP_ALLOWED_PREFIXES/DEPLOYMENT_ID|0{}/prefixes_v6/0".format(community_table), | ||
"value": PREFIXES_V6_DUMMY | ||
}, | ||
{ | ||
"op": "replace", | ||
"path": "/BGP_ALLOWED_PREFIXES/DEPLOYMENT_ID|0{}/prefixes_v4/0".format(community_table), | ||
"value": PREFIXES_V4_DUMMY | ||
} | ||
] | ||
|
||
tmpfile = generate_tmpfile(duthost) | ||
logger.info("tmpfile {}".format(tmpfile)) | ||
|
||
try: | ||
output = apply_patch(duthost, json_data=json_patch, dest_file=tmpfile) | ||
expect_op_success(duthost, output) | ||
|
||
bgp_config = show_bgp_running_config(duthost) | ||
pytest_assert( | ||
not re.search(PREFIXES_V4_RE.format(community, PREFIXES_V4_INIT), bgp_config) and | ||
re.search(PREFIXES_V4_RE.format(community, PREFIXES_V4_DUMMY), bgp_config), | ||
"Failed to replace bgp prefix v4 config." | ||
) | ||
pytest_assert( | ||
not re.search(PREFIXES_V6_RE.format(community, PREFIXES_V6_INIT), bgp_config) and | ||
re.search(PREFIXES_V6_RE.format(community, PREFIXES_V6_DUMMY), bgp_config), | ||
"Failed to replace bgp prefix v6 config." | ||
) | ||
|
||
finally: | ||
delete_tmpfile(duthost, tmpfile) | ||
|
||
def bgp_prefix_tc1_remove(duthost, community): | ||
""" Test to remove prefix config | ||
""" | ||
json_patch = [ | ||
{ | ||
"op": "remove", | ||
"path": "/BGP_ALLOWED_PREFIXES" | ||
} | ||
] | ||
|
||
tmpfile = generate_tmpfile(duthost) | ||
logger.info("tmpfile {}".format(tmpfile)) | ||
|
||
try: | ||
output = apply_patch(duthost, json_data=json_patch, dest_file=tmpfile) | ||
expect_op_success(duthost, output) | ||
|
||
bgp_config = show_bgp_running_config(duthost) | ||
pytest_assert( | ||
not re.search(PREFIXES_V4_RE.format(community, PREFIXES_V4_DUMMY), bgp_config), | ||
"Failed to remove bgp prefix v4 config." | ||
) | ||
pytest_assert( | ||
not re.search(PREFIXES_V6_RE.format(community, PREFIXES_V6_DUMMY), bgp_config), | ||
"Failed to remove bgp prefix v6 config." | ||
) | ||
|
||
finally: | ||
delete_tmpfile(duthost, tmpfile) | ||
|
||
@pytest.mark.parametrize("community", ["empty", "1010:1010"]) | ||
def test_bgp_prefix_tc1_suite(duthost, community): | ||
""" Test suite for bgp prefix for v4 and v6 w/ and w/o community ID | ||
Sample CONFIG_DB entry: | ||
BGP_ALLOWED_PREFIXES|DEPLOYMENT_ID|0 | ||
BGP_ALLOWED_PREFIXES|DEPLOYMENT_ID|0|1010:1010 | ||
""" | ||
community_table = "" if community == "empty" else "|" + community | ||
|
||
bgp_prefix_test_setup(duthost) | ||
bgp_prefix_tc1_add_config(duthost, community, community_table) | ||
bgp_prefix_tc1_xfail(duthost, community_table) | ||
bgp_prefix_tc1_replace(duthost, community, community_table) | ||
bgp_prefix_tc1_remove(duthost, community) |