From 85259312c7632f65b8b320e8fc88bf0114e1a8eb Mon Sep 17 00:00:00 2001 From: saurabh Date: Sat, 11 Sep 2021 13:05:37 +0530 Subject: [PATCH 1/7] Wpa3 Personal Bridge Mode Signed-off-by: saurabh --- .../{ => wpa2_security}/test_bridge_mode.py | 0 .../{ => wpa2_security}/test_nat_mode.py | 0 .../{ => wpa2_security}/test_vlan_mode.py | 0 .../wpa3_security/__init__.py | 0 .../wpa3_security/test_bridge_mode.py | 107 ++++++++++++++++++ .../wpa3_security/test_nat_mode.py | 0 .../wpa3_security/test_vlan_mode.py | 0 7 files changed, 107 insertions(+) rename tests/e2e/basic/performance_tests/dataplane_throughput_test/{ => wpa2_security}/test_bridge_mode.py (100%) rename tests/e2e/basic/performance_tests/dataplane_throughput_test/{ => wpa2_security}/test_nat_mode.py (100%) rename tests/e2e/basic/performance_tests/dataplane_throughput_test/{ => wpa2_security}/test_vlan_mode.py (100%) create mode 100644 tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/__init__.py create mode 100644 tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_bridge_mode.py create mode 100644 tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py create mode 100644 tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_vlan_mode.py diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/test_bridge_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa2_security/test_bridge_mode.py similarity index 100% rename from tests/e2e/basic/performance_tests/dataplane_throughput_test/test_bridge_mode.py rename to tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa2_security/test_bridge_mode.py diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/test_nat_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa2_security/test_nat_mode.py similarity index 100% rename from tests/e2e/basic/performance_tests/dataplane_throughput_test/test_nat_mode.py rename to tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa2_security/test_nat_mode.py diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/test_vlan_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa2_security/test_vlan_mode.py similarity index 100% rename from tests/e2e/basic/performance_tests/dataplane_throughput_test/test_vlan_mode.py rename to tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa2_security/test_vlan_mode.py diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/__init__.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_bridge_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_bridge_mode.py new file mode 100644 index 000000000..edf410c12 --- /dev/null +++ b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_bridge_mode.py @@ -0,0 +1,107 @@ +""" + + Performance Test: Dataplane Throughput Test: BRIDGE Mode + pytest -m "dataplane_throughput_test and wpa3 and bridge" + +""" +import os +import pytest +import allure + +pytestmark = [pytest.mark.performance, pytest.mark.dataplane_throughput_test, + pytest.mark.bridge] # , pytest.mark.usefixtures("setup_test_run")] + +setup_params_general = { + "mode": "BRIDGE", + "ssid_modes": { + "wpa3_personal": [ + {"ssid_name": "ssid_wpa3_2g", "appliedRadios": ["2G"], "security_key": "something"}, + {"ssid_name": "ssid_wpa3_5g", "appliedRadios": ["5G"], "security_key": "something"}]}, + "rf": {}, + "radius": False +} + + +@allure.suite("performance") +@allure.feature("BRIDGE MODE Dataplane Throughput Test") +@pytest.mark.parametrize( + 'setup_profiles', + [setup_params_general], + indirect=True, + scope="class" +) +@pytest.mark.usefixtures("setup_profiles") +class TestDataplaneThroughputBRIDGE(object): + """Dataplane THroughput BRIDGE Mode + pytest -m "dataplane_throughput_test and wpa3 BRIDGE" + """ + @allure.testcase(url="https://telecominfraproject.atlassian.net/browse/WIFI-3677", name="WIFI-3677") + @pytest.mark.wpa3_personal + @pytest.mark.twog + def test_tcp_upd_wpa3_personal_bridge_2g_band(self, get_vif_state, lf_tools, + lf_test, station_names_twog, create_lanforge_chamberview_dut, + get_configuration): + """Dataplane THroughput BRIDGE Mode + pytest -m "dataplane_throughput_test and bridge and wpa3 and twog" + """ + profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0] + ssid_name = profile_data["ssid_name"] + security_key = profile_data["security_key"] + security = "wpa3" + mode = "BRIDGE" + band = "twog" + 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, + passkey=security_key, mode=mode, band=band, + station_name=station_names_twog, vlan_id=vlan) + + if station: + dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode, + instance_name="TIP_DPT_DPT_WPA3_2G_BRIDGE", + vlan_id=vlan, dut_name=dut_name) + report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1] + lf_tools.attach_report_graphs(report_name=report_name, pdf_name="Dataplane Throughput WPA3 Personal Test - TCP-UDP 2.4G") + lf_test.Client_disconnect(station_name=station_names_twog) + assert station + else: + assert False + + @allure.testcase(url="https://telecominfraproject.atlassian.net/browse/WIFI-3678", name="WIFI-3678") + @pytest.mark.wpa3_personal + @pytest.mark.fiveg + @pytest.mark.sg12 + def test_tcp_upd_wpa3_personal_bridge_5g_band(self, get_vif_state, lf_tools, + lf_test, station_names_fiveg, create_lanforge_chamberview_dut, get_configuration): + """Dataplane THroughput BRIDGE Mode + pytest -m "dataplane_throughput_test and bridge and wpa3 and fiveg" + """ + profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][1] + ssid_name = profile_data["ssid_name"] + security_key = profile_data["security_key"] + security = "wpa3" + mode = "BRIDGE" + 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, + passkey=security_key, mode=mode, band=band, + station_name=station_names_fiveg, vlan_id=vlan) + + if station: + dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, + instance_name="TIP_DPT_DPT_WPA3_5G_BRIDGE", + vlan_id=vlan, dut_name=dut_name) + report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1] + lf_tools.attach_report_graphs(report_name=report_name, pdf_name="Dataplane Throughput WPA3 Personal Test - TCP-UDP 5G") + print("Test Completed... Cleaning up Stations") + lf_test.Client_disconnect(station_name=station_names_fiveg) + assert station + else: + assert False \ No newline at end of file diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_vlan_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_vlan_mode.py new file mode 100644 index 000000000..e69de29bb From 124ac7c7635868b918d8c217fc54a7dc51defde6 Mon Sep 17 00:00:00 2001 From: saurabh Date: Sat, 11 Sep 2021 13:05:50 +0530 Subject: [PATCH 2/7] Wpa3 Personal Nat Mode Signed-off-by: saurabh --- .../wpa3_security/test_nat_mode.py | 104 ++++++++++++++++++ 1 file changed, 104 insertions(+) diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py index e69de29bb..87032575f 100644 --- a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py +++ b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py @@ -0,0 +1,104 @@ +""" + + Performance Test: Dataplane Throughput Test: nat Mode + pytest -m "dataplane_throughput_test and and wpa3 nat" + +""" +import os +import pytest +import allure + +pytestmark = [pytest.mark.performance, pytest.mark.dataplane_throughput_test, pytest.mark.nat] + +setup_params_general = { + "mode": "NAT", + "ssid_modes": { + "wpa3_personal": [ + {"ssid_name": "ssid_wpa3_2g", "appliedRadios": ["2G"], "security_key": "something"}, + {"ssid_name": "ssid_wpa3_5g", "appliedRadios": ["5G"], "security_key": "something"}]}, + "rf": {}, + "radius": False +} +@allure.suite("performance") +@allure.feature("BRIDGE MODE Dataplane Throughput Test") +@allure.feature("NAT MODE CLIENT CONNECTIVITY") +@pytest.mark.parametrize( + 'setup_profiles', + [setup_params_general], + indirect=True, + scope="class" +) +@pytest.mark.usefixtures("setup_profiles") +class TestDataplaneThroughputNAT(object): + """Dataplane THroughput nat Mode + pytest -m "dataplane_throughput_test and wpa3_personal and nat" + """ + + @allure.testcase(url="https://telecominfraproject.atlassian.net/browse/WIFI-3677", name="WIFI-3677") + @pytest.mark.wpa3_personal + @pytest.mark.twog + def test_tcp_upd_wpa3_personal_nat_2g_band(self, get_vif_state, lf_tools, + lf_test, station_names_twog, create_lanforge_chamberview_dut, + get_configuration): + """Dataplane THroughput nat Mode + pytest -m "dataplane_throughput_test and nat and wpa3_personalz and twog" + """ + profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0] + ssid_name = profile_data["ssid_name"] + security_key = profile_data["security_key"] + security = "wpa3" + mode = "NAT" + band = "twog" + 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, + passkey=security_key, mode=mode, band=band, + station_name=station_names_twog, vlan_id=vlan) + + if station: + dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode, + instance_name="TIP_DPT_DPT_WPA3_2G_NAT", + vlan_id=vlan, dut_name=dut_name) + report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1] + lf_tools.attach_report_graphs(report_name=report_name, pdf_name="Dataplane Throughput WPA3 Personal Test - TCP-UDP 2.4G") + lf_test.Client_disconnect(station_name=station_names_twog) + assert station + else: + assert False + @allure.testcase(url="https://telecominfraproject.atlassian.net/browse/WIFI-3678", name="WIFI-3678") + @pytest.mark.wpa3_personal + @pytest.mark.fiveg + def test_tcp_upd_wpa3_personal_nat_5g_band(self, get_vif_state, lf_tools, + lf_test, station_names_fiveg, create_lanforge_chamberview_dut, get_configuration): + """Dataplane THroughput nat Mode + pytest -m "dataplane_throughput_test and nat and wpa3_personal and fiveg" + """ + profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][1] + ssid_name = profile_data["ssid_name"] + security_key = profile_data["security_key"] + security = "wpa3" + mode = "NAT" + 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, + passkey=security_key, mode=mode, band=band, + station_name=station_names_fiveg, vlan_id=vlan) + + if station: + dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, + instance_name="TIP_DPT_DPT_WPA3_5G_NAT", + vlan_id=vlan, dut_name=dut_name) + report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1] + lf_tools.attach_report_graphs(report_name=report_name, pdf_name="Dataplane Throughput WPA3 Personal Test - TCP-UDP 5G") + print("Test Completed... Cleaning up Stations") + lf_test.Client_disconnect(station_name=station_names_fiveg) + assert station + else: + assert False \ No newline at end of file From 50e3ced489ed5ae163810b035346140b63b42e5a Mon Sep 17 00:00:00 2001 From: saurabh Date: Sat, 11 Sep 2021 13:06:00 +0530 Subject: [PATCH 3/7] Wpa3 Personal Vlan Mode Signed-off-by: saurabh --- .../wpa3_security/test_vlan_mode.py | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_vlan_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_vlan_mode.py index e69de29bb..111202b41 100644 --- a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_vlan_mode.py +++ b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_vlan_mode.py @@ -0,0 +1,106 @@ +""" + + Performance Test: Dataplane Throughput Test: VLAN Mode + pytest -m "dataplane_throughput_test and vlan" + +""" +import os +import pytest +import allure + +pytestmark = [pytest.mark.performance, pytest.mark.dataplane_throughput_test, pytest.mark.vlan] + +setup_params_general = { + "mode": "VLAN", + "ssid_modes": { + "wpa3_personal": [ + {"ssid_name": "ssid_wpa3_2g", "appliedRadios": ["2G"], "security_key": "something", "vlan": 100}, + {"ssid_name": "ssid_wpa3_5g", "appliedRadios": ["5G"], "security_key": "something", "vlan": 100}]}, + "rf": {}, + "radius": False +} + + +@allure.suite("performance") +@allure.feature("VLAN MODE Dataplane Throughput Test") +@pytest.mark.parametrize( + 'setup_profiles', + [setup_params_general], + indirect=True, + scope="class" +) +@pytest.mark.usefixtures("setup_profiles") +class TestDataplaneThroughputVLAN(object): + """Dataplane THroughput VLAN Mode + pytest -m "dataplane_throughput_test and wpa3_personal and vlan" + """ + + @allure.testcase(url="https://telecominfraproject.atlassian.net/browse/WIFI-3677", name="WIFI-3677") + @pytest.mark.wpa3_personal + @pytest.mark.twog + def test_tcp_upd_wpa3_personal_vlan_2g_band(self, get_vif_state, lf_tools, + lf_test, station_names_twog, create_lanforge_chamberview_dut, + get_configuration): + """Dataplane THroughput VLAN Mode + pytest -m "dataplane_throughput_test and vlan and wpa3_personal and twog" + """ + profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0] + ssid_name = profile_data["ssid_name"] + security_key = profile_data["security_key"] + security = "wpa3" + mode = "VLAN" + band = "twog" + vlan = 100 + 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, + passkey=security_key, mode=mode, band=band, + station_name=station_names_twog, vlan_id=vlan) + + if station: + dp_obj = lf_test.dataplane(station_name=station_names_twog, mode=mode, + instance_name="TIP_DPT_DPT_WPA3_2G_VLAN", + vlan_id=vlan, dut_name=dut_name) + report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1] + lf_tools.attach_report_graphs(report_name=report_name, pdf_name="Dataplane Throughput WPA3 Personal Test - TCP-UDP 2.4G") + lf_test.Client_disconnect(station_name=station_names_twog) + assert station + else: + assert False + + @allure.testcase(url="https://telecominfraproject.atlassian.net/browse/WIFI-3678", name="WIFI-3678") + @pytest.mark.wpa3_personal + @pytest.mark.fiveg + def test_tcp_upd_wpa3_personal_vlan_5g_band(self, get_vif_state, lf_tools, + lf_test, station_names_fiveg, create_lanforge_chamberview_dut, get_configuration): + """Dataplane THroughput VLAN Mode + pytest -m "dataplane_throughput_test and vlan and wpa3_personal and fiveg" + """ + profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][1] + ssid_name = profile_data["ssid_name"] + security_key = profile_data["security_key"] + security = "wpa3" + mode = "VLAN" + band = "fiveg" + vlan = 100 + 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, + passkey=security_key, mode=mode, band=band, + station_name=station_names_fiveg, vlan_id=vlan) + + if station: + dp_obj = lf_test.dataplane(station_name=station_names_fiveg, mode=mode, + instance_name="TIP_DPT_DPT_WPA3_5G_VLAN", + vlan_id=vlan, dut_name=dut_name) + report_name = dp_obj.report_name[0]['LAST']["response"].split(":::")[1].split("/")[-1] + lf_tools.attach_report_graphs(report_name=report_name, pdf_name="Dataplane Throughput WPA3 Personal Test - TCP-UDP 5G") + print("Test Completed... Cleaning up Stations") + lf_test.Client_disconnect(station_name=station_names_fiveg) + assert station + else: + assert False \ No newline at end of file From a48cf1fd4cccdad9ad499bc2351ddf88146c6e10 Mon Sep 17 00:00:00 2001 From: saurabh Date: Sat, 11 Sep 2021 13:11:42 +0530 Subject: [PATCH 4/7] Wpa3 Personal Bridge Mode Signed-off-by: saurabh --- .../dataplane_throughput_test/open_security/__init__.py | 0 .../wpa3_security/test_bridge_mode.py | 7 +++---- 2 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 tests/e2e/basic/performance_tests/dataplane_throughput_test/open_security/__init__.py diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/open_security/__init__.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/open_security/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_bridge_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_bridge_mode.py index edf410c12..46bb4b4e4 100644 --- a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_bridge_mode.py +++ b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_bridge_mode.py @@ -33,7 +33,7 @@ setup_params_general = { @pytest.mark.usefixtures("setup_profiles") class TestDataplaneThroughputBRIDGE(object): """Dataplane THroughput BRIDGE Mode - pytest -m "dataplane_throughput_test and wpa3 BRIDGE" + pytest -m "dataplane_throughput_test and wpa3_personal bridge" """ @allure.testcase(url="https://telecominfraproject.atlassian.net/browse/WIFI-3677", name="WIFI-3677") @pytest.mark.wpa3_personal @@ -42,7 +42,7 @@ class TestDataplaneThroughputBRIDGE(object): lf_test, station_names_twog, create_lanforge_chamberview_dut, get_configuration): """Dataplane THroughput BRIDGE Mode - pytest -m "dataplane_throughput_test and bridge and wpa3 and twog" + pytest -m "dataplane_throughput_test and bridge and wpa3_personal and twog" """ profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0] ssid_name = profile_data["ssid_name"] @@ -73,11 +73,10 @@ class TestDataplaneThroughputBRIDGE(object): @allure.testcase(url="https://telecominfraproject.atlassian.net/browse/WIFI-3678", name="WIFI-3678") @pytest.mark.wpa3_personal @pytest.mark.fiveg - @pytest.mark.sg12 def test_tcp_upd_wpa3_personal_bridge_5g_band(self, get_vif_state, lf_tools, lf_test, station_names_fiveg, create_lanforge_chamberview_dut, get_configuration): """Dataplane THroughput BRIDGE Mode - pytest -m "dataplane_throughput_test and bridge and wpa3 and fiveg" + pytest -m "dataplane_throughput_test and bridge and wpa3_personal and fiveg" """ profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][1] ssid_name = profile_data["ssid_name"] From 2e080dcf6c5ad033cdf5f2309eef44a020934023 Mon Sep 17 00:00:00 2001 From: saurabh Date: Sat, 11 Sep 2021 13:12:24 +0530 Subject: [PATCH 5/7] Wpa3 Personal Nat Mode Signed-off-by: saurabh --- .../dataplane_throughput_test/wpa3_security/test_nat_mode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py index 87032575f..56a64b3b0 100644 --- a/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py +++ b/tests/e2e/basic/performance_tests/dataplane_throughput_test/wpa3_security/test_nat_mode.py @@ -41,7 +41,7 @@ class TestDataplaneThroughputNAT(object): lf_test, station_names_twog, create_lanforge_chamberview_dut, get_configuration): """Dataplane THroughput nat Mode - pytest -m "dataplane_throughput_test and nat and wpa3_personalz and twog" + pytest -m "dataplane_throughput_test and nat and wpa3_personal and twog" """ profile_data = setup_params_general["ssid_modes"]["wpa3_personal"][0] ssid_name = profile_data["ssid_name"] From 7dbdf300f3c71c7f30b4d7f4236d6d293fb5d922 Mon Sep 17 00:00:00 2001 From: saurabh Date: Sat, 11 Sep 2021 14:59:33 +0530 Subject: [PATCH 6/7] Remove duplicated directory --- tests/configuration.py | 10 +++++----- .../open_security/__init__.py | 0 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 tests/e2e/basic/performance_tests/dataplane_throughput_test/open_security/__init__.py diff --git a/tests/configuration.py b/tests/configuration.py index 6114bce47..843f8184e 100644 --- a/tests/configuration.py +++ b/tests/configuration.py @@ -202,10 +202,10 @@ CONFIGURATION = { 'mode': 'wifi6', 'serial': '0000c1018812', 'jumphost': True, - 'ip': "10.28.3.103", + 'ip': "localhost", 'username': "lanforge", 'password': "pumpkin77", - 'port': 22, + 'port': 8999, 'jumphost_tty': '/dev/ttyAP1', 'version': "https://tip.jfrog.io/artifactory/tip-wlan-ap-firmware/uCentral/cig_wf188/20210729-cig_wf188-v2.0.0-rc2-ec3662e-upgrade.bin" } @@ -213,9 +213,9 @@ CONFIGURATION = { "traffic_generator": { "name": "lanforge", "details": { - "ip": "10.28.3.28", - "port": 8080, - "ssh_port": 22, + "ip": "localhost", + "port": 8998, + "ssh_port": 8990, "2.4G-Radio": ["1.1.wiphy0", "1.1.wiphy2"], "5G-Radio": ["1.1.wiphy1", "1.1.wiphy3"], "AX-Radio": ["1.1.wiphy4", "1.1.wiphy5", "1.1.wiphy6", "1.1.wiphy7"], diff --git a/tests/e2e/basic/performance_tests/dataplane_throughput_test/open_security/__init__.py b/tests/e2e/basic/performance_tests/dataplane_throughput_test/open_security/__init__.py deleted file mode 100644 index e69de29bb..000000000 From 00a4dba4a508175206ebd457ca7986dab3d60149 Mon Sep 17 00:00:00 2001 From: Shivam Thakur <70829776+shivamcandela@users.noreply.github.com> Date: Mon, 13 Sep 2021 00:17:14 +0530 Subject: [PATCH 7/7] Update configuration.py --- tests/configuration.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/configuration.py b/tests/configuration.py index 843f8184e..1eab6693e 100644 --- a/tests/configuration.py +++ b/tests/configuration.py @@ -126,10 +126,10 @@ CONFIGURATION = { 'mode': 'wifi5', 'serial': '001122090801', 'jumphost': True, - 'ip': "127.0.0.1", + 'ip': "10.28.3.100", 'username': "lanforge", 'password': "pumpkin77", - 'port': 8833, + 'port': 22, 'jumphost_tty': '/dev/ttyAP3', 'version': "https://tip.jfrog.io/artifactory/tip-wlan-ap-firmware/uCentral/tplink_ec420/20210728-tplink_ec420-uCentral-trunk-12ad0d5-upgrade.bin" } @@ -202,10 +202,10 @@ CONFIGURATION = { 'mode': 'wifi6', 'serial': '0000c1018812', 'jumphost': True, - 'ip': "localhost", + 'ip': "10.28.3.103", 'username': "lanforge", 'password': "pumpkin77", - 'port': 8999, + 'port': 22, 'jumphost_tty': '/dev/ttyAP1', 'version': "https://tip.jfrog.io/artifactory/tip-wlan-ap-firmware/uCentral/cig_wf188/20210729-cig_wf188-v2.0.0-rc2-ec3662e-upgrade.bin" } @@ -213,9 +213,9 @@ CONFIGURATION = { "traffic_generator": { "name": "lanforge", "details": { - "ip": "localhost", - "port": 8998, - "ssh_port": 8990, + "ip": "10.28.3.28", + "port": 8080, + "ssh_port": 22, "2.4G-Radio": ["1.1.wiphy0", "1.1.wiphy2"], "5G-Radio": ["1.1.wiphy1", "1.1.wiphy3"], "AX-Radio": ["1.1.wiphy4", "1.1.wiphy5", "1.1.wiphy6", "1.1.wiphy7"], @@ -552,7 +552,7 @@ CONFIGURATION = { RADIUS_SERVER_DATA = { - "ip": "10.10.10.72", + "ip": "10.10.10.180", "port": 1812, "secret": "testing123", "user": "user", @@ -561,7 +561,7 @@ RADIUS_SERVER_DATA = { } RADIUS_ACCOUNTING_DATA = { - "ip": "10.10.10.72", + "ip": "10.10.10.180", "port": 1813, "secret": "testing123", "user": "user",