test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "He, Zhiwei" <zhiwei.he@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "He, Zhiwei" <zhiwei.he@intel.com>
Subject: Re: [dts] [PATCH V3] tests:add IPV4 and IPV6 non pipline switch filter	srcript for CVL
Date: Sun, 19 Jan 2020 08:31:22 +0000	[thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBAD4DD@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1579421159-88420-1-git-send-email-zhiwei.he@intel.com>

applied

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhiwei.he
> Sent: Sunday, January 19, 2020 4:06 PM
> To: dts@dpdk.org
> Cc: He, Zhiwei <zhiwei.he@intel.com>
> Subject: [dts] [PATCH V3] tests:add IPV4 and IPV6 non pipline switch filter
> srcript for CVL
> 
> From: "zhiwei.he" <zhiwei.he@intel.com>
> 
> Signed-off-by: zhiwei.he <zhiwei.he@intel.com>
> ---
>  tests/TestSuite_cvl_switch_filter.py | 247
> +++++++++++++++++++++++++++++++++++
>  1 file changed, 247 insertions(+)
> 
> diff --git a/tests/TestSuite_cvl_switch_filter.py
> b/tests/TestSuite_cvl_switch_filter.py
> index 6d6e696..ffd9af4 100644
> --- a/tests/TestSuite_cvl_switch_filter.py
> +++ b/tests/TestSuite_cvl_switch_filter.py
> @@ -2265,6 +2265,224 @@ tvs_mac_ipv6_tcp_pipeline_mode = [
>      tv_mac_ipv6_tcp_pipeline_mode_drop_03
>      ]
> 
> +tv_mac_ipv4_in_queue_01 = {
> +    "name":"tv_mac_ipv4_in_queue_01",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth dst is
> 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 2 /
> end actions queue index 4 / end",
> +
> "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1
> ",dst="192.168.0.2",tos=4,ttl=2)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_in_queue,
> +                             "param":{"expect_port":0, "expect_queues":4}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.
> 9",dst="192.168.6.12",tos=4,ttl=2)/("X"*480)'],
> +
> "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":4}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv4_drop_queue_02 = {
> +    "name":"tv_mac_ipv4_drop_queue_02",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth dst is
> 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.3 tos is 4 ttl is 2 /
> end actions drop / end",
> +
> "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1
> ",dst="192.168.0.3",tos=4,ttl=2)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_drop,
> +                             "param":{"expect_port":0, "expect_queues":"null"}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.
> 5.6",dst="192.168.5.15",tos=2,ttl=5)/("X"*480)'],
> +                  "check_func":{"func":rfc.check_output_log_drop_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":"null"}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv4_udp_in_queue_01 = {
> +    "name":"tv_mac_ipv4_udp_in_queue_01",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth dst is
> 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 /
> udp src is 25 dst is 23 / end actions queue index 2 / end",
> +
> "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1
> ",dst="192.168.0.2",tos=4,ttl=3)/UDP(sport=25,dport=23)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_in_queue,
> +                             "param":{"expect_port":0, "expect_queues":2}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.
> 6.56",dst="192.168.5.83",tos=2,ttl=1)/UDP(sport=20,dport=33)/("X"*480)'],
> +
> "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":2}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv4_udp_drop_queue_02 = {
> +    "name":"tv_mac_ipv4_udp_drop_queue_02",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth dst is
> 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.3 tos is 4 / udp src
> is 25 dst is 23 / end actions drop / end",
> +
> "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1
> ",dst="192.168.0.3",tos=4)/UDP(sport=25,dport=23)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_drop,
> +                             "param":{"expect_port":0, "expect_queues":"null"}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:98")/IP(src="192.168.
> 6.3",dst="192.168.8.5",tos=4)/UDP(sport=85,dport=62)/("X"*480)'],
> +                  "check_func":{"func":rfc.check_output_log_drop_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":"null"}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv4_tcp_in_queue_01 = {
> +    "name":"tv_mac_ipv4_tcp_in_queue_01",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth dst is
> 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.32 tos is 4 / tcp src
> is 25 dst is 23 / end actions queue index 6 / end",
> +
> "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1
> ",dst="192.168.0.32",tos=4)/TCP(sport=25,dport=23)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_in_queue,
> +                             "param":{"expect_port":0, "expect_queues":6}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.
> 8.3",dst="192.168.15.26",tos=3)/UDP(sport=62,dport=88)/("X"*480)'],
> +
> "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":6}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv4_tcp_drop_queue_02 = {
> +    "name":"tv_mac_ipv4_tcp_drop_queue_02",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth dst is
> 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.3 tos is 4 / tcp src
> is 25 dst is 23 / end actions drop / end",
> +
> "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1
> ",dst="192.168.0.3",tos=4)/TCP(sport=25,dport=23)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_drop,
> +                             "param":{"expect_port":0, "expect_queues":"null"}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.
> 5.6",dst="192.168.5.5",tos=8)/UDP(sport=55,dport=36)/("X"*480)'],
> +                  "check_func":{"func":rfc.check_output_log_drop_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":"null"}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv6_in_queue_01 = {
> +    "name":"tv_mac_ipv6_in_queue_01",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is
> CDCD:910A:2222:5498:8475:1111:3900:1536 dst is
> CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions queue index 7 /
> end",
> +
> "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111
> :3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_in_queue,
> +                             "param":{"expect_port":0, "expect_queues":7}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1
> 111:3900:8220",
> dst="ABAB:910A:2222:5498:8475:1111:3900:1520")/("X"*480)'],
> +
> "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":7}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv6_drop_queue_02 = {
> +    "name":"tv_mac_ipv6_drop_queue_02",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is
> CDCD:910A:2222:5498:8475:1111:3900:1536 dst is
> CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions drop / end",
> +
> "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111
> :3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_drop,
> +                             "param":{"expect_port":0, "expect_queues":"null"}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1
> 111:3900:8220",
> dst="ABAB:910A:2222:5498:8475:1111:3900:1520")/("X"*480)'],
> +                  "check_func":{"func":rfc.check_output_log_drop_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":"null"}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +
> +tv_mac_ipv6_frag_in_queue_01 = {
> +    "name":"tv_mac_ipv6_frag_in_queue_01",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is
> CDCD:910A:2222:5498:8475:1111:3900:1536 dst is
> CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions queue index 7 /
> end",
> +
> "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111
> :3900:1536",
> dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/IPv6ExtHdrFragment()/("
> X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_in_queue,
> +                             "param":{"expect_port":0, "expect_queues":7}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1
> 111:3900:8220",
> dst="ABAB:910A:2222:5498:8475:1111:3900:1520")/("X"*480)'],
> +
> "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":7}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv6_frag_drop_queue_02 = {
> +    "name":"tv_mac_ipv6_frag_drop_queue_02",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is
> CDCD:910A:2222:5498:8475:1111:3900:1536 dst is
> CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions drop / end",
> +
> "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111
> :3900:1536",
> dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/IPv6ExtHdrFragment()/("
> X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_drop,
> +                             "param":{"expect_port":0, "expect_queues":"null"}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1
> 111:3900:8220",
> dst="ABAB:910A:2222:5498:8475:1111:3900:1520")/("X"*480)'],
> +                  "check_func":{"func":rfc.check_output_log_drop_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":"null"}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv6_udp_in_queue_01 = {
> +    "name":"tv_mac_ipv6_udp_in_queue_01",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is
> CDCD:910A:2222:5498:8475:1111:3900:1518 / udp src is 25 dst is 23 / end
> actions queue index 7 / end",
> +
> "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111
> :3900:1518")/UDP(sport=25,dport=23)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_in_queue,
> +                             "param":{"expect_port":0, "expect_queues":7}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether()/IPv6(src="ABAB:910A:2222:5498:8475:1
> 111:3900:1520")/UDP(sport=22,dport=12)/("X"*480)'],
> +
> "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":7}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv6_udp_drop_queue_02 = {
> +    "name":"tv_mac_ipv6_udp_drop_queue_02",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is
> CDCD:910A:2222:5498:8475:1111:3900:1518 / udp src is 25 dst is 23 / end
> actions drop / end",
> +
> "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111
> :3900:1518")/UDP(sport=25,dport=23)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_drop,
> +                             "param":{"expect_port":0, "expect_queues":"null"}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1
> 111:3900:8220")/UDP(sport=62,dport=11)/("X"*480)'],
> +                  "check_func":{"func":rfc.check_output_log_drop_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":"null"}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv6_tcp_in_queue_01 = {
> +    "name":"tv_mac_ipv6_tcp_in_queue_01",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is
> CDCD:910A:2222:5498:8475:1111:3900:1518 / tcp src is 25 dst is 23 / end
> actions queue index 7 / end",
> +
> "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111
> :3900:1518")/TCP(sport=25,dport=23)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_in_queue,
> +                             "param":{"expect_port":0, "expect_queues":7}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether()/IPv6(src="ABAB:910A:2222:5498:8475:1
> 111:3900:1520")/UDP(sport=22,dport=12)/("X"*480)'],
> +
> "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":7}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tv_mac_ipv6_tcp_drop_queue_02 = {
> +    "name":"tv_mac_ipv6_tcp_drop_queue_02",
> +    "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is
> CDCD:910A:2222:5498:8475:1111:3900:1518 / tcp src is 25 dst is 23 / end
> actions drop / end",
> +
> "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111
> :3900:1518")/TCP(sport=25,dport=23)/("X"*480)'],
> +               "check_func":{"func":rfc.check_output_log_drop,
> +                             "param":{"expect_port":0, "expect_queues":"null"}},
> +               "expect_results":{"expect_pkts":1}},
> +
> "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1
> 111:3900:8220")/TCP(sport=62,dport=11)/("X"*480)'],
> +                  "check_func":{"func":rfc.check_output_log_drop_mismatched,
> +                                "param":{"expect_port":0, "expect_queues":"null"}},
> +                  "expect_results":{"expect_pkts":1}}
> +}
> +
> +tvs_mac_ipv4_non_pipeline_mode = [
> +    tv_mac_ipv4_in_queue_01,
> +    tv_mac_ipv4_drop_queue_02
> +    ]
> +
> +tvs_mac_ipv4_udp_non_pipeline_mode = [
> +    tv_mac_ipv4_udp_in_queue_01,
> +    tv_mac_ipv4_udp_drop_queue_02
> +    ]
> +
> +tvs_mac_ipv4_tcp_non_pipeline_mode = [
> +    tv_mac_ipv4_tcp_in_queue_01,
> +    tv_mac_ipv4_tcp_drop_queue_02
> +    ]
> +
> +tvs_mac_ipv6_non_pipeline_mode = [
> +    tv_mac_ipv6_in_queue_01,
> +    tv_mac_ipv6_drop_queue_02
> +    ]
> +
> +tvs_mac_ipv6_frag_non_pipeline_mode = [
> +    tv_mac_ipv6_frag_in_queue_01,
> +    tv_mac_ipv6_frag_drop_queue_02
> +    ]
> +
> +tvs_mac_ipv6_udp_non_pipeline_mode = [
> +    tv_mac_ipv6_udp_in_queue_01,
> +    tv_mac_ipv6_udp_drop_queue_02
> +    ]
> +
> +tvs_mac_ipv6_tcp_non_pipeline_mode = [
> +    tv_mac_ipv6_tcp_in_queue_01,
> +    tv_mac_ipv6_tcp_drop_queue_02
> +    ]
> +
>  test_results = OrderedDict()
> 
>  class SwitchFilterTest(TestCase):
> @@ -2647,3 +2865,32 @@ class SwitchFilterTest(TestCase):
>      def test_mac_ipv6_tcp_pipeline_mode(self):
>          command = self.create_testpmd_command_pipeline_mode()
>          self._rte_flow_validate_pattern(tvs_mac_ipv6_tcp_pipeline_mode,
> command, is_vxlan = False)
> +
> +    def test_mac_ipv4_non_pipeline_mode(self):
> +        command = self.create_testpmd_command()
> +        self._rte_flow_validate_pattern(tvs_mac_ipv4_non_pipeline_mode,
> command, is_vxlan = False)
> +
> +    def test_mac_ipv4_udp_non_pipeline_mode(self):
> +        command = self.create_testpmd_command()
> +
> self._rte_flow_validate_pattern(tvs_mac_ipv4_udp_non_pipeline_mode,
> command, is_vxlan = False)
> +
> +    def test_mac_ipv4_tcp_non_pipeline_mode(self):
> +        command = self.create_testpmd_command()
> +        self._rte_flow_validate_pattern(tvs_mac_ipv4_tcp_non_pipeline_mode,
> command, is_vxlan = False)
> +
> +    def test_mac_ipv6_non_pipeline_mode(self):
> +        command = self.create_testpmd_command()
> +        self._rte_flow_validate_pattern(tvs_mac_ipv6_non_pipeline_mode,
> command, is_vxlan = False)
> +
> +    def test_mac_ipv6_frag_non_pipeline_mode(self):
> +        command = self.create_testpmd_command()
> +
> self._rte_flow_validate_pattern(tvs_mac_ipv6_frag_non_pipeline_mode,
> command, is_vxlan = False)
> +
> +    def test_mac_ipv6_udp_non_pipeline_mode(self):
> +        command = self.create_testpmd_command()
> +
> self._rte_flow_validate_pattern(tvs_mac_ipv6_udp_non_pipeline_mode,
> command, is_vxlan = False)
> +
> +    def test_mac_ipv6_tcp_non_pipeline_mode(self):
> +        command = self.create_testpmd_command()
> +        self._rte_flow_validate_pattern(tvs_mac_ipv6_tcp_non_pipeline_mode,
> command, is_vxlan = False)
> +
> --
> 1.8.3.1


      reply	other threads:[~2020-01-19  8:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-19  8:05 zhiwei.he
2020-01-19  8:31 ` Tu, Lijuan [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8CE3E05A3F976642AAB0F4675D0AD20E0BBAD4DD@SHSMSX101.ccr.corp.intel.com \
    --to=lijuan.tu@intel.com \
    --cc=dts@dpdk.org \
    --cc=zhiwei.he@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).