Skip to content

Commit

Permalink
[202012][cherry-pick]Fix validation of input of `config mirror_sessio…
Browse files Browse the repository at this point in the history
…n add` (#2187)

[202012][cherry-pick]Fix validation of input of `config mirror_session add` (#2187)

* Accept 0 for queue and dscp

Signed-off-by: bingwang <[email protected]>
  • Loading branch information
bingwang-ms authored May 30, 2022
1 parent 2a9aea6 commit b3928ed
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1673,7 +1673,7 @@ def gather_session_info(session_info, policer, queue, src_port, direction):
if policer:
session_info['policer'] = policer

if queue:
if queue is not None:
session_info['queue'] = queue

if src_port:
Expand All @@ -1699,7 +1699,7 @@ def add_erspan(session_name, src_ip, dst_ip, dscp, ttl, gre_type, queue, policer
"ttl": ttl
}

if gre_type:
if gre_type is not None:
session_info['gre_type'] = gre_type

session_info = gather_session_info(session_info, policer, queue, src_port, direction)
Expand Down
22 changes: 20 additions & 2 deletions tests/config_mirror_session_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ def test_mirror_session_add():
mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, 10, 100, None)


result = runner.invoke(
config.config.commands["mirror_session"].commands["add"],
["test_session", "100.1.1.1", "2.2.2.2", "8", "63", "0", "0"])

mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, 0, 0, None)


def test_mirror_session_erspan_add():
runner = CliRunner()
Expand Down Expand Up @@ -129,6 +135,12 @@ def test_mirror_session_erspan_add():

mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, 10, 100, None, None, None)

result = runner.invoke(
config.config.commands["mirror_session"].commands["erspan"].commands["add"],
["test_session", "100.1.1.1", "2.2.2.2", "8", "63", "0", "0"])

mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, 0, 0, None, None, None)


def test_mirror_session_span_add():
runner = CliRunner()
Expand All @@ -144,7 +156,13 @@ def test_mirror_session_span_add():
with mock.patch('config.main.add_span') as mocked:
result = runner.invoke(
config.config.commands["mirror_session"].commands["span"].commands["add"],
["test_session", "Ethernet0", "Ethernet4", "rx", "100"])
["test_session", "Ethernet8", "Ethernet4", "tx", "100"])

mocked.assert_called_with("test_session", "Ethernet8", "Ethernet4", "tx", 100, None)

result = runner.invoke(
config.config.commands["mirror_session"].commands["span"].commands["add"],
["test_session", "Ethernet0", "Ethernet4", "rx", "0"])

mocked.assert_called_with("test_session", "Ethernet0", "Ethernet4", "rx", 100, None)
mocked.assert_called_with("test_session", "Ethernet0", "Ethernet4", "rx", 0, None)

0 comments on commit b3928ed

Please sign in to comment.