mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-11-01 19:37:54 +00:00
throughput across bw
This commit is contained in:
@@ -271,7 +271,7 @@ class RunTest:
|
||||
if bw is not None:
|
||||
raw_lines = [['pkts: %s' % pkt_size],
|
||||
['directions: DUT Transmit;DUT Receive'],
|
||||
['bandw_options: %s' % bw ]
|
||||
['bandw_options: %s' % bw],
|
||||
['traffic_types: UDP;TCP'], ["show_3s: 1"],
|
||||
["show_ll_graphs: 1"], ["show_log: 1"]]
|
||||
|
||||
@@ -280,8 +280,6 @@ class RunTest:
|
||||
['traffic_types: UDP;TCP'], ["show_3s: 1"],
|
||||
["show_ll_graphs: 1"], ["show_log: 1"]]
|
||||
|
||||
|
||||
|
||||
self.dataplane_obj = DataplaneTest(lf_host=self.lanforge_ip,
|
||||
lf_port=self.lanforge_port,
|
||||
ssh_port=self.lf_ssh_port,
|
||||
|
||||
@@ -39,7 +39,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt60
|
||||
def test_client_wpa2_personal_pkt_60_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_bridge_bridge_pkt_60_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
@@ -47,7 +47,8 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -55,7 +56,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -81,7 +82,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt142
|
||||
def test_client_wpa2_personal_pkt_142_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_bridge_pkt_142_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
@@ -89,8 +90,8 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -98,7 +99,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -124,7 +125,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt256
|
||||
def test_client_wpa2_personal_pkt_256_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_bridge_pkt_256_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
@@ -132,8 +133,8 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -141,7 +142,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -167,7 +168,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt512
|
||||
def test_client_wpa2_personal_pkt_512_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_bridge_pkt_512_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
@@ -175,8 +176,8 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -184,7 +185,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -210,7 +211,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt1024
|
||||
def test_client_wpa2_personal_pkt_1024_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_bridge_pkt_1024_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
@@ -218,8 +219,8 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -227,7 +228,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -253,7 +254,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pktMTU
|
||||
def test_client_wpa2_personal_pkt_MTU_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_bridge_pkt_MTU_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
@@ -261,8 +262,8 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -270,7 +271,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -319,30 +320,31 @@ class TestThroughputVsPktBridge5G(object):
|
||||
pytest -m "throughput_vs_pkt and Bridge"
|
||||
"""
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.fiveg
|
||||
@pytest.mark.pkt60
|
||||
def test_client_wpa2_personal_pkt_60_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
def test_client_wpa2_personal_bridge_pkt_60_5g(self, get_vif_state,
|
||||
lf_test, station_names_fiveg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fivg"
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fiveg"
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
dut_name = create_lanforge_chamberview_dut
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fivg, mode=mode,
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, pkt_size="60")
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
@@ -355,37 +357,37 @@ class TestThroughputVsPktBridge5G(object):
|
||||
allure.attach.file(source="../reports/" + report_name + "/" + pdf,
|
||||
name=get_configuration["access_point"][0]["model"] + "_dataplane")
|
||||
print("Test Completed... Cleaning up Stations")
|
||||
lf_test.Client_disconnect(station_name=station_names_fivg)
|
||||
lf_test.Client_disconnect(station_name=station_names_fiveg)
|
||||
assert station
|
||||
else:
|
||||
assert False
|
||||
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.fiveg
|
||||
@pytest.mark.pkt142
|
||||
def test_client_wpa2_personal_pkt_142_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
def test_client_wpa2_personal_bridge_pkt_142_5g(self, get_vif_state,
|
||||
lf_test, station_names_fiveg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fivg"
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fiveg"
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
dut_name = create_lanforge_chamberview_dut
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fivg, mode=mode,
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, pkt_size="142")
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
@@ -398,37 +400,37 @@ class TestThroughputVsPktBridge5G(object):
|
||||
allure.attach.file(source="../reports/" + report_name + "/" + pdf,
|
||||
name=get_configuration["access_point"][0]["model"] + "_dataplane")
|
||||
print("Test Completed... Cleaning up Stations")
|
||||
lf_test.Client_disconnect(station_name=station_names_fivg)
|
||||
lf_test.Client_disconnect(station_name=station_names_fiveg)
|
||||
assert station
|
||||
else:
|
||||
assert False
|
||||
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.fiveg
|
||||
@pytest.mark.pkt256
|
||||
def test_client_wpa2_personal_pkt_256_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
def test_client_wpa2_personal_bridge_pkt_256_5g(self, get_vif_state,
|
||||
lf_test, station_names_fiveg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fivg"
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fiveg"
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
dut_name = create_lanforge_chamberview_dut
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fivg, mode=mode,
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, pkt_size="256")
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
@@ -441,37 +443,37 @@ class TestThroughputVsPktBridge5G(object):
|
||||
allure.attach.file(source="../reports/" + report_name + "/" + pdf,
|
||||
name=get_configuration["access_point"][0]["model"] + "_dataplane")
|
||||
print("Test Completed... Cleaning up Stations")
|
||||
lf_test.Client_disconnect(station_name=station_names_fivg)
|
||||
lf_test.Client_disconnect(station_name=station_names_fiveg)
|
||||
assert station
|
||||
else:
|
||||
assert False
|
||||
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.fiveg
|
||||
@pytest.mark.pkt512
|
||||
def test_client_wpa2_personal_pkt_512_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
def test_client_wpa2_personal_bridge_pkt_512_5g(self, get_vif_state,
|
||||
lf_test, station_names_fiveg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fivg"
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fiveg"
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
dut_name = create_lanforge_chamberview_dut
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fivg, mode=mode,
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, pkt_size="512")
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
@@ -484,37 +486,37 @@ class TestThroughputVsPktBridge5G(object):
|
||||
allure.attach.file(source="../reports/" + report_name + "/" + pdf,
|
||||
name=get_configuration["access_point"][0]["model"] + "_dataplane")
|
||||
print("Test Completed... Cleaning up Stations")
|
||||
lf_test.Client_disconnect(station_name=station_names_fivg)
|
||||
lf_test.Client_disconnect(station_name=station_names_fiveg)
|
||||
assert station
|
||||
else:
|
||||
assert False
|
||||
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.fiveg
|
||||
@pytest.mark.pkt1024
|
||||
def test_client_wpa2_personal_pkt_1024_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
def test_client_wpa2_personal_bridge_pkt_1024_5g(self, get_vif_state,
|
||||
lf_test, station_names_fiveg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fivg"
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fiveg"
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
dut_name = create_lanforge_chamberview_dut
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fivg, mode=mode,
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, pkt_size="1024")
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
@@ -527,37 +529,37 @@ class TestThroughputVsPktBridge5G(object):
|
||||
allure.attach.file(source="../reports/" + report_name + "/" + pdf,
|
||||
name=get_configuration["access_point"][0]["model"] + "_dataplane")
|
||||
print("Test Completed... Cleaning up Stations")
|
||||
lf_test.Client_disconnect(station_name=station_names_fivg)
|
||||
lf_test.Client_disconnect(station_name=station_names_fiveg)
|
||||
assert station
|
||||
else:
|
||||
assert False
|
||||
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.fiveg
|
||||
@pytest.mark.pktMTU
|
||||
def test_client_wpa2_personal_pkt_MTU_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
def test_client_wpa2_personal_bridge_pkt_MTU_5g(self, get_vif_state,
|
||||
lf_test, station_names_fiveg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes Bridge Mode
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fivg"
|
||||
pytest -m "throughput_vs_pkt and Bridge and wpa2_personal and fiveg"
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
dut_name = create_lanforge_chamberview_dut
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fivg, mode=mode,
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, pkt_size="MTU")
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
@@ -570,7 +572,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
allure.attach.file(source="../reports/" + report_name + "/" + pdf,
|
||||
name=get_configuration["access_point"][0]["model"] + "_dataplane")
|
||||
print("Test Completed... Cleaning up Stations")
|
||||
lf_test.Client_disconnect(station_name=station_names_fivg)
|
||||
lf_test.Client_disconnect(station_name=station_names_fiveg)
|
||||
assert station
|
||||
else:
|
||||
assert False
|
||||
@@ -32,11 +32,11 @@ setup_params_general = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_profiles")
|
||||
@pytest.mark.wpa2
|
||||
class TestThroughputVsPktNatAWpa22G(object):
|
||||
"""Throughput vs Various Pkt Size Test nat mode
|
||||
pytest -m "throughput_vs_pkt and nat"
|
||||
"""
|
||||
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt60
|
||||
@@ -48,7 +48,8 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -56,7 +57,7 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -90,8 +91,8 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -99,7 +100,7 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -133,8 +134,8 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -142,7 +143,7 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -176,8 +177,8 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -185,7 +186,7 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -219,8 +220,8 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -228,7 +229,7 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -262,8 +263,8 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -271,7 +272,7 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -298,10 +299,9 @@ class TestThroughputVsPktNatAWpa22G(object):
|
||||
setup_params_5g = {
|
||||
"mode": "NAT",
|
||||
"ssid_modes": {
|
||||
"wpa2_personal": [
|
||||
{"ssid_name": "ssid_wpa2_2g", "appliedRadios": ["is2dot4GHz"], "security_key": "something"},
|
||||
{"ssid_name": "ssid_wpa2_5g", "appliedRadios": ["is5GHzU", "is5GHz", "is5GHzL"],
|
||||
"security_key": "something"}]},
|
||||
"wpa2_personal": [{"ssid_name": "ssid_wpa_2g", "appliedRadios": ["is2dot4GHz"], "security_key": "something"},
|
||||
{"ssid_name": "ssid_wpa_5g", "appliedRadios": ["is5GHzU", "is5GHz", "is5GHzL"],
|
||||
"security_key": "something"}]},
|
||||
"rf": {},
|
||||
"radius": False
|
||||
}
|
||||
@@ -315,11 +315,11 @@ setup_params_5g = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_profiles")
|
||||
@pytest.mark.wpa2
|
||||
class TestThroughputVsPktNatOpen5G(object):
|
||||
class TestThroughputVsPktNatWpa25G(object):
|
||||
"""Throughput vs Various Pkt Size Test nat mode
|
||||
pytest -m "throughput_vs_pkt and nat"
|
||||
"""
|
||||
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fiveg
|
||||
@pytest.mark.pkt60
|
||||
@@ -331,7 +331,8 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
@@ -339,7 +340,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -373,8 +374,8 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
@@ -382,7 +383,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -416,8 +417,8 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
@@ -425,7 +426,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -459,8 +460,8 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
@@ -468,7 +469,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -502,8 +503,8 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
@@ -511,7 +512,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -545,8 +546,8 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
vlan = 1
|
||||
@@ -554,7 +555,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -575,4 +576,4 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
lf_test.Client_disconnect(station_name=station_names_fiveg)
|
||||
assert station
|
||||
else:
|
||||
assert False
|
||||
assert False
|
||||
|
||||
@@ -32,7 +32,6 @@ setup_params_general = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_profiles")
|
||||
@pytest.mark.wpa2
|
||||
class TestThroughputVsPktVlanWpa22G(object):
|
||||
"""Throughput vs Various Pkt Size Test vlan mode
|
||||
pytest -m "throughput_vs_pkt and vlan"
|
||||
@@ -40,7 +39,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt60
|
||||
def test_client_wpa2_personal_pkt_60_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_60_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -48,7 +47,8 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -82,7 +82,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt142
|
||||
def test_client_wpa2_personal_pkt_142_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_142_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -90,8 +90,8 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -99,7 +99,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -125,7 +125,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt256
|
||||
def test_client_wpa2_personal_pkt_256_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_256_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -133,8 +133,8 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -142,7 +142,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -168,7 +168,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt512
|
||||
def test_client_wpa2_personal_pkt_512_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_512_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -176,8 +176,8 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -185,7 +185,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -211,7 +211,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pkt1024
|
||||
def test_client_wpa2_personal_pkt_1024_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_1024_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -219,8 +219,8 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -228,7 +228,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -254,7 +254,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.twog
|
||||
@pytest.mark.pktMTU
|
||||
def test_client_wpa2_personal_pkt_MTU_2g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_MTU_2g(self, get_vif_state,
|
||||
lf_test, station_names_twog, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -262,8 +262,8 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa2_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
vlan = 1
|
||||
@@ -271,7 +271,7 @@ class TestThroughputVsPktVlanWpa22G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -315,7 +315,6 @@ setup_params_5g = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_profiles")
|
||||
@pytest.mark.wpa2
|
||||
class TestThroughputVsPktVlan5G(object):
|
||||
"""Throughput vs Various Pkt Size Test vlan mode
|
||||
pytest -m "throughput_vs_pkt and vlan"
|
||||
@@ -323,7 +322,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.pkt60
|
||||
def test_client_wpa2_personal_pkt_60_5g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_60_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -331,7 +330,8 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
vlan = 1
|
||||
@@ -339,7 +339,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -365,7 +365,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.pkt142
|
||||
def test_client_wpa2_personal_pkt_142_5g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_142_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -373,8 +373,8 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
vlan = 1
|
||||
@@ -382,7 +382,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -408,7 +408,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.pkt256
|
||||
def test_client_wpa2_personal_pkt_256_5g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_256_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -416,8 +416,8 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
vlan = 1
|
||||
@@ -425,7 +425,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -451,7 +451,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.pkt512
|
||||
def test_client_wpa2_personal_pkt_512_5g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_512_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -459,8 +459,8 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
vlan = 1
|
||||
@@ -468,7 +468,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -494,7 +494,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.pkt1024
|
||||
def test_client_wpa2_personal_pkt_1024_5g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_1024_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -502,8 +502,8 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
vlan = 1
|
||||
@@ -511,7 +511,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -537,7 +537,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
@pytest.mark.wpa2_personal
|
||||
@pytest.mark.fivg
|
||||
@pytest.mark.pktMTU
|
||||
def test_client_wpa2_personal_pkt_MTU_5g(self, get_vif_state,
|
||||
def test_client_wpa2_personal_vlan_pkt_MTU_5g(self, get_vif_state,
|
||||
lf_test, station_names_fivg, create_lanforge_chamberview_dut,
|
||||
get_configuration):
|
||||
"""Throughput Vs Pkt Sizes VLAN MODE
|
||||
@@ -545,8 +545,8 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa2_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security = "wpa2_personal"
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa2"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
vlan = 1
|
||||
@@ -554,7 +554,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
|
||||
@@ -48,6 +48,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -56,7 +57,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -90,7 +91,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -99,7 +100,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -133,7 +134,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -142,7 +143,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -176,7 +177,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -185,7 +186,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -219,7 +220,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -228,7 +229,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -262,7 +263,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -271,7 +272,7 @@ class TestThroughputVsPktBridge2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -331,6 +332,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -339,7 +341,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -373,7 +375,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -382,7 +384,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -416,7 +418,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -425,7 +427,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -459,7 +461,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -468,7 +470,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -502,7 +504,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -511,7 +513,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -545,7 +547,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -554,7 +556,7 @@ class TestThroughputVsPktBridge5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
|
||||
@@ -48,6 +48,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -56,7 +57,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -90,7 +91,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -99,7 +100,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -133,7 +134,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -142,7 +143,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -176,7 +177,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -185,7 +186,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -219,7 +220,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -228,7 +229,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -262,7 +263,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -271,7 +272,7 @@ class TestThroughputVsPktNatAWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -331,6 +332,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -339,7 +341,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -373,7 +375,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -382,7 +384,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -416,7 +418,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -425,7 +427,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -459,7 +461,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -468,7 +470,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -502,7 +504,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -511,7 +513,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -545,7 +547,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -554,7 +556,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
|
||||
@@ -48,6 +48,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -90,7 +91,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -99,7 +100,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -133,7 +134,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -142,7 +143,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -176,7 +177,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -185,7 +186,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -219,7 +220,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -228,7 +229,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -262,7 +263,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -271,7 +272,7 @@ class TestThroughputVsPktVlanWpa32G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -330,6 +331,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -338,7 +340,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -372,7 +374,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -381,7 +383,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -415,7 +417,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -424,7 +426,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -458,7 +460,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -467,7 +469,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -501,7 +503,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -510,7 +512,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -544,7 +546,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa3_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa3_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -553,7 +555,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -56,7 +56,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -91,7 +91,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -100,7 +100,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -134,7 +134,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -143,7 +143,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -177,7 +177,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -186,7 +186,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -220,7 +220,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -229,7 +229,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -263,7 +263,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "twog"
|
||||
@@ -272,7 +272,7 @@ class TestThroughputVsPktBridgeWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -332,6 +332,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -340,7 +341,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -374,7 +375,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -383,7 +384,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -417,7 +418,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -426,7 +427,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -460,7 +461,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -469,7 +470,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -503,7 +504,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -512,7 +513,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -546,7 +547,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "BRIDGE"
|
||||
band = "fivg"
|
||||
@@ -555,7 +556,7 @@ class TestThroughputVsPktBridgeWpa5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ pytestmark = [pytest.mark.performance, pytest.mark.throughput_vs_pkt, pytest.mar
|
||||
setup_params_general = {
|
||||
"mode": "NAT",
|
||||
"ssid_modes": {
|
||||
"wpa": [{"ssid_name": "ssid_wpa_2g", "appliedRadios": ["is2dot4GHz"], "security_key": "something"},
|
||||
"wpa_personal": [{"ssid_name": "ssid_wpa_2g", "appliedRadios": ["is2dot4GHz"], "security_key": "something"},
|
||||
{"ssid_name": "ssid_wpa_5g", "appliedRadios": ["is5GHzU", "is5GHz", "is5GHzL"],
|
||||
"security_key": "something"}]},
|
||||
|
||||
@@ -47,6 +47,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -55,7 +56,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -89,7 +90,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -98,7 +99,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -132,7 +133,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -141,7 +142,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -175,7 +176,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -184,7 +185,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -218,7 +219,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -227,7 +228,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -261,7 +262,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "twog"
|
||||
@@ -270,7 +271,7 @@ class TestThroughputVsPktNatAWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -330,6 +331,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -338,7 +340,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -372,7 +374,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -381,7 +383,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -415,7 +417,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -424,7 +426,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -458,7 +460,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -467,7 +469,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -501,7 +503,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -510,7 +512,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
@@ -544,7 +546,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "NAT"
|
||||
band = "fiveg"
|
||||
@@ -553,7 +555,7 @@ class TestThroughputVsPktNatOpen5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fiveg, vlan_id=vlan)
|
||||
|
||||
|
||||
@@ -47,6 +47,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -55,7 +56,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -89,7 +90,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -98,7 +99,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -132,7 +133,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -141,7 +142,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -175,7 +176,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -184,7 +185,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -218,7 +219,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -227,7 +228,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -261,7 +262,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
"""
|
||||
profile_data = setup_params_general["ssid_modes"]["wpa_personal"][0]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "twog"
|
||||
@@ -270,7 +271,7 @@ class TestThroughputVsPktVlanWpa2G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_twog, vlan_id=vlan)
|
||||
|
||||
@@ -329,6 +330,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -337,7 +339,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -371,7 +373,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -380,7 +382,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -414,7 +416,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -423,7 +425,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -457,7 +459,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -466,7 +468,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -500,7 +502,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -509,7 +511,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
@@ -543,7 +545,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
"""
|
||||
profile_data = setup_params_5g["ssid_modes"]["wpa_personal"][1]
|
||||
ssid_name = profile_data["ssid_name"]
|
||||
|
||||
security_key = profile_data["security_key"]
|
||||
security = "wpa_personal"
|
||||
mode = "VLAN"
|
||||
band = "fivg"
|
||||
@@ -552,7 +554,7 @@ class TestThroughputVsPktVlan5G(object):
|
||||
if ssid_name not in get_vif_state:
|
||||
allure.attach(name="retest,vif state ssid not available:", body=str(get_vif_state))
|
||||
pytest.xfail("SSID NOT AVAILABLE IN VIF STATE")
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security,
|
||||
station = lf_test.Client_Connect(ssid=ssid_name, security=security, passkey=security_key,
|
||||
mode=mode, band=band,
|
||||
station_name=station_names_fivg, vlan_id=vlan)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user