mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2026-01-27 02:23:28 +00:00
lf_tests change and test cases fix
Signed-off-by: shivamcandela <shivam.thakur@candelatech.com>
This commit is contained in:
@@ -246,7 +246,7 @@ class RunTest:
|
||||
self.client_connect.build()
|
||||
|
||||
self.client_connect.wait_for_ip(station_name, timeout_sec=60)
|
||||
if self.client_connect.wait_for_ip(station_name,timeout_sec=60):
|
||||
if self.client_connect.wait_for_ip(station_name, timeout_sec=60):
|
||||
self.client_connect._pass("ALL Stations got IP's", print_=True)
|
||||
return True
|
||||
else:
|
||||
@@ -259,15 +259,18 @@ class RunTest:
|
||||
return True
|
||||
|
||||
def dataplane(self, station_name=None, mode="BRIDGE", vlan_id=100, download_rate="85%", dut_name="TIP",
|
||||
upload_rate="0kbps", duration="1m", instance_name="test_demo", raw_data=None):
|
||||
upload_rate="85%", duration="1m", instance_name="test_demo", raw_lines=None):
|
||||
if mode == "BRIDGE":
|
||||
self.client_connect.upstream_port = self.upstream_port
|
||||
elif mode == "NAT":
|
||||
self.client_connect.upstream_port = self.upstream_port
|
||||
elif mode == "VLAN":
|
||||
self.client_connect.upstream_port = self.upstream_port + "." + str(vlan_id)
|
||||
if raw_data == None:
|
||||
raw_data = [['pkts: MTU'], ['directions: DUT Transmit;DUT Receive'], ['traffic_types: UDP;TCP'], ["show_3s: 1"], ["show_ll_graphs: 1"], ["show_log: 1"]]
|
||||
|
||||
if raw_lines is None:
|
||||
raw_lines = [['pkts: MTU'], ['directions: DUT Transmit;DUT Receive'], ['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,
|
||||
@@ -284,19 +287,18 @@ class RunTest:
|
||||
duration=duration,
|
||||
dut=dut_name,
|
||||
station="1.1." + station_name[0],
|
||||
raw_lines=raw_data)
|
||||
#print("raw lines",self.raw_lines)
|
||||
#[['pkts: 60'], ['cust_pkt_sz: 88 '], ['directions: DUT Receive'], ['traffic_types: TCP'], ['bandw_options: 20'], ['spatial_streams: 2']]
|
||||
raw_lines=raw_lines)
|
||||
|
||||
self.dataplane_obj.setup()
|
||||
self.dataplane_obj.run()
|
||||
report_name = self.dataplane_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
influx = CSVtoInflux(influxdb=self.influxdb,
|
||||
_influx_tag=self.influx_params["influx_tag"],
|
||||
influx = CSVtoInflux(influxdb=self.influxdb, _influx_tag=self.influx_params["influx_tag"],
|
||||
target_csv=self.local_report_path + report_name + "/kpi.csv")
|
||||
influx.post_to_influx()
|
||||
|
||||
return self.dataplane_obj
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
lanforge_data = {
|
||||
"ip": "localhost",
|
||||
|
||||
@@ -74,7 +74,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP1_PERF_DPT_WPA2_2G_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name,raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name,raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -120,7 +120,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name,raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name,raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/"+report_name + '/')
|
||||
pdf = False
|
||||
@@ -165,7 +165,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G_down_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -211,7 +211,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G__down_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -257,7 +257,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G_bidirectional_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -303,7 +303,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_bi_nss2_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -349,7 +349,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G__up_nss2_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -395,7 +395,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G__up_nss2_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -442,7 +442,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G__down_nss2_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -488,7 +488,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G__down_nss2_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -534,7 +534,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G__bi_nss2_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -580,7 +580,7 @@ class TestThroughputUnderCombinationsBridge20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G__bi_nss2_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -661,7 +661,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__up_nss2_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -710,7 +710,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__down_nss2_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -756,7 +756,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__bi_nss2_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -802,7 +802,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80_up_nss2_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -848,7 +848,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80_down_nss2_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -894,7 +894,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G_80_bi_nss2_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -943,7 +943,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__up_nss3_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -992,7 +992,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__down_nss3_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1038,7 +1038,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__bi_nss3_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1084,7 +1084,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__up_nss3_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1130,7 +1130,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80_down_nss3_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1177,7 +1177,7 @@ class TestThroughputUnderCombinationsBridge80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80_bi_nss3_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1259,7 +1259,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_up_nss3_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1308,7 +1308,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_down_nss3_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1354,7 +1354,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_bi_nss3_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1400,7 +1400,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_up_nss3_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1446,7 +1446,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_up_nss4_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1495,7 +1495,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_down_nss4_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1541,7 +1541,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_bi_nss4_udp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1587,7 +1587,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_up_nss4_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1633,7 +1633,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_down_nss4_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1680,7 +1680,7 @@ class TestThroughputUnderCombinationsBridge160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_bi_nss4_tcp_bridge",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
|
||||
@@ -74,7 +74,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP1_PERF_DPT_WPA2_2G_nat",
|
||||
vlan_id=vlan, dut_name=dut_name,raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name,raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -120,7 +120,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_nat",
|
||||
vlan_id=vlan, dut_name=dut_name,raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name,raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/"+report_name + '/')
|
||||
pdf = False
|
||||
@@ -165,7 +165,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G_down_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -211,7 +211,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G__down_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -257,7 +257,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G_bidirectional_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -303,7 +303,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_bi_nss2_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -349,7 +349,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G__up_nss2_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -395,7 +395,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G__up_nss2_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -442,7 +442,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G__down_nss2_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -488,7 +488,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G__down_nss2_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -534,7 +534,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G__bi_nss2_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -580,7 +580,7 @@ class TestThroughputUnderCombinationsnat20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G__bi_nss2_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -661,7 +661,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__up_nss2_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -710,7 +710,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__down_nss2_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -756,7 +756,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__bi_nss2_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -802,7 +802,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80_up_nss2_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -848,7 +848,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80_down_nss2_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -894,7 +894,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G_80_bi_nss2_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -943,7 +943,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__up_nss3_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -992,7 +992,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__down_nss3_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1038,7 +1038,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__bi_nss3_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1084,7 +1084,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80__up_nss3_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1130,7 +1130,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80_down_nss3_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1177,7 +1177,7 @@ class TestThroughputUnderCombinationsnat80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_80_bi_nss3_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1259,7 +1259,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_up_nss3_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1308,7 +1308,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_down_nss3_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1354,7 +1354,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_bi_nss3_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1400,7 +1400,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_up_nss3_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1446,7 +1446,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_up_nss4_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1495,7 +1495,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_down_nss4_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1541,7 +1541,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_bi_nss4_udp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1587,7 +1587,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_up_nss4_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1633,7 +1633,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_down_nss4_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1680,7 +1680,7 @@ class TestThroughputUnderCombinationsnat160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G_160_bi_nss4_tcp_nat",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
|
||||
@@ -84,7 +84,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G",
|
||||
vlan_id=vlan, dut_name=dut_name,raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name,raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -130,7 +130,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name,raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name,raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/"+report_name + '/')
|
||||
pdf = False
|
||||
@@ -175,7 +175,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -221,7 +221,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -267,7 +267,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -313,7 +313,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -359,7 +359,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -405,7 +405,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -452,7 +452,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -498,7 +498,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -544,7 +544,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -590,7 +590,7 @@ class TestThroughputUnderCombinationsVlan20MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -679,7 +679,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -728,7 +728,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -774,7 +774,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -820,7 +820,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -866,7 +866,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -912,7 +912,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode,
|
||||
instance_name="TIP_PERF_DPT_WPA2_2G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -961,7 +961,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1010,7 +1010,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1056,7 +1056,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1102,7 +1102,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1148,7 +1148,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1195,7 +1195,7 @@ class TestThroughputUnderCombinationsVLAN80MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1285,7 +1285,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1334,7 +1334,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1380,7 +1380,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1426,7 +1426,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1472,7 +1472,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1521,7 +1521,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1567,7 +1567,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1613,7 +1613,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1659,7 +1659,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
@@ -1706,7 +1706,7 @@ class TestThroughputUnderCombinationsVLAN160MHz(object):
|
||||
if station:
|
||||
time.sleep(3)
|
||||
dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, instance_name="TIP3_DPT_WPA2_5G",
|
||||
vlan_id=vlan, dut_name=dut_name, raw_data=val)
|
||||
vlan_id=vlan, dut_name=dut_name, raw_lines=val)
|
||||
report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1]
|
||||
entries = os.listdir("../reports/" + report_name + '/')
|
||||
pdf = False
|
||||
|
||||
Reference in New Issue
Block a user