Skip to content

Commit

Permalink
[voq][chassis] Remove created ports from the default vlan.
Browse files Browse the repository at this point in the history
Added a test case in test_virtual_chassis.py

Signed-off-by: Nathan Wolfe <nwolfe@arista.com>
  • Loading branch information
arista-nwolfe committed Jan 9, 2023
1 parent 4ac9ad9 commit 3c94ae4
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 1 deletion.
7 changes: 7 additions & 0 deletions orchagent/portsorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2696,6 +2696,13 @@ bool PortsOrch::addPort(const set<int> &lane_set, uint32_t speed, int an, string
m_portListLaneMap[lane_set] = port_id;
m_portCount++;

// newly created ports might be put in the default vlan so remove all ports from
// the default vlan.
if (gMySwitchType == "voq") {
removeDefaultVlanMembers();
removeDefaultBridgePorts();
}

SWSS_LOG_NOTICE("Create port %" PRIx64 " with the speed %u", port_id, speed);

return true;
Expand Down
56 changes: 55 additions & 1 deletion tests/test_virtual_chassis.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import ast
import time
import pytest
import buffer_model

class TestVirtualChassis(object):

Expand Down Expand Up @@ -852,7 +853,60 @@ def test_chassis_system_lag_id_allocator_del_id(self, vct):
assert len(lagmemberkeys) == 0, "Stale system lag member entries in asic db"

break


def test_chassis_add_remove_ports(self, vct):
"""Test removing and adding a port in a VOQ chassis.
Test validates that when a port is created the port is removed from the default vlan.
"""
dvss = vct.dvss
for name in dvss.keys():
dvs = dvss[name]
buffer_model.enable_dynamic_buffer(dvs.get_config_db(), dvs.runcmd)

config_db = dvs.get_config_db()
app_db = dvs.get_app_db()
asic_db = dvs.get_asic_db()
metatbl = config_db.get_entry("DEVICE_METADATA", "localhost")
cfg_switch_type = metatbl.get("switch_type")

if cfg_switch_type == "voq":
# Get the port info we'll flap
port = config_db.get_keys('PORT')[0]
port_info = config_db.get_entry("PORT", port)

# Remove port's other configs
pgs = config_db.get_keys('BUFFER_PG')
queues = config_db.get_keys('BUFFER_QUEUE')
breakout = config_db.get_keys('BREAKOUT_CFG')
for key in pgs:
if port in key:
config_db.delete_entry('BUFFER_PG', key)
app_db.wait_for_deleted_entry('BUFFER_PG_TABLE', key)

for key in queues:
if port in key:
config_db.delete_entry('BUFFER_QUEUE', key)
app_db.wait_for_deleted_entry('BUFFER_QUEUE_TABLE', key)

# Remove port
config_db.delete_entry('PORT', port)
app_db.wait_for_deleted_entry('PORT_TABLE', port)

marker = dvs.add_log_marker()

# Create port
config_db.update_entry("PORT", port, port_info)
app_db.wait_for_entry("PORT_TABLE", port)

# Check that we see the logs for removing default vlan
matching_log = "removeDefaultVlanMembers: Remove 0 VLAN members from default VLAN"
_, logSeen = dvs.runcmd( [ "sh", "-c",
"awk '/{}/,ENDFILE {{print;}}' /var/log/syslog | grep '{}' | wc -l".format( marker, matching_log ) ] )
assert logSeen.strip() == "1"

buffer_model.disable_dynamic_buffer(dvs.get_config_db(), dvs.runcmd)

# Add Dummy always-pass test at end as workaroud
# for issue when Flaky fail on final test it invokes module tear-down before retrying
def test_nonflaky_dummy():
Expand Down

0 comments on commit 3c94ae4

Please sign in to comment.