Skip to content

Commit

Permalink
Wifi 12666 (#823)
Browse files Browse the repository at this point in the history
* Added pass fail for two sanity test cases

Signed-off-by: jitendracandela <[email protected]>

* Replaced mode NAT to NAT-WAN

Signed-off-by: jitendracandela <[email protected]>

* Added test cases for open encryption

Signed-off-by: jitendracandela <[email protected]>

* Removed unwanted marker

Signed-off-by: jitendracandela <[email protected]>

* Changed mode NAT to NAT-WAN

Signed-off-by: jitendracandela <[email protected]>

* Changed mode NAT to NAT-WAN

Signed-off-by: jitendracandela <[email protected]>

---------

Signed-off-by: jitendracandela <[email protected]>
  • Loading branch information
jitendracandela authored Aug 9, 2023
1 parent a0baad8 commit ec41126
Show file tree
Hide file tree
Showing 16 changed files with 7,574 additions and 614 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def test_client_wpa2_nat_tcp_dl(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_52", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="0Gbps", protocol="TCP-IPv4", duration="60000",
Expand All @@ -214,7 +214,7 @@ def test_client_wpa2_nat_udp_dl(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_52", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="0Gbps", protocol="UDP-IPv4", duration="60000",
Expand All @@ -231,7 +231,7 @@ def test_client_wpa2_nat_tcp_bidirectional(self, get_test_library, get_dut_logs_
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_52", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="1Gbps", protocol="TCP-IPv4", duration="60000",
Expand All @@ -248,7 +248,7 @@ def test_client_wpa2_nat_udp_bidirectional(self, get_test_library, get_dut_logs_
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_52", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_udp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="1Gbps", protocol="UDP-IPv4", duration="60000",
Expand All @@ -265,7 +265,7 @@ def test_client_wpa2_nat_tcp_ul(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_52", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_ul", mode=mode,
download_rate="0Gbps", batch_size="1",
upload_rate="1Gbps", protocol="TCP-IPv4", duration="60000",
Expand All @@ -282,7 +282,7 @@ def test_client_wpa2_nat_udp_ul(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_52", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_udp_ul", mode=mode,
download_rate="0Gbps", batch_size="1",
upload_rate="1Gbps", protocol="UDP-IPv4", duration="60000",
Expand Down Expand Up @@ -330,7 +330,7 @@ def test_client_wpa2_nat_tcp_dl(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_100", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="0Gbps", protocol="TCP-IPv4", duration="60000",
Expand All @@ -347,7 +347,7 @@ def test_client_wpa2_nat_udp_dl(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_100", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="0Gbps", protocol="UDP-IPv4", duration="60000",
Expand All @@ -364,7 +364,7 @@ def test_client_wpa2_nat_tcp_bidirectional(self, get_test_library, get_dut_logs_
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_100", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="1Gbps", protocol="TCP-IPv4", duration="60000",
Expand All @@ -381,7 +381,7 @@ def test_client_wpa2_nat_udp_bidirectional(self, get_test_library, get_dut_logs_
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_100", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_udp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="1Gbps", protocol="UDP-IPv4", duration="60000",
Expand All @@ -398,7 +398,7 @@ def test_client_wpa2_nat_tcp_ul(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_100", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_ul", mode=mode,
download_rate="0Gbps", batch_size="1",
upload_rate="1Gbps", protocol="TCP-IPv4", duration="60000",
Expand All @@ -415,7 +415,7 @@ def test_client_wpa2_nat_udp_ul(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_100", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_udp_ul", mode=mode,
download_rate="0Gbps", batch_size="1",
upload_rate="1Gbps", protocol="UDP-IPv4", duration="60000",
Expand Down Expand Up @@ -463,7 +463,7 @@ def test_client_wpa2_nat_tcp_dl(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_132", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="0Gbps", protocol="TCP-IPv4", duration="60000",
Expand All @@ -480,7 +480,7 @@ def test_client_wpa2_nat_udp_dl(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_132", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="0Gbps", protocol="UDP-IPv4", duration="60000",
Expand All @@ -497,7 +497,7 @@ def test_client_wpa2_nat_tcp_bidirectional(self, get_test_library, get_dut_logs_
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_132", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="1Gbps", protocol="TCP-IPv4", duration="60000",
Expand All @@ -514,7 +514,7 @@ def test_client_wpa2_nat_udp_bidirectional(self, get_test_library, get_dut_logs_
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_132", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_udp_bidirectional", mode=mode,
download_rate="1Gbps", batch_size="1",
upload_rate="1Gbps", protocol="UDP-IPv4", duration="60000",
Expand All @@ -531,7 +531,7 @@ def test_client_wpa2_nat_tcp_ul(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_132", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_tcp_ul", mode=mode,
download_rate="0Gbps", batch_size="1",
upload_rate="1Gbps", protocol="TCP-IPv4", duration="60000",
Expand All @@ -548,7 +548,7 @@ def test_client_wpa2_nat_udp_ul(self, get_test_library, get_dut_logs_per_test_ca
"""
profile_data = {"ssid_name": "ssid_wpa2_5g_132", "appliedRadios": ["5G"], "security_key": "something"}
ssid_name = profile_data["ssid_name"]
mode = "NAT"
mode = "NAT-WAN"
get_test_library.wifi_capacity(instance_name="test_client_wpa2_nat_udp_ul", mode=mode,
download_rate="0Gbps", batch_size="1",
upload_rate="1Gbps", protocol="UDP-IPv4", duration="60000",
Expand Down
Loading

0 comments on commit ec41126

Please sign in to comment.