Skip to content

Commit

Permalink
Support 2 vlan config in topology for test_acl
Browse files Browse the repository at this point in the history
Signed-off-by: Zhaohui Sun <zhaohuisun@microsoft.com>
  • Loading branch information
ZhaohuiS committed Jan 3, 2025
1 parent a351629 commit fc8adab
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions tests/acl/test_acl.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,15 +302,22 @@ def setup(duthosts, ptfhost, rand_selected_dut, rand_unselected_dut, tbinfo, ptf
DOWNSTREAM_DST_IP = DOWNSTREAM_DST_IP_M0_L3
DOWNSTREAM_IP_TO_ALLOW = DOWNSTREAM_IP_TO_ALLOW_M0_L3
DOWNSTREAM_IP_TO_BLOCK = DOWNSTREAM_IP_TO_BLOCK_M0_L3
if topo in ["t0", "mx", "m0_vlan"]:
if topo in ["mx", "m0_vlan"]:
vlan_ports = [mg_facts["minigraph_ptf_indices"][ifname]
for ifname in mg_facts["minigraph_vlans"][vlan_name]["members"]]

config_facts = rand_selected_dut.get_running_config_facts()
vlan_table = config_facts["VLAN"]
if "mac" in vlan_table[vlan_name]:
vlan_mac = vlan_table[vlan_name]["mac"]

elif topo in ["t0"]:
vlan_ports = [mg_facts["minigraph_ptf_indices"][ifname]
for ifname in list(mg_facts["minigraph_vlans"].values())[0]["members"]]
config_facts = rand_selected_dut.get_running_config_facts()
vlan_table = config_facts["VLAN"]
vlan_name = list(vlan_table.keys())[0]
if "mac" in vlan_table[vlan_name]:
vlan_mac = vlan_table[vlan_name]["mac"]
# Get the list of upstream/downstream ports
downstream_ports = defaultdict(list)
upstream_ports = defaultdict(list)
Expand Down

0 comments on commit fc8adab

Please sign in to comment.