mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-11-18 20:05:02 +00:00
Fixed the peak_throughput tests and added run_lf argument
Signed-off-by: shivam <shivam.thakur@candelatech.com>
This commit is contained in:
@@ -173,28 +173,30 @@ def get_markers(request, get_security_flags):
|
||||
|
||||
|
||||
@pytest.fixture(scope="session")
|
||||
def get_target_object(request, get_testbed_details, add_allure_environment_property: Callable) -> None:
|
||||
def get_target_object(request, run_lf, get_testbed_details, add_allure_environment_property: Callable) -> None:
|
||||
"""yields the testbed option selection"""
|
||||
|
||||
t_object = None
|
||||
try:
|
||||
t_object = target(controller_data=get_testbed_details["controller"], target=get_testbed_details["target"], configuration=configuration,
|
||||
device_under_tests_info=get_testbed_details["device_under_tests"])
|
||||
if not request.config.getoption("--skip-env"):
|
||||
if get_testbed_details["target"] == "tip_2x":
|
||||
t_object.setup_environment_properties(add_allure_environment_property=
|
||||
add_allure_environment_property)
|
||||
if not run_lf:
|
||||
try:
|
||||
t_object = target(controller_data=get_testbed_details["controller"], target=get_testbed_details["target"], configuration=configuration,
|
||||
device_under_tests_info=get_testbed_details["device_under_tests"])
|
||||
if not request.config.getoption("--skip-env"):
|
||||
if get_testbed_details["target"] == "tip_2x":
|
||||
t_object.setup_environment_properties(add_allure_environment_property=
|
||||
add_allure_environment_property)
|
||||
|
||||
except Exception as e:
|
||||
t_object = None
|
||||
logging.error(
|
||||
"Exception is setting up Target Library Object: " + str(e) + " Check the lab_info.json for the Data and ")
|
||||
pytest.exit("Exception is setting up Target Library Object: " + str(e))
|
||||
except Exception as e:
|
||||
t_object = None
|
||||
logging.error(
|
||||
"Exception is setting up Target Library Object: " + str(e) + " Check the lab_info.json for the Data and ")
|
||||
pytest.exit("Exception is setting up Target Library Object: " + str(e))
|
||||
|
||||
def teardown_target():
|
||||
if t_object is not None:
|
||||
t_object.teardown_objects()
|
||||
def teardown_target():
|
||||
if t_object is not None:
|
||||
t_object.teardown_objects()
|
||||
|
||||
request.addfinalizer(teardown_target)
|
||||
request.addfinalizer(teardown_target)
|
||||
yield t_object
|
||||
|
||||
|
||||
@@ -298,25 +300,26 @@ def add_allure_environment_property(request: SubRequest) -> Optional[Callable]:
|
||||
|
||||
|
||||
@pytest.fixture(scope="function")
|
||||
def get_dut_logs_per_test_case(request, get_testbed_details, get_target_object):
|
||||
S = 9
|
||||
instance_name = ''.join(random.choices(string.ascii_uppercase + string.digits, k=S))
|
||||
for i in range(len(get_testbed_details["device_under_tests"])):
|
||||
get_target_object.get_dut_library_object().run_generic_command(cmd="logger start testcase: " + instance_name,
|
||||
idx=i)
|
||||
|
||||
def collect_logs():
|
||||
def get_dut_logs_per_test_case(request, run_lf, get_testbed_details, get_target_object):
|
||||
if not run_lf:
|
||||
S = 9
|
||||
instance_name = ''.join(random.choices(string.ascii_uppercase + string.digits, k=S))
|
||||
for i in range(len(get_testbed_details["device_under_tests"])):
|
||||
get_target_object.get_dut_library_object().run_generic_command(
|
||||
cmd="logger stop testcase: " + instance_name,
|
||||
idx=i)
|
||||
ap_logs = get_target_object.get_dut_library_object().get_logread(
|
||||
start_ref="start testcase: " + instance_name,
|
||||
stop_ref="stop testcase: " + instance_name)
|
||||
allure.attach(name='Logs - ' + get_testbed_details["device_under_tests"][i]["identifier"],
|
||||
body=str(ap_logs))
|
||||
get_target_object.get_dut_library_object().run_generic_command(cmd="logger start testcase: " + instance_name,
|
||||
idx=i)
|
||||
|
||||
request.addfinalizer(collect_logs)
|
||||
def collect_logs():
|
||||
for i in range(len(get_testbed_details["device_under_tests"])):
|
||||
get_target_object.get_dut_library_object().run_generic_command(
|
||||
cmd="logger stop testcase: " + instance_name,
|
||||
idx=i)
|
||||
ap_logs = get_target_object.get_dut_library_object().get_logread(
|
||||
start_ref="start testcase: " + instance_name,
|
||||
stop_ref="stop testcase: " + instance_name)
|
||||
allure.attach(name='Logs - ' + get_testbed_details["device_under_tests"][i]["identifier"],
|
||||
body=str(ap_logs))
|
||||
|
||||
request.addfinalizer(collect_logs)
|
||||
|
||||
|
||||
@pytest.fixture(scope="function")
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -26,7 +26,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -158,7 +158,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_40
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -289,7 +289,7 @@ setup_params_general3 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -421,7 +421,7 @@ setup_params_general4 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_48
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -553,7 +553,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -685,7 +685,7 @@ setup_params_general6 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_56
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -817,7 +817,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -951,7 +951,7 @@ setup_params_general8 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_64
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1084,7 +1084,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1216,7 +1216,7 @@ setup_params_general10 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_104
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1349,7 +1349,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1482,7 +1482,7 @@ setup_params_general12 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_112
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1615,7 +1615,7 @@ setup_params_general13 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_116
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1748,7 +1748,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_114
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1879,7 +1879,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -2011,7 +2011,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
[setup_params_general16],
|
||||
@@ -2141,7 +2141,7 @@ setup_params_general17 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_144
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -159,7 +159,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -263,7 +263,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -395,7 +395,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -528,7 +528,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -661,7 +661,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -794,7 +794,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -926,7 +926,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1058,7 +1058,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_140
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -160,7 +160,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -293,7 +293,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -426,7 +426,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -26,7 +26,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -158,7 +158,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_40
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -289,7 +289,7 @@ setup_params_general3 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -421,7 +421,7 @@ setup_params_general4 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_48
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -553,7 +553,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -685,7 +685,7 @@ setup_params_general6 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_56
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -817,7 +817,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -951,7 +951,7 @@ setup_params_general8 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_64
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1084,7 +1084,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1216,7 +1216,7 @@ setup_params_general10 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_104
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1349,7 +1349,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1482,7 +1482,7 @@ setup_params_general12 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_112
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1615,7 +1615,7 @@ setup_params_general13 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_116
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1748,7 +1748,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_114
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1879,7 +1879,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -2011,7 +2011,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
[setup_params_general16],
|
||||
@@ -2141,7 +2141,7 @@ setup_params_general17 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_144
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -159,7 +159,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -263,7 +263,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -395,7 +395,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -528,7 +528,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -661,7 +661,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -794,7 +794,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -926,7 +926,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1058,7 +1058,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_140
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -160,7 +160,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -293,7 +293,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -426,7 +426,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -26,7 +26,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -158,7 +158,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_40
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -289,7 +289,7 @@ setup_params_general3 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -421,7 +421,7 @@ setup_params_general4 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_48
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -553,7 +553,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -685,7 +685,7 @@ setup_params_general6 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_56
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -817,7 +817,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -951,7 +951,7 @@ setup_params_general8 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_64
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1084,7 +1084,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1216,7 +1216,7 @@ setup_params_general10 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_104
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1349,7 +1349,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1482,7 +1482,7 @@ setup_params_general12 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_112
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1615,7 +1615,7 @@ setup_params_general13 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_116
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1748,7 +1748,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_114
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1879,7 +1879,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -2011,7 +2011,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
[setup_params_general16],
|
||||
@@ -2141,7 +2141,7 @@ setup_params_general17 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_144
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -159,7 +159,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -263,7 +263,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -395,7 +395,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -528,7 +528,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -661,7 +661,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -794,7 +794,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -926,7 +926,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1058,7 +1058,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_140
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -160,7 +160,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -293,7 +293,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -426,7 +426,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -26,7 +26,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -158,7 +158,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_40
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -289,7 +289,7 @@ setup_params_general3 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -421,7 +421,7 @@ setup_params_general4 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_48
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -553,7 +553,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -685,7 +685,7 @@ setup_params_general6 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_56
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -817,7 +817,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -951,7 +951,7 @@ setup_params_general8 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_64
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1084,7 +1084,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1216,7 +1216,7 @@ setup_params_general10 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_104
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1349,7 +1349,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1482,7 +1482,7 @@ setup_params_general12 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_112
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1615,7 +1615,7 @@ setup_params_general13 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_116
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1748,7 +1748,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_114
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1879,7 +1879,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -2011,7 +2011,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
[setup_params_general16],
|
||||
@@ -2141,7 +2141,7 @@ setup_params_general17 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_144
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -159,7 +159,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -263,7 +263,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -395,7 +395,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -528,7 +528,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -661,7 +661,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -794,7 +794,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -926,7 +926,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1058,7 +1058,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_140
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -160,7 +160,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -293,7 +293,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -426,7 +426,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
@@ -26,7 +26,7 @@ setup_params_general_1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_1
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -158,7 +158,7 @@ setup_params_general_2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_2
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -167,7 +167,7 @@ setup_params_general_2 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class Test20Mhz2GChannel1PeakThroughput(object):
|
||||
class Test20Mhz2GChannel2PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -290,7 +290,7 @@ setup_params_general_3 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_3
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -422,7 +422,7 @@ setup_params_general_4 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_3
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -554,7 +554,7 @@ setup_params_general_5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_3
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -686,7 +686,7 @@ setup_params_general_6 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_6
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -818,7 +818,7 @@ setup_params_general_7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_7
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -827,7 +827,7 @@ setup_params_general_7 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA20Mhz2GChannel7PeakThroughput(object):
|
||||
class Test20Mhz2GChannel7PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -950,7 +950,7 @@ setup_params_general_8 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_8
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -959,7 +959,7 @@ setup_params_general_8 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA20Mhz2GChannel60PeakThroughput(object):
|
||||
class Test20Mhz2GChannel8PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -1077,13 +1077,13 @@ setup_params_general_9 = {
|
||||
'band': '2G',
|
||||
|
||||
'channel-width': 20,
|
||||
"channel": 60}
|
||||
"channel": 9}
|
||||
},
|
||||
"radius": False
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_9
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1092,7 +1092,7 @@ setup_params_general_9 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA20Mhz2GChannel60PeakThroughput(object):
|
||||
class Test20Mhz2GChannel9PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -1209,13 +1209,13 @@ setup_params_general_10 = {
|
||||
"2G": {
|
||||
'band': '2G',
|
||||
'channel-width': 20,
|
||||
"channel": 60}
|
||||
"channel": 10}
|
||||
},
|
||||
"radius": False
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_10
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1224,7 +1224,7 @@ setup_params_general_10 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA20Mhz2GChannel10PeakThroughput(object):
|
||||
class Test20Mhz2GChannel10PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -1347,7 +1347,7 @@ setup_params_general_11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_11
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1356,7 +1356,7 @@ setup_params_general_11 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA20Mhz2GChannel11PeakThroughput(object):
|
||||
class Test20Mhz2GChannel11PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
|
||||
@@ -26,7 +26,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -158,7 +158,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_40
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -289,7 +289,7 @@ setup_params_general3 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -421,7 +421,7 @@ setup_params_general4 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_48
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -553,7 +553,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -685,7 +685,7 @@ setup_params_general6 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_56
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -817,7 +817,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -951,7 +951,7 @@ setup_params_general8 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_64
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1084,7 +1084,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1216,7 +1216,7 @@ setup_params_general10 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_104
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1349,7 +1349,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1482,7 +1482,7 @@ setup_params_general12 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_112
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1615,7 +1615,7 @@ setup_params_general13 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_116
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1748,7 +1748,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_114
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1879,7 +1879,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -2011,7 +2011,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
[setup_params_general16],
|
||||
@@ -2141,7 +2141,7 @@ setup_params_general17 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_144
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
@@ -26,7 +26,7 @@ setup_params_general_1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_1
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -35,7 +35,7 @@ setup_params_general_1 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class Test40Mhz2GChannel1PeakThroughput(object):
|
||||
class Test20Mhz2GChannel1PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -158,7 +158,7 @@ setup_params_general_2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_2
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -167,7 +167,7 @@ setup_params_general_2 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class Test40Mhz2GChannel1PeakThroughput(object):
|
||||
class Test20Mhz2GChannel2PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -290,7 +290,7 @@ setup_params_general_3 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_3
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -299,7 +299,7 @@ setup_params_general_3 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class Test40Mhz2GChannel3PeakThroughput(object):
|
||||
class Test20Mhz2GChannel3PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -422,7 +422,7 @@ setup_params_general_4 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_3
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -431,7 +431,7 @@ setup_params_general_4 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class Test40Mhz2GChannel4PeakThroughput(object):
|
||||
class Test20Mhz2GChannel4PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -554,7 +554,7 @@ setup_params_general_5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_3
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -563,7 +563,7 @@ setup_params_general_5 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class Test40Mhz2GChannel5PeakThroughput(object):
|
||||
class Test20Mhz2GChannel5PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -686,7 +686,7 @@ setup_params_general_6 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_6
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -695,7 +695,7 @@ setup_params_general_6 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class Test40Mhz2GChannel6PeakThroughput(object):
|
||||
class Test20Mhz2GChannel6PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -818,7 +818,7 @@ setup_params_general_7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_7
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -827,7 +827,7 @@ setup_params_general_7 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA40Mhz2GChannel7PeakThroughput(object):
|
||||
class Test20Mhz2GChannel7PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -950,7 +950,7 @@ setup_params_general_8 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_8
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -959,7 +959,7 @@ setup_params_general_8 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA40Mhz2GChannel60PeakThroughput(object):
|
||||
class Test20Mhz2GChannel8PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -1077,13 +1077,13 @@ setup_params_general_9 = {
|
||||
'band': '2G',
|
||||
|
||||
'channel-width': 40,
|
||||
"channel": 60}
|
||||
"channel": 9}
|
||||
},
|
||||
"radius": False
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_9
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1092,7 +1092,7 @@ setup_params_general_9 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA40Mhz2GChannel60PeakThroughput(object):
|
||||
class Test20Mhz2GChannel9PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -1209,13 +1209,13 @@ setup_params_general_10 = {
|
||||
"2G": {
|
||||
'band': '2G',
|
||||
'channel-width': 40,
|
||||
"channel": 60}
|
||||
"channel": 10}
|
||||
},
|
||||
"radius": False
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_10
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1224,7 +1224,7 @@ setup_params_general_10 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA40Mhz2GChannel10PeakThroughput(object):
|
||||
class Test20Mhz2GChannel10PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
@@ -1347,7 +1347,7 @@ setup_params_general_11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_11
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1356,7 +1356,7 @@ setup_params_general_11 = {
|
||||
scope="class"
|
||||
)
|
||||
@pytest.mark.usefixtures("setup_configuration")
|
||||
class TestCountryCA40Mhz2GChannel11PeakThroughput(object):
|
||||
class Test20Mhz2GChannel11PeakThroughput(object):
|
||||
"""Country code along with Channel and Channel-width Test Bridge mode
|
||||
pytest -m "country_code and Bridge"
|
||||
"""
|
||||
|
||||
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -159,7 +159,7 @@ setup_params_general2 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_44
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -263,7 +263,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -395,7 +395,7 @@ setup_params_general7 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_60
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -528,7 +528,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -661,7 +661,7 @@ setup_params_general11 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_108
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -794,7 +794,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -926,7 +926,7 @@ setup_params_general15 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_136
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -1058,7 +1058,7 @@ setup_params_general16 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_140
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
@@ -27,7 +27,7 @@ setup_params_general1 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_36
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -160,7 +160,7 @@ setup_params_general5 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_52
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -293,7 +293,7 @@ setup_params_general9 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_100
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
@@ -426,7 +426,7 @@ setup_params_general14 = {
|
||||
}
|
||||
|
||||
|
||||
@allure.feature("BRIDGE MODE CLIENT CONNECTIVITY")
|
||||
@allure.feature("PEAK THROUGHPUT TESTS")
|
||||
@pytest.mark.channel_132
|
||||
@pytest.mark.parametrize(
|
||||
'setup_configuration',
|
||||
|
||||
@@ -2,6 +2,75 @@
|
||||
{
|
||||
|
||||
"CONFIGURATION" : {
|
||||
"basic-shivam" : {
|
||||
"target": "tip_2x",
|
||||
"controller" : {
|
||||
"url": "https://sec-qa01.cicd.lab.wlan.tip.build:16001",
|
||||
"username": "tip@ucentral.com",
|
||||
"password": "OpenWifi%123"
|
||||
},
|
||||
"device_under_tests": [{
|
||||
"model": "edgecore_eap101",
|
||||
"supported_bands": ["2G", "5G"],
|
||||
"supported_modes": ["BRIDGE", "NAT", "VLAN"],
|
||||
"wan_port": "1.1.eth3",
|
||||
"lan_port": null,
|
||||
"ssid": {
|
||||
"2g-ssid": "OpenWifi",
|
||||
"5g-ssid": "OpenWifi",
|
||||
"6g-ssid": "OpenWifi",
|
||||
"2g-password": "OpenWifi",
|
||||
"5g-password": "OpenWifi",
|
||||
"6g-password": "OpenWifi",
|
||||
"2g-encryption": "WPA2",
|
||||
"5g-encryption": "WPA2",
|
||||
"6g-encryption": "WPA3",
|
||||
"2g-bssid": "68:7d:b4:5f:5c:31",
|
||||
"5g-bssid": "68:7d:b4:5f:5c:3c",
|
||||
"6g-bssid": "68:7d:b4:5f:5c:38"
|
||||
},
|
||||
"mode": "wifi6",
|
||||
"identifier": "903cb36c4301",
|
||||
"method": "serial",
|
||||
"host_ip": "192.168.52.89",
|
||||
"host_username": "lanforge",
|
||||
"host_password": "lanforge",
|
||||
"host_ssh_port": 22 ,
|
||||
"serial_tty": "/dev/ttyUSB0",
|
||||
"firmware_version": "next-latest"
|
||||
}],
|
||||
"traffic_generator": {
|
||||
"name": "lanforge",
|
||||
"testbed": "basic",
|
||||
"scenario": "dhcp-bridge",
|
||||
"details": {
|
||||
"manager_ip": "192.168.52.89",
|
||||
"http_port": 8080 ,
|
||||
"ssh_port": 22 ,
|
||||
"setup": {"method": "build", "DB": "Test_Scenario_Automation"},
|
||||
"wan_ports": {
|
||||
"1.1.eth3": {"addressing": "dhcp-server", "subnet": "172.16.0.1/16", "dhcp": {
|
||||
"lease-first": 10,
|
||||
"lease-count": 10000,
|
||||
"lease-time": "6h"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lan_ports": {
|
||||
|
||||
},
|
||||
"uplink_nat_ports": {
|
||||
"1.1.eth2": {
|
||||
"addressing": "static",
|
||||
"ip": "192.168.52.150",
|
||||
"gateway_ip": "192.168.52.1/24",
|
||||
"ip_mask": "255.255.255.0",
|
||||
"dns_servers": "BLANK"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"basic-01" : {
|
||||
"target": "tip_2x",
|
||||
"controller" : {
|
||||
@@ -868,11 +937,11 @@
|
||||
}
|
||||
},
|
||||
"RADIUS_SERVER_DATA" : {
|
||||
"ip": "10.28.3.100",
|
||||
"ip": "10.10.1.221",
|
||||
"port": 1812,
|
||||
"secret": "testing123",
|
||||
"user": "nolaradius",
|
||||
"password": "nolastart",
|
||||
"user": "user",
|
||||
"password": "password",
|
||||
"pk_password": "whatever"
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user