forked from sonic-net/sonic-mgmt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added test case to verify AZNG Migration script steps
and to test route-map functionality is working fine as expected. Signed-off-by: Abhishek Dosi <[email protected]>
- Loading branch information
Showing
1 changed file
with
197 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,197 @@ | ||
import ipaddr as ipaddress | ||
import json | ||
import pytest | ||
from tests.common.helpers.constants import DEFAULT_NAMESPACE | ||
from tests.common import config_reload | ||
from tests.common.utilities import get_image_type | ||
from tests.common.helpers.assertions import pytest_assert | ||
|
||
pytestmark = [ | ||
pytest.mark.topology('t2') | ||
] | ||
|
||
def test_bgp_azng_migration(duthosts, enum_upstream_dut_hostname): | ||
|
||
duthost = duthosts[enum_upstream_dut_hostname] | ||
|
||
if get_image_type(duthost) == "public": | ||
pytest.skip("AZNG Migration is not supported on public image") | ||
|
||
config_facts = duthost.config_facts(host=duthost.hostname, source="running")['ansible_facts'] | ||
|
||
peer_device_namespace = DEFAULT_NAMESPACE | ||
peer_device_ip_set = set() | ||
|
||
for peer_device, peer_device_info in config_facts['DEVICE_NEIGHBOR_METADATA'].items(): | ||
if peer_device_info['type'] == "AZNGHub": | ||
for peer_device_ip, peer_device_bgp_data in config_facts['BGP_NEIGHBOR'].items(): | ||
if peer_device_bgp_data["name"] == peer_device: | ||
peer_device_ip_set.add(peer_device_ip) | ||
break | ||
|
||
if not len(peer_device_ip_set): | ||
pytest.skip("No AZNG Neighbors found") | ||
|
||
assert len(peer_device_ip_set) == 2 | ||
|
||
if duthost.is_multi_asic: | ||
bgp_name_to_ns_mapping = duthost.get_bgp_name_to_ns_mapping() | ||
peer_device_namespace = bgp_name_to_ns_mapping[peer_device] | ||
|
||
asichost = duthost.asic_instance_from_namespace(peer_device_namespace) | ||
|
||
bgp_fact_info = asichost.bgp_facts() | ||
|
||
for ip in peer_device_ip_set: | ||
assert bgp_fact_info['ansible_facts']['bgp_neighbors'][ip]['state'] == 'established' | ||
|
||
adv_cmd_list = [] | ||
recv_cmd_list = [] | ||
|
||
for ip in peer_device_ip_set: | ||
if ipaddress.IPNetwork(ip).version == 4: | ||
bgp_nbr_recv_cmd = "sudo vtysh -c 'show ip bgp neighbors {} received-routes json'".format( | ||
ip) | ||
recv_cmd_list.append(bgp_nbr_recv_cmd) | ||
|
||
bgp_nbr_advertise_cmd = "sudo vtysh -c 'show ip bgp neighbors {} advertised-routes json'".format( | ||
ip) | ||
|
||
adv_cmd_list.append(bgp_nbr_advertise_cmd) | ||
else: | ||
bgp_nbr_recv_cmd = "sudo vtysh -c 'show bgp ipv6 neighbors {} received-routes json'".format( | ||
ip) | ||
recv_cmd_list.append(bgp_nbr_recv_cmd) | ||
|
||
bgp_nbr_advertise_cmd = "sudo vtysh -c 'show bgp ipv6 neighbors {} advertised-routes json'".format( | ||
ip) | ||
adv_cmd_list.append(bgp_nbr_advertise_cmd) | ||
|
||
original_ipv4_route_recv_count = 0 | ||
original_ipv6_route_recv_count = 0 | ||
original_ipv4_route_adv_count = 0 | ||
original_ipv6_route_adv_count = 0 | ||
original_ipv4_route_recv_filter_count = 0 | ||
original_ipv6_route_recv_filter_count = 0 | ||
original_ipv4_route_adv_filter_count = 0 | ||
original_ipv6_route_adv_filter_count = 0 | ||
success = False | ||
recover_via_minigraph = False | ||
|
||
try: | ||
for bgp_nbr_recv_cmd in recv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_recv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
|
||
if "ipv6" in bgp_nbr_recv_cmd: | ||
original_ipv6_route_recv_count = routes_json['totalPrefixCounter'] | ||
original_ipv6_route_recv_filter_count = routes_json['filteredPrefixCounter'] | ||
else: | ||
original_ipv4_route_recv_count = routes_json['totalPrefixCounter'] | ||
original_ipv4_route_recv_filter_count = routes_json['filteredPrefixCounter'] | ||
|
||
assert routes_json['totalPrefixCounter'] > 0 | ||
assert routes_json['filteredPrefixCounter'] < routes_json['totalPrefixCounter'] | ||
|
||
for bgp_nbr_adv_cmd in adv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_adv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
|
||
if "ipv6" in bgp_nbr_adv_cmd: | ||
original_ipv6_route_adv_count = routes_json['totalPrefixCounter'] | ||
original_ipv6_route_adv_filter_count = routes_json['filteredPrefixCounter'] | ||
else: | ||
original_ipv4_route_adv_count = routes_json['totalPrefixCounter'] | ||
original_ipv4_route_adv_filter_count = routes_json['filteredPrefixCounter'] | ||
|
||
assert routes_json['totalPrefixCounter'] > 0 | ||
assert routes_json['filteredPrefixCounter'] == 0 | ||
|
||
rc = duthost.shell('sudo azng_migration -r') | ||
pytest_assert(rc['failed'] == False, "AZNG Migration Rollback failed") | ||
|
||
for bgp_nbr_recv_cmd in recv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_recv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
assert routes_json['totalPrefixCounter'] > 0 | ||
assert routes_json['filteredPrefixCounter'] == routes_json['totalPrefixCounter'] | ||
|
||
|
||
for bgp_nbr_adv_cmd in adv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_adv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
assert routes_json['totalPrefixCounter'] == len(duthosts) | ||
assert routes_json['filteredPrefixCounter'] == 0 | ||
|
||
rc = duthost.shell('sudo azng_migration -d') | ||
|
||
pytest_assert(rc['failed'] == False, "AZNG Migration Deny Route-map apply failed") | ||
|
||
for bgp_nbr_recv_cmd in recv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_recv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
assert routes_json['totalPrefixCounter'] > 0 | ||
assert routes_json['filteredPrefixCounter'] == routes_json['totalPrefixCounter'] | ||
|
||
for bgp_nbr_adv_cmd in adv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_adv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
assert routes_json['totalPrefixCounter'] == 0 | ||
assert routes_json['filteredPrefixCounter'] == routes_json['totalPrefixCounter'] | ||
|
||
rc = duthost.shell('sudo azng_migration -i') | ||
pytest_assert(rc['failed'] == False, "AZNG Migration Outbound Route-map permit apply failed") | ||
|
||
for bgp_nbr_recv_cmd in recv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_recv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
assert routes_json['totalPrefixCounter'] > 0 | ||
assert routes_json['filteredPrefixCounter'] == routes_json['totalPrefixCounter'] | ||
|
||
for bgp_nbr_adv_cmd in adv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_adv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
assert routes_json['totalPrefixCounter'] > 0 | ||
assert routes_json['filteredPrefixCounter'] == 0 | ||
|
||
if "ipv6" in bgp_nbr_adv_cmd: | ||
assert routes_json['totalPrefixCounter'] == original_ipv6_route_adv_count | ||
assert routes_json['filteredPrefixCounter'] == original_ipv6_route_adv_filter_count | ||
else: | ||
assert routes_json['totalPrefixCounter'] == original_ipv4_route_adv_count | ||
assert routes_json['filteredPrefixCounter'] == original_ipv4_route_adv_filter_count | ||
|
||
rc = duthost.shell('sudo azng_migration -o') | ||
pytest_assert(rc['failed'] == False, "AZNG Migration Inbound Route-map permit apply failed") | ||
|
||
for bgp_nbr_recv_cmd in recv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_recv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
assert routes_json['totalPrefixCounter'] > 0 | ||
assert routes_json['filteredPrefixCounter'] < routes_json['totalPrefixCounter'] | ||
|
||
if "ipv6" in bgp_nbr_recv_cmd: | ||
assert routes_json['totalPrefixCounter'] == original_ipv6_route_recv_count | ||
assert routes_json['filteredPrefixCounter'] == original_ipv6_route_recv_filter_count | ||
else: | ||
assert routes_json['totalPrefixCounter'] == original_ipv4_route_recv_count | ||
assert routes_json['filteredPrefixCounter'] == original_ipv4_route_recv_filter_count | ||
|
||
for bgp_nbr_adv_cmd in adv_cmd_list: | ||
res = duthost.shell(duthost.get_vtysh_cmd_for_namespace(bgp_nbr_adv_cmd, peer_device_namespace)) | ||
routes_json = json.loads(res['stdout']) | ||
assert routes_json['totalPrefixCounter'] > 0 | ||
assert routes_json['filteredPrefixCounter'] == 0 | ||
|
||
rc = duthost.shell('sudo azng_migration -p') | ||
if rc['failed'] == True: | ||
recover_via_minigraph = True | ||
|
||
pytest_assert(recover_via_minigraph == False, "AZNG Migration Production set failed") | ||
success = True | ||
finally: | ||
if not success: | ||
if recover_via_minigraph: | ||
config_reload(duthost, config_source='minigraph') | ||
else: | ||
config_reload(duthost, config_source='config_db') |