1
1
"""
2
2
Performance Test: AX Capacity Test : BRIDGE Mode
3
- pytest -m "wifi_capacity_ax and wpa2_personal and bridge"
3
+ pytest -m "wifi_capacity_ax_tests and wpa2_personal and bridge"
4
4
"""
5
5
import pytest
6
6
import allure
7
7
8
- pytestmark = [pytest .mark .performance , pytest . mark . bridge , pytest .mark .wifi_capacity_ax , pytest .mark .wpa2_personal ]
8
+ pytestmark = [pytest .mark .bridge , pytest .mark .wifi_capacity_ax_tests , pytest .mark .wpa2_personal ]
9
9
setup_params_general_5G = {
10
10
"mode" : "BRIDGE" ,
11
11
"ssid_modes" : {
39
39
class TestWifiCapacityBRIDGEModeAX5G (object ):
40
40
@allure .testcase (url = "https://telecominfraproject.atlassian.net/browse/WIFI-6934" , name = "WIFI-6934" )
41
41
@pytest .mark .tcp_download
42
+ @pytest .mark .performance
42
43
@allure .title ("Single AX client TCP Download wifi capacity" )
43
44
def test_client_wpa2_bridge_tcp_dl (self , get_test_library , get_dut_logs_per_test_case ,
44
45
get_test_device_logs , num_stations , setup_configuration ,
@@ -50,7 +51,7 @@ def test_client_wpa2_bridge_tcp_dl(self, get_test_library, get_dut_logs_per_test
50
51
The 5Ghz station is configured for 80Mhz bandwidth and two spatial streams.
51
52
52
53
Markers:
53
- wifi_capacity_ax and wpa2_personal and bridge and fiveg and tcp_download
54
+ wifi_capacity_ax_tests and wpa2_personal and bridge and fiveg and tcp_download
54
55
55
56
Note:
56
57
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -64,6 +65,7 @@ def test_client_wpa2_bridge_tcp_dl(self, get_test_library, get_dut_logs_per_test
64
65
65
66
@allure .testcase (url = "https://telecominfraproject.atlassian.net/browse/WIFI-6944" , name = "WIFI-6944" )
66
67
@pytest .mark .udp_download
68
+ @pytest .mark .performance
67
69
@allure .title ("Single AX client UDP Download wifi capacity" )
68
70
def test_client_wpa2_bridge_udp_dl (self , get_test_library , get_dut_logs_per_test_case ,
69
71
get_test_device_logs , num_stations , setup_configuration ,
@@ -75,7 +77,7 @@ def test_client_wpa2_bridge_udp_dl(self, get_test_library, get_dut_logs_per_test
75
77
The 5Ghz station is configured for 80Mhz bandwidth and two spatial streams.
76
78
77
79
Markers:
78
- wifi_capacity_ax and wpa2_personal and bridge and fiveg and udp_download
80
+ wifi_capacity_ax_tests and wpa2_personal and bridge and fiveg and udp_download
79
81
80
82
Note:
81
83
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -100,7 +102,7 @@ def test_client_wpa2_bridge_tcp_bidirectional(self, get_test_library, get_dut_lo
100
102
The 5Ghz station is configured for 80Mhz bandwidth and two spatial streams.
101
103
102
104
Markers:
103
- wifi_capacity_ax and wpa2_personal and bridge and fiveg and tcp_bidirectional
105
+ wifi_capacity_ax_tests and wpa2_personal and bridge and fiveg and tcp_bidirectional
104
106
105
107
Note:
106
108
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -126,7 +128,7 @@ def test_client_wpa2_bridge_udp_bidirectional(self, get_test_library, get_dut_lo
126
128
The 5Ghz station is configured for 80Mhz bandwidth and two spatial streams.
127
129
128
130
Markers:
129
- wifi_capacity_ax and wpa2_personal and bridge and fiveg and udp_bidirectional
131
+ wifi_capacity_ax_tests and wpa2_personal and bridge and fiveg and udp_bidirectional
130
132
131
133
Note:
132
134
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -141,6 +143,7 @@ def test_client_wpa2_bridge_udp_bidirectional(self, get_test_library, get_dut_lo
141
143
142
144
@allure .testcase (url = "https://telecominfraproject.atlassian.net/browse/WIFI-6942" , name = "WIFI-6942" )
143
145
@pytest .mark .tcp_upload
146
+ @pytest .mark .performance
144
147
@allure .title ("Single AX client TCP Upload wifi capacity" )
145
148
def test_client_wpa2_bridge_tcp_ul (self , get_test_library , get_dut_logs_per_test_case ,
146
149
get_test_device_logs , num_stations , setup_configuration ,
@@ -152,7 +155,7 @@ def test_client_wpa2_bridge_tcp_ul(self, get_test_library, get_dut_logs_per_test
152
155
The 5Ghz station is configured for 80Mhz bandwidth and two spatial streams.
153
156
154
157
Markers:
155
- wifi_capacity_ax and wpa2_personal and bridge and fiveg and tcp_upload
158
+ wifi_capacity_ax_tests and wpa2_personal and bridge and fiveg and tcp_upload
156
159
157
160
Note:
158
161
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -167,6 +170,7 @@ def test_client_wpa2_bridge_tcp_ul(self, get_test_library, get_dut_logs_per_test
167
170
168
171
@allure .testcase (url = "https://telecominfraproject.atlassian.net/browse/WIFI-6945" , name = "WIFI-6945" )
169
172
@pytest .mark .udp_upload
173
+ @pytest .mark .performance
170
174
@allure .title ("Single AX client UDP Upload wifi capacity" )
171
175
def test_client_wpa2_bridge_udp_ul (self , get_test_library , get_dut_logs_per_test_case ,
172
176
get_test_device_logs , num_stations , setup_configuration ,
@@ -178,7 +182,7 @@ def test_client_wpa2_bridge_udp_ul(self, get_test_library, get_dut_logs_per_test
178
182
The 5Ghz station is configured for 80Mhz bandwidth and two spatial streams.
179
183
180
184
Markers:
181
- wifi_capacity_ax and wpa2_personal and bridge and fiveg and udp_upload
185
+ wifi_capacity_ax_tests and wpa2_personal and bridge and fiveg and udp_upload
182
186
183
187
Note:
184
188
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -225,6 +229,7 @@ def test_client_wpa2_bridge_udp_ul(self, get_test_library, get_dut_logs_per_test
225
229
class TestWifiCapacityBRIDGEModeAX2G (object ):
226
230
@allure .testcase (url = "https://telecominfraproject.atlassian.net/browse/WIFI-13284" , name = "WIFI-13284" )
227
231
@pytest .mark .tcp_download
232
+ @pytest .mark .performance
228
233
@allure .title ("Single AX client TCP Download wifi capacity" )
229
234
def test_client_wpa2_bridge_tcp_dl (self , get_test_library , get_dut_logs_per_test_case ,
230
235
get_test_device_logs , num_stations , setup_configuration ,
@@ -236,7 +241,7 @@ def test_client_wpa2_bridge_tcp_dl(self, get_test_library, get_dut_logs_per_test
236
241
The 2.4Ghz station is configured for 20Mhz bandwidth and two spatial streams.
237
242
238
243
Markers:
239
- wifi_capacity_ax and wpa2_personal and bridge and twog and tcp_download
244
+ wifi_capacity_ax_tests and wpa2_personal and bridge and twog and tcp_download
240
245
241
246
Note:
242
247
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -251,6 +256,7 @@ def test_client_wpa2_bridge_tcp_dl(self, get_test_library, get_dut_logs_per_test
251
256
252
257
@allure .testcase (url = "https://telecominfraproject.atlassian.net/browse/WIFI-13287" , name = "WIFI-13287" )
253
258
@pytest .mark .udp_download
259
+ @pytest .mark .performance
254
260
@allure .title ("Single AX client UDP Download wifi capacity" )
255
261
def test_client_wpa2_bridge_udp_dl (self , get_test_library , get_dut_logs_per_test_case ,
256
262
get_test_device_logs , num_stations , setup_configuration ,
@@ -262,7 +268,7 @@ def test_client_wpa2_bridge_udp_dl(self, get_test_library, get_dut_logs_per_test
262
268
The 2.4Ghz station is configured for 20Mhz bandwidth and two spatial streams.
263
269
264
270
Markers:
265
- wifi_capacity_ax and wpa2_personal and bridge and twog and udp_download
271
+ wifi_capacity_ax_tests and wpa2_personal and bridge and twog and udp_download
266
272
267
273
Note:
268
274
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -288,7 +294,7 @@ def test_client_wpa2_bridge_tcp_bidirectional(self, get_test_library, get_dut_lo
288
294
The 2.4Ghz station is configured for 20Mhz bandwidth and two spatial streams.
289
295
290
296
Markers:
291
- wifi_capacity_ax and wpa2_personal and bridge and twog and tcp_bidirectional
297
+ wifi_capacity_ax_tests and wpa2_personal and bridge and twog and tcp_bidirectional
292
298
293
299
Note:
294
300
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -315,7 +321,7 @@ def test_client_wpa2_bridge_udp_bidirectional(self, get_test_library, get_dut_lo
315
321
The 2.4Ghz station is configured for 20Mhz bandwidth and two spatial streams.
316
322
317
323
Markers:
318
- wifi_capacity_ax and wpa2_personal and bridge and twog and udp_bidirectional
324
+ wifi_capacity_ax_tests and wpa2_personal and bridge and twog and udp_bidirectional
319
325
320
326
Note:
321
327
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -331,6 +337,7 @@ def test_client_wpa2_bridge_udp_bidirectional(self, get_test_library, get_dut_lo
331
337
332
338
@allure .testcase (url = "https://telecominfraproject.atlassian.net/browse/WIFI-13285" , name = "WIFI-13285" )
333
339
@pytest .mark .tcp_upload
340
+ @pytest .mark .performance
334
341
@allure .title ("Single AX client TCP Upload wifi capacity" )
335
342
def test_client_wpa2_bridge_tcp_ul (self , get_test_library , get_dut_logs_per_test_case ,
336
343
get_test_device_logs , num_stations , setup_configuration ,
@@ -342,7 +349,7 @@ def test_client_wpa2_bridge_tcp_ul(self, get_test_library, get_dut_logs_per_test
342
349
The 2.4Ghz station is configured for 20Mhz bandwidth and two spatial streams.
343
350
344
351
Markers:
345
- wifi_capacity_ax and wpa2_personal and bridge and twog and tcp_upload
352
+ wifi_capacity_ax_tests and wpa2_personal and bridge and twog and tcp_upload
346
353
347
354
Note:
348
355
Please refer to the PDF report for detailed observations and analysis of the test results.
@@ -357,6 +364,7 @@ def test_client_wpa2_bridge_tcp_ul(self, get_test_library, get_dut_logs_per_test
357
364
358
365
@allure .testcase (url = "https://telecominfraproject.atlassian.net/browse/WIFI-13288" , name = "WIFI-13288" )
359
366
@pytest .mark .udp_upload
367
+ @pytest .mark .performance
360
368
@allure .title ("Single AX client UDP Upload wifi capacity" )
361
369
def test_client_wpa2_bridge_udp_ul (self , get_test_library , get_dut_logs_per_test_case ,
362
370
get_test_device_logs , num_stations , setup_configuration ,
@@ -368,7 +376,7 @@ def test_client_wpa2_bridge_udp_ul(self, get_test_library, get_dut_logs_per_test
368
376
The 2.4Ghz station is configured for 20Mhz bandwidth and two spatial streams.
369
377
370
378
Markers:
371
- wifi_capacity_ax and wpa2_personal and bridge and twog and udp_upload
379
+ wifi_capacity_ax_tests and wpa2_personal and bridge and twog and udp_upload
372
380
373
381
Note:
374
382
Please refer to the PDF report for detailed observations and analysis of the test results.
0 commit comments