-
Notifications
You must be signed in to change notification settings - Fork 107
/
browser_stack_test.py
992 lines (807 loc) · 32.9 KB
/
browser_stack_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
# -*- coding: utf-8 -*-
import argparse
import logging
import os
import random
import sys
import time
from enum import Enum
from enum import unique
from pathlib import Path
import requests
@unique
class DeviceBrand(Enum):
Samsung = 'Samsung'
Google = 'Google'
OnePlus = 'OnePlus'
Xiaomi = 'Xiaomi'
Vivo = 'Vivo'
Oppo = 'Oppo'
Motorola = 'Motorola'
Huawei = 'Huawei'
SansungTablet = 'Samsung Galaxy Tab'
@staticmethod
def to_brand(brand_str: str):
for brand in DeviceBrand:
if brand_str == brand.value:
return brand
raise Exception(f'Unknown brand {brand_str}')
@unique
class TestState(Enum):
Running = 'running'
Failed = 'failed'
Error = 'error'
TimedOut = 'timed out'
Passed = 'passed'
Queued = 'queued'
Skipped = 'skipped'
def to_state(state_str: str):
if not state_str:
return TestState.Running
state_str = state_str.lower()
for state in TestState:
if state.value == state_str:
return state
raise Exception(f'Unknown test state {state_str}')
def is_complete(self):
if self == TestState.Failed:
return True
if self == TestState.Error:
return True
if self == TestState.TimedOut:
return True
if self == TestState.Passed:
return True
if self == TestState.Skipped:
return True
return False
def is_success(self):
if self == TestState.Passed:
return True
if self == TestState.Skipped:
return True
return False
def is_running(self):
return self == TestState.Running
def is_failed(self):
return self == TestState.Failed
def is_error(self):
return self == TestState.Error
def is_timed_out(self):
return self == TestState.TimedOut
def is_passed(self):
return self == TestState.Passed
def is_queued(self):
return self == TestState.Queued
def is_skipped(self):
return self == TestState.Skipped
def __str__(self):
return self.value
API_MAP = {
'14.0': 34,
'13.0': 33,
'12.0': 31,
'11.0': 30,
'10.0': 29,
'9.0': 28,
'8.1': 27,
'8.0': 26,
'7.1': 25,
'7.1.1': 25,
'7.0': 24,
'6.0': 23,
'5.1': 22,
'5.0': 21
}
MAX_PARALLEL = 1
BUILD_QUERY_INTERVAL = 15
TEST_PROJECT = 'fake-linker'
DEVICE_LOG_ENABLE = True
BROWSER_STACK_KEY = os.environ.get('BROWSER_STACK_KEY')
MAX_TEST_DURATION = int(os.environ.get('BROWSER_TEST_MAX_DURATION', 10 * 60))
BLACK_LIST_DEVICES = [
'Samsung Galaxy S7-6.0'
]
def api_string_to_level(api_str) -> int:
return API_MAP.get(api_str, 0)
class DeviceInfo:
def __init__(self, device: str, version: str = '') -> None:
strs = device.split(' ')
self.brand: str = DeviceBrand.to_brand(strs[0])
self.name: str = device
self.api: int = api_string_to_level(version if version else strs[-1].split('-')[-1])
if version:
self.name += f'-{version}'
def is_device(self, name: str, version: str):
return self.name == f'{name}-{version}'
def __eq__(self, other):
if isinstance(other, DeviceInfo):
return self.name == other.name
return False
def __hash__(self):
return self.name.__hash__()
def __str__(self):
return self.name
class BrowserStackResponse:
def __init__(self, res: requests.Response) -> None:
self.res = res
if not res.encoding:
res.encoding = 'utf-8'
try:
self.value: dict | list[dict] | str = res.json()
except requests.exceptions.JSONDecodeError as e:
logging.debug('The request returns a non-json format %s', e)
self.value = res.text
if not res.ok:
logging.debug('request error: %s', res.text)
raise requests.exceptions.RequestException(
f'The request returned an error code: {res.status_code}, response:\n{res.text}')
logging.debug('request url:%s, response:\n%s', res.url, self.value)
def parse_value(self, name: str, default_value=None):
return self.value.get(name, default_value)
class BrowserStackBean:
def __init__(self, res: BrowserStackResponse | dict) -> None:
if isinstance(res, BrowserStackResponse):
self.data = res.value
else:
self.data = res
def parse_value(self, name: str, default_value=None):
return self.data.get(name, default_value)
def parse_time(self, name: str):
value = self.parse_value(name)
if value:
try:
s_time = time.strptime(value, '%Y-%m-%d %H:%M:%S %Z')
except ValueError:
s_time = time.strptime(value, '%Y-%m-%d %H:%M:%S %z')
return int(time.mktime(s_time))
return int(time.time())
def parse_state(self, name: str) -> TestState:
val = self.parse_value(name)
if not val:
return TestState.Running
return TestState.to_state(val)
def parse_int(self, name: str, default_value=-1):
val = self.parse_value(name, default_value)
if not val:
return default_value
return int(val)
class AppBean(BrowserStackBean):
def __init__(self, res) -> None:
super().__init__(res)
self.app_name = self.parse_value('app_name')
self.app_url = self.parse_value('app_url')
self.app_version = self.parse_value('app_version')
self.app_id = self.parse_value('app_id')
self.uploaded_at = self.parse_time('uploaded_at')
self.custom_id = self.parse_value('custom_id')
self.shareable_id = self.parse_value('shareable_id')
self.expiry = self.parse_time('expiry')
def get_app_url(self):
if self.custom_id:
return self.custom_id
if self.shareable_id:
return self.shareable_id
return self.app_url
class TestSuiteBean(BrowserStackBean):
def __init__(self, res) -> None:
super().__init__(res)
self.test_suite_name = self.parse_value('test_suite_name')
self.test_suite_url = self.parse_value('test_suite_url')
self.test_suite_id = self.parse_value('test_suite_id')
self.uploaded_at = self.parse_time('uploaded_at')
self.custom_id = self.parse_value('custom_id')
self.shareable_id = self.parse_value('shareable_id')
self.framework = self.parse_value('framework')
self.expiry = self.parse_time('expiry')
def get_test_suite_url(self):
if self.custom_id:
return self.custom_id
if self.shareable_id:
return self.shareable_id
return self.test_suite_url
class SessionBean(BrowserStackBean):
def __init__(self, res, device: DeviceInfo = None) -> None:
super().__init__(res)
self.id = self.parse_value('id')
self.status = self.parse_state('status')
self.start_time = self.parse_time('start_time')
self.duration = self.parse_int('duration')
self.testcases = self.parse_value('testcases')
self.error: dict = self.parse_value('error')
self.device = device
def is_successful_session(self):
return self.status.is_success()
def is_running_or_queued(self):
return self.status.is_running() or self.status.is_queued()
def is_skipped(self):
return self.status.is_skipped()
def is_failed_session(self):
if self.status.is_failed() or self.status.is_timed_out():
return True
if self.status.is_error() and not self.is_no_start_session():
# 过滤会话可能未开始
return True
return False
def is_no_start_session(self) -> bool:
return not self.start_time
def get_error_message(self, session: 'BrowserStackSession') -> str:
if not self.is_failed_session() and not self.is_skipped():
return ''
if not self.is_skipped():
try:
return session.get_juint_report()
except Exception:
pass
if self.error:
return self.error.get('message', 'no error message')
return 'no error message'
class BuildBean(BrowserStackBean):
def __init__(self, res) -> None:
super().__init__(res)
self.build_id = self.parse_value('build_id')
self.message = self.parse_value('message')
if not self.build_id:
self.id = self.parse_value('id')
self.start_time = self.parse_value('start_time')
self.framework = self.parse_value('framework')
if self.framework:
self.duration = self.parse_int('duration')
self.status = self.parse_state('status')
self.input_capabilities = self.parse_value('input_capabilities')
self.start_time = self.parse_time('start_time')
self.app_details = self.parse_value('app_details')
self.test_suite_details = self.parse_value('test_suite_details')
self.devices: list[dict] = self.parse_value('devices')
def parse_sessions(self, build_id: str) -> list['BrowserStackSession']:
result = []
for info in self.devices:
for session in info.get('sessions'):
device = DeviceInfo(info.get('device'), info.get('os_version'))
result.append(BrowserStackSession(build_id=build_id, session_id=session.get('id'), device=device))
return result
def parse_failed_device(self) -> list[DeviceInfo]:
result = []
for info in self.devices:
name = info.get('device')
version = info.get('os_version')
for session_info in info.get('sessions'):
session = SessionBean(session_info)
if session.is_failed_session():
result.append(DeviceInfo(f'{name}-{version}'))
break
return result
def get_all_test_device(self) -> list[DeviceInfo]:
result = []
for device in self.devices:
result.append(DeviceInfo(device.get('device'), device.get('os_version')))
return result
class BrowserStack:
_cloud_api_url = 'https://api-cloud.browserstack.com/'
def __init__(self) -> None:
self.user, self.password = BROWSER_STACK_KEY.split(':')
def post(self, url: str, files: dict = None, json_data: dict = None, headers: dict = None):
res = requests.post(BrowserStack._cloud_api_url + url, auth=(self.user, self.password),
json=json_data, headers=headers, files=files)
logging.debug(f'post request url: {url}\n\tfiles: {files}\n\tjson content: {json_data}\n\theaders:{headers}')
return BrowserStackResponse(res)
def get(self, url: str, app_id: str = '', test_suite_id: str = '', build_id: str = '', session_id: str = ''):
url = BrowserStack._cloud_api_url + url
url = url.format(app_id=app_id, test_suite_id=test_suite_id, build_id=build_id, session_id=session_id)
logging.debug(f'get request url:{url}')
return BrowserStackResponse(requests.get(url, auth=(self.user, self.password)))
def delete(self, url: str, app_id: str = '', test_suite_id: str = '', build_id: str = '', session_id: str = ''):
url = BrowserStack._cloud_api_url + url
url = url.format(app_id=app_id, test_suite_id=test_suite_id, build_id=build_id, session_id=session_id)
logging.debug(f'delete request url:{url}')
return BrowserStackResponse(requests.delete(url, auth=(self.user, self.password)))
class BrowserStackDevice(BrowserStack):
default_device = DeviceInfo('Google Pixel 8 Pro-14.0')
def __init__(self) -> None:
super().__init__()
self.devices: dict[int, list[DeviceInfo]] = {
34: [],
33: [],
32: [],
31: [],
30: [],
29: [],
28: [],
27: [],
26: [],
25: [],
24: [],
23: [],
22: [],
21: [],
}
self.init_all_devices()
def init_all_devices(self):
result: list[dict] = self.get('/app-automate/devices.json').value
for device in result:
if device.get('os') != 'android':
continue
info = DeviceInfo(device.get('device'), device.get('os_version'))
self.devices[info.api].append(info)
def random_device(self, api_level=34):
devices = self.devices.get(api_level, [])
return random.choice(devices)
def random_devices(self, apis: list[int] = [34]):
result = set()
for level in apis:
devices = self.devices.get(level)
if devices:
result.add(random.choice(devices))
return list(result)
def find_device(self, info: DeviceInfo) -> DeviceInfo:
devices: list[DeviceInfo] = self.devices.get(info.api, [])
if devices.count(info) != 0:
return info
return None
class BrowserStackApp(BrowserStack):
# POST
_upload_app_url = 'app-automate/espresso/v2/app'
# GET
_list_upload_app_url = 'app-automate/espresso/v2/apps'
# GET
_app_detail_get_url = 'app-automate/espresso/v2/apps/{app_id}'
# DELETE
_delete_app_url = 'app-automate/espresso/v2/apps/{app_id}'
def __init__(self, app_id=None, custom_id=None) -> None:
super().__init__()
self.app_id = app_id
self.custom_id = custom_id
def _get_app_id(self, aid):
app_id = aid if aid else self.app_id
if isinstance(app_id, AppBean):
return app_id.app_id
return app_id
def _get_custom_id(self, custom_id):
id = custom_id if custom_id else self.custom_id
if isinstance(id, AppBean):
return id.custom_id
return id
def update_app(self, file: Path, custom_id: AppBean | str = None) -> AppBean:
if not file.is_file():
raise FileExistsError(f'update file not exist {file}')
files = {
'file': file.open('rb')
}
custom_id = self._get_custom_id(custom_id)
if custom_id:
files['custom_id'] = (None, custom_id)
return AppBean(self.post(self._upload_app_url, files=files))
def list_upload_app(self) -> list[AppBean]:
res = self.get(self._list_upload_app_url)
return [AppBean(data) for data in res.parse_value('apps')]
def get_last_upload_app(self) -> AppBean:
apps = self.list_upload_app()
if apps:
return apps[0]
return None
def find_custom_id_app(self, custom_id: str) -> AppBean:
result = None
for app in self.list_upload_app():
if app.custom_id == custom_id:
if not result or app.uploaded_at > result.uploaded_at:
result = app
return app
def get_app_details(self, app_id: AppBean | str = None) -> AppBean:
res = self.get(self._app_detail_get_url, app_id=self._get_app_id(app_id))
return AppBean(res.parse_value('app'))
def delete_app(self, app_id: AppBean | str = None) -> bool:
try:
res = self.delete(self._delete_app_url, app_id=self._get_app_id(app_id))
return res.parse_value('success') != None
except requests.exceptions.RequestException as e:
logging.error('Delete app failed app_id: %s, error: %s', app_id, e)
return False
def delete_recent_app(self):
for app in self.list_upload_app():
logging.info('delete recent app %s result: %s', app.app_id, self.delete_app(app))
class BrowserStackTestSuite(BrowserStack):
# POST
_upload_test_suite_url = 'app-automate/espresso/v2/test-suite'
# GET
_list_test_suites_url = 'app-automate/espresso/v2/test-suites'
# GET
_test_suite_get_url = 'app-automate/espresso/v2/test-suites/{test_suite_id}'
# DELETE
_delete_test_suite_url = 'app-automate/espresso/v2/test-suites/{test_suite_id}'
def __init__(self, test_suite_id=None, custom_id=None) -> None:
super().__init__()
self.test_suite_id = test_suite_id
self.custom_id = custom_id
def _get_test_suite_id(self, tid):
suite = tid if tid else self.test_suite_id
if isinstance(suite, TestSuiteBean):
return suite.test_suite_id
return suite
def _get_custom_id(self, custom_id):
id = custom_id if custom_id else self.custom_id
if isinstance(id, TestSuiteBean):
return id.custom_id
return id
def upload_test_suite(self, file: Path, custom_id: TestSuiteBean | str = None):
if not file.is_file():
raise FileExistsError(f'update file not exist {file}')
files = {
'file': file.open('rb')
}
custom_id = self._get_custom_id(custom_id)
if custom_id:
files['custom_id'] = (None, custom_id)
return TestSuiteBean(self.post(self._upload_test_suite_url, files=files))
def list_test_suites(self) -> list[TestSuiteBean]:
res = self.get(self._list_test_suites_url)
return [TestSuiteBean(suite) for suite in res.parse_value('test_suites')]
def get_last_test_suite(self) -> TestSuiteBean:
suites = self.list_test_suites()
if len(suites) > 0:
return suites[0]
return None
def find_custom_id_test_suite(self, custom_id) -> TestSuiteBean:
result = None
for suite in self.list_test_suites():
if suite.custom_id == custom_id:
if not result or suite.uploaded_at > result.uploaded_at:
result = suite
return result
def get_test_suite_details(self, test_suite_id: TestSuiteBean | str = None) -> TestSuiteBean:
res = self.get(self._test_suite_get_url, test_suite_id=self._get_test_suite_id(test_suite_id))
return TestSuiteBean(res.parse_value('test_suite'))
def delete_test_suite(self, test_suite_id: TestSuiteBean | str = None) -> bool:
try:
res = self.delete(self._delete_test_suite_url, test_suite_id=self._get_test_suite_id(test_suite_id))
return res.parse_value('success') != None
except requests.exceptions.RequestException as e:
logging.error('Delete test suite failed id: %s, error: %s', test_suite_id, e)
return False
def delete_recent_test_suite(self):
for suite in self.list_test_suites():
logging.info('delete test suite %s result %s', suite.test_suite_id, self.delete_test_suite(suite))
class BrowserStackBuild(BrowserStack):
# POST
_espresso_build_url = 'app-automate/espresso/v2/build'
# GET
_build_state_get_url = 'app-automate/espresso/v2/builds/{build_id}'
# GET
_list_recent_builds_url = 'app-automate/espresso/v2/builds'
def __init__(self, build_id=None, app_url=None, test_suite_url=None, devices: list[DeviceInfo] = []) -> None:
super().__init__()
self.build_id: str = build_id
self.test_suite_url: str = test_suite_url
self.app_url: str = app_url
self.devices = devices
def _get_build_id(self, bid):
build = bid if bid else self.build_id
if isinstance(build, BuildBean):
return build.build_id if build.build_id else build.id
return build
def _get_app_url(self, url):
app = url if url else self.app_url
if isinstance(app, AppBean):
return app.get_app_url()
return app
def _get_test_suite_url(self, url):
suite = url if url else self.test_suite_url
if isinstance(suite, TestSuiteBean):
return suite.get_test_suite_url()
return suite
def _get_devices(self, ds: list[DeviceInfo]):
device_list = ds
if not ds:
device_list = self.devices
return [device.name for device in device_list]
def espresso_build(self, app_url: AppBean | str = None, test_suite_url: TestSuiteBean | str = None,
devices: list[DeviceInfo] = [BrowserStackDevice.default_device]) -> BuildBean:
data = {
'app': self._get_app_url(app_url),
'testSuite': self._get_test_suite_url(test_suite_url),
'devices': self._get_devices(devices)
}
if TEST_PROJECT:
data['project'] = TEST_PROJECT
if DEVICE_LOG_ENABLE:
data['deviceLogs'] = True
return BuildBean(self.post(self._espresso_build_url, json_data=data))
def get_build_state(self, build_id: BuildBean | str = None) -> BuildBean:
return BuildBean(self.get(self._build_state_get_url, build_id=self._get_build_id(build_id)))
def list_recent_builds(self) -> list[BuildBean]:
res = self.get(self._list_recent_builds_url)
return [BuildBean(build) for build in res.value]
def get_last_build_task(self) -> BuildBean:
tasks = self.list_recent_builds()
if len(tasks) > 0:
return tasks[0]
return None
@staticmethod
def split_device_chunks(devices: list[DeviceInfo], n):
"""Yield successive n-sized chunks from lst.
"""
for i in range(0, len(devices), n):
yield devices[i:i + n]
def handle_build_test(self, build_bean: BuildBean, print_log: bool, get_no_start_device: bool) -> list[DeviceInfo]:
failed_devices = []
build_state: BuildBean = None
run_duration = 0
while True:
build_state = self.get_build_state(build_bean)
if build_state.status.is_complete():
break
if run_duration >= MAX_TEST_DURATION:
logging.warning('The maximum test duration has been reached: %d', MAX_TEST_DURATION)
break
logging.info('The test task is being executed: %s, executed duration: %d', build_state.status, run_duration)
time.sleep(BUILD_QUERY_INTERVAL)
run_duration += BUILD_QUERY_INTERVAL
# 打印每个会话
for session in build_state.parse_sessions(build_state.id):
detail = session.get_session_details()
if detail.is_successful_session():
if print_log:
if detail.is_skipped():
logging.warning('Test device `%s` skipped reason: %s',
detail.device.name, detail.get_error_message(session))
else:
logging.info('Test device `%s` pass, report:\n%s', detail.device.name, session.get_juint_report())
elif detail.is_running_or_queued():
# 可能由于设备忙或无法使用,一直在运行或队列状态
if print_log:
logging.warning('The device `%s` may be busy or unavailable, status: %s', detail.device.name, detail.status)
else:
logging.error('Test device `%s` failed, error:\n%s', detail.device.name, detail.get_error_message(session))
if (detail.is_failed_session() or (get_no_start_device and detail.is_no_start_session())) and detail.device:
failed_devices.append(detail.device)
return failed_devices
def build_device_test(self, app_url: AppBean | str = None, test_suite_url: TestSuiteBean | str = None,
devices: list[DeviceInfo] = [BrowserStackDevice.default_device]) -> list[DeviceInfo]:
failed_devices = []
for split_devices in BrowserStackBuild.split_device_chunks(devices, MAX_PARALLEL * 2):
logging.info('Start testing devices: %s', '\n'.join([device.name for device in split_devices]))
build_bean = self.espresso_build(app_url, test_suite_url, split_devices)
failed_devices.extend(self.handle_build_test(build_bean, True, False))
return failed_devices
class BrowserStackSession(BrowserStack):
# GET
_session_details_get_url = 'app-automate/espresso/v2/builds/{build_id}/sessions/{session_id}'
# GET
_juint_report_get_url = 'app-automate/espresso/v2/builds/{build_id}/sessions/{session_id}/report'
# GET
_code_coverage_get_url = 'app-automate/espresso/v2/builds/{build_id}/sessions/{session_id}/coverage'
def __init__(self, build_id=None, session_id=None, device: DeviceInfo = None) -> None:
super().__init__()
self.build_id: str = build_id
self.session_id: str = session_id
self.device = device
def _get_session_id(self, sid):
session = sid if sid else self.session_id
if isinstance(session, SessionBean):
return session.id
return session
def _get_build_id(self, bid):
build = bid if bid else self.build_id
if isinstance(build, BuildBean):
return build.build_id if build.build_id else build.id
return build
def _get(self, url, build_id=None, session_id=None):
return self.get(url, build_id=self._get_build_id(build_id), session_id=self._get_session_id(session_id))
def get_session_details(self, build_id: BuildBean | str = None, session_id: SessionBean | str = None):
res = self._get(self._session_details_get_url, build_id, session_id)
return SessionBean(res, self.device)
def get_juint_report(self, build_id: BuildBean | str = None, session_id: SessionBean | str = None) -> str:
return self._get(self._juint_report_get_url, build_id, session_id).value
def get_code_coverage(self, build_id: BuildBean | str = None, session_id: SessionBean | str = None) -> bytes:
return self._get(self._code_coverage_get_url, build_id, session_id)
def get_last_build_test_failed_devices() -> list[DeviceInfo]:
try:
build = BrowserStackBuild()
task = build.get_last_build_task()
if not task:
return []
return build.handle_build_test(task, False, True)
except requests.exceptions.RequestException as e:
logging.error('get last recent build info error: %s', e)
raise e
def get_last_build_test_devices() -> list[DeviceInfo]:
build = BrowserStackBuild()
task = build.get_last_build_task()
return task.get_all_test_device()
def execute_remove_command(args):
if args.apk:
app = BrowserStackApp()
app.delete_recent_app()
if args.suite:
suite = BrowserStackTestSuite()
suite.delete_recent_test_suite()
return 0
def parse_test_devices(api: list[int], all_api: bool, names: list[str]) -> list[DeviceInfo]:
result = []
device = BrowserStackDevice()
if names:
devices = set()
for name in names:
info = device.find_device(DeviceInfo(name))
if info:
devices.add(info)
else:
logging.error('The specified device name was not found: %s', name)
result = list(devices)
elif all_api:
api = [34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 25, 24, 23, 22, 21]
result = device.random_devices(api)
else:
result = device.random_devices(api)
return result
def parse_test_app(custom_id: str, apk: Path) -> AppBean:
app = BrowserStackApp()
if apk and apk.is_file():
bean = app.update_app(apk, custom_id)
elif custom_id:
bean = app.find_custom_id_app(custom_id)
else:
bean = app.get_last_upload_app()
return bean
def parse_test_suite(custom_id: str, suite_path: Path) -> TestSuiteBean:
suite = BrowserStackTestSuite()
if suite_path and suite_path.is_file():
bean = suite.upload_test_suite(suite_path, custom_id)
elif custom_id:
bean = suite.find_custom_id_test_suite(custom_id)
else:
bean = suite.get_last_test_suite()
return bean
def execute_test_command(args):
global MAX_PARALLEL
MAX_PARALLEL = args.max_parallel
global BUILD_QUERY_INTERVAL
BUILD_QUERY_INTERVAL = args.query_interval
if args.is_32bit:
if args.apk_custom_id:
args.apk_custom_id += '32'
if args.project:
args.project += '32'
if args.test_suite_custom_id:
args.test_suite_custom_id += '32'
if args.project:
global TEST_PROJECT
TEST_PROJECT = args.project
global DEVICE_LOG_ENABLE
DEVICE_LOG_ENABLE = args.device_log
if args.get_last_build:
return len(get_last_build_test_failed_devices())
test_devices = []
if args.build_last_failed:
test_devices = get_last_build_test_failed_devices()
if not args.only_last_failed:
test_devices.extend(parse_test_devices(args.api, args.all_api, args.devices))
elif args.repeat_last:
test_devices = get_last_build_test_devices()
if not test_devices:
test_devices = parse_test_devices(args.api, args.all_api, args.devices)
test_devices = list(set(test_devices))
test_devices = [x for x in test_devices if x.name not in BLACK_LIST_DEVICES]
if not test_devices:
logging.error('There is no device to test')
return 10
app_bean = parse_test_app(args.apk_custom_id, args.apk)
if not app_bean:
logging.error('The test apk does not exist or the upload path `%s` does not exist, please upload and try again', args.apk)
return 11
suite_bean = parse_test_suite(args.test_suite_custom_id, args.test_suite)
if not suite_bean:
logging.error(
'The test suite does not exist or the upload path `%s` does not exist, please upload and try again', args.test_suite)
return 12
logging.info('The devices that need to be tested are %s', '\n'.join([x.name for x in test_devices]))
try:
build = BrowserStackBuild()
success = True
for device in build.build_device_test(app_bean, suite_bean, test_devices):
logging.error('Test failed device: %s', device.name)
success = False
return 0 if success else 13
except requests.exceptions.RequestException as e:
logging.error('test app error: %s', e)
raise e
class PathAction(argparse._StoreAction):
def __init__(self, option_strings, dest, must_exist=True, nargs=None, **kwargs) -> None:
self._must_exist = must_exist
super().__init__(option_strings, dest, nargs, **kwargs)
def check_value(self, value, option_string):
path = Path(value).resolve()
if self._must_exist and not path.exists():
name = option_string if option_string else self.dest.upper()
raise argparse.ArgumentError(self, f'input path does not exist: {name} {path}')
return path
def __call__(self, parser, namespace, values, option_string=None) -> None:
if not values:
raise argparse.ArgumentError(self, f'The required path parameter does not exist: {option_string}')
if isinstance(values, list):
paths = [self.check_value(x, option_string) for x in values]
else:
paths = self.check_value(values, option_string)
setattr(namespace, self.dest, paths)
class FileAction(PathAction):
def check_value(self, value, option_string):
p = Path(value).resolve()
if (p.exists() and not p.is_file()) or (self._must_exist and not p.is_file()):
name = option_string if option_string else self.dest.upper()
raise argparse.ArgumentError(self, f'Invalid file path input: {name} {p}')
return p
class DirectoryAction(argparse._StoreAction):
def check_value(self, value, option_string):
p = Path(value).resolve()
if (p.exists() and not p.is_dir()) or (self._must_exist and not p.is_dir()):
name = option_string if option_string else self.dest.upper()
raise argparse.ArgumentError(self, f'Invalid directory path input: {name} {p}')
return p
class RequiredAction(argparse._StoreAction):
def __init__(self, option_strings, dest, required_actions: list[argparse.Action] = [], nargs='?', **kwargs) -> None:
self._actions = required_actions
super().__init__(option_strings, dest, nargs=nargs, const=True, **kwargs)
def get_requires(self):
return self._actions
def __call__(self, parser, namespace, values, option_string=None) -> None:
return super().__call__(parser, namespace, values, option_string)
class TrueRequiredAction(RequiredAction):
def __call__(self, parser, namespace, values, option_string=None) -> None:
for action in self.get_requires():
action.required = True
super().__call__(parser, namespace, values, option_string)
class FalseRequiredAction(RequiredAction):
def __call__(self, parser, namespace, values, option_string=None):
for action in self.get_requires():
action.required = False
super().__call__(parser, namespace, values, option_string)
def parse_argument():
parser = argparse.ArgumentParser('fake_linker_browserstack_test',
description='Automated testing of the fake-linker project',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('-i', '--log', help='Show more log', action='store_true')
subparser = parser.add_subparsers(description='test subcommand')
remove_cmd = subparser.add_parser('remove', help='Remove app/test suite/build etc.')
remove_cmd.add_argument('-a', '--apk', help='Remove test apk', action='store_true')
remove_cmd.add_argument('-s', '--suite', help='Remove test suite', action='store_true')
remove_cmd.add_argument('-b', '--build', help='Remove test build', action='store_true')
remove_cmd.set_defaults(func=execute_remove_command)
test_cmd = subparser.add_parser('test', help='Run test tasks')
test_cmd.add_argument('--apk', help='apk to be tested', action=FileAction)
test_cmd.add_argument('--is-32bit', help='Specifies that the test apk is a 32-bit program', action='store_true')
test_cmd.add_argument('--apk-custom-id', help='Specify apk custom id', type=str, default='FakelinkerTestApp')
test_cmd.add_argument('--test-suite', help='specify test suite', action=FileAction)
test_cmd.add_argument('--test-suite-custom-id', help='Specify test suite custom id',
type=str, default='FakelinkerTestSuite')
test_cmd.add_argument('--api', help='Specify the api level of the test', type=int, nargs='+', default=34)
test_cmd.add_argument('--all-api', help='Execute one test per api level', action='store_true')
test_cmd.add_argument('--devices', help='Specify the name of the device to test', type=str, nargs='+')
test_cmd.add_argument('--max-parallel', help='The maximum number of parallel tests', type=int, default=5)
test_cmd.add_argument(
'--query-interval', help='Specifies the time interval for query build test tasks', type=int, default=15)
test_cmd.add_argument('--repeat-last', help='Test again with recent test apk and test suite', action='store_true')
test_cmd.add_argument('--get-last-build', help='Get recent build test information', action='store_true')
test_cmd.add_argument('--build-last-failed',
help='Select the device that failed the upload test to test again', action='store_true')
test_cmd.add_argument('--only-last-failed',
help='Test only the device that failed the upload test', action='store_true')
test_cmd.add_argument('--project', help='Set test project name', type=str, default='fake-linker')
test_cmd.add_argument('--device-log', help='Open test task log', action='store_true')
test_cmd.set_defaults(func=execute_test_command)
args = parser.parse_args()
args.print_help = parser.print_help
logging.basicConfig(level=logging.DEBUG if args.log else logging.INFO, format='%(levelname)s: %(message)s')
return args
def main():
args = parse_argument()
if not BROWSER_STACK_KEY:
logging.error('Please set BROWSER_STACK_KEY environment variable')
return 1
if hasattr(args, 'func'):
return args.func(args)
args.print_help()
return 2
if __name__ == '__main__':
try:
sys.exit(main())
except KeyboardInterrupt:
pass