2020-04-20 02:30:31 -04:00
|
|
|
import argparse
|
2020-06-19 02:45:46 -04:00
|
|
|
import errno
|
2020-04-20 02:30:31 -04:00
|
|
|
import json
|
2020-06-29 06:11:49 -04:00
|
|
|
import logging
|
2020-04-20 02:30:31 -04:00
|
|
|
import os
|
|
|
|
from collections import defaultdict
|
|
|
|
|
|
|
|
from find_apps import find_apps
|
2020-06-19 06:58:03 -04:00
|
|
|
from find_build_apps import BUILD_SYSTEMS, BUILD_SYSTEM_CMAKE
|
2020-07-21 04:59:31 -04:00
|
|
|
from ttfw_idf.IDFAssignTest import ExampleAssignTest, TestAppsAssignTest
|
2020-04-20 02:30:31 -04:00
|
|
|
|
|
|
|
VALID_TARGETS = [
|
|
|
|
'esp32',
|
|
|
|
'esp32s2',
|
|
|
|
]
|
|
|
|
|
2020-06-29 06:11:49 -04:00
|
|
|
TEST_LABELS = {
|
|
|
|
'example_test': 'BOT_LABEL_EXAMPLE_TEST',
|
|
|
|
'test_apps': 'BOT_LABEL_CUSTOM_TEST',
|
|
|
|
}
|
|
|
|
|
|
|
|
BUILD_ALL_LABELS = [
|
|
|
|
'BOT_LABEL_BUILD_ALL_APPS',
|
|
|
|
'BOT_LABEL_REGULAR_TEST',
|
2020-04-20 02:30:31 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2020-06-29 06:11:49 -04:00
|
|
|
def _has_build_all_label():
|
|
|
|
for label in BUILD_ALL_LABELS:
|
|
|
|
if os.getenv(label):
|
|
|
|
return True
|
|
|
|
return False
|
2020-06-19 02:45:46 -04:00
|
|
|
|
2020-04-20 02:30:31 -04:00
|
|
|
|
2020-06-29 06:11:49 -04:00
|
|
|
def _judge_build_or_not(action, build_all): # type: (str, bool) -> (bool, bool)
|
|
|
|
"""
|
|
|
|
:return: (build_or_not_for_test_related_apps, build_or_not_for_non_related_apps)
|
|
|
|
"""
|
|
|
|
if build_all or _has_build_all_label() or (not os.getenv('BOT_TRIGGER_WITH_LABEL')):
|
|
|
|
logging.info('Build all apps')
|
|
|
|
return True, True
|
2020-04-20 02:30:31 -04:00
|
|
|
|
2020-06-29 06:11:49 -04:00
|
|
|
if os.getenv(TEST_LABELS[action]):
|
|
|
|
logging.info('Build test cases apps')
|
|
|
|
return True, False
|
|
|
|
else:
|
|
|
|
logging.info('Skip all')
|
|
|
|
return False, False
|
|
|
|
|
|
|
|
|
|
|
|
def output_json(apps_dict_list, target, build_system, output_dir):
|
|
|
|
output_path = os.path.join(output_dir, 'scan_{}_{}.json'.format(target.lower(), build_system))
|
|
|
|
with open(output_path, 'w') as fw:
|
|
|
|
fw.writelines([json.dumps(app) + '\n' for app in apps_dict_list])
|
2020-04-20 02:30:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description='Scan the required build tests')
|
2020-06-29 06:11:49 -04:00
|
|
|
parser.add_argument('test_type',
|
|
|
|
choices=TEST_LABELS.keys(),
|
|
|
|
help='Scan test type')
|
|
|
|
parser.add_argument('paths',
|
2020-06-28 01:56:04 -04:00
|
|
|
nargs='+',
|
2020-06-29 06:11:49 -04:00
|
|
|
help='One or more app paths')
|
|
|
|
parser.add_argument('-b', '--build-system',
|
2020-06-28 01:56:04 -04:00
|
|
|
choices=BUILD_SYSTEMS.keys(),
|
|
|
|
default=BUILD_SYSTEM_CMAKE)
|
2020-06-29 06:11:49 -04:00
|
|
|
parser.add_argument('-c', '--ci-config-file',
|
2020-06-28 01:56:04 -04:00
|
|
|
required=True,
|
2020-06-19 02:45:46 -04:00
|
|
|
help="gitlab ci config target-test file")
|
2020-06-29 06:11:49 -04:00
|
|
|
parser.add_argument('-o', '--output-path',
|
2020-06-28 01:56:04 -04:00
|
|
|
required=True,
|
2020-04-20 02:30:31 -04:00
|
|
|
help="output path of the scan result")
|
2020-06-29 06:11:49 -04:00
|
|
|
parser.add_argument("--exclude",
|
2020-06-28 01:56:04 -04:00
|
|
|
action="append",
|
2020-06-29 06:11:49 -04:00
|
|
|
help='Ignore specified directory. Can be used multiple times.')
|
|
|
|
parser.add_argument('--preserve', action="store_true",
|
2020-04-20 02:30:31 -04:00
|
|
|
help='add this flag to preserve artifacts for all apps')
|
2020-06-29 06:11:49 -04:00
|
|
|
parser.add_argument('--build-all', action="store_true",
|
2020-06-19 02:45:46 -04:00
|
|
|
help='add this flag to build all apps')
|
2020-04-20 02:30:31 -04:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
2020-06-29 06:11:49 -04:00
|
|
|
build_test_case_apps, build_standalone_apps = _judge_build_or_not(args.test_type, args.build_all)
|
|
|
|
|
|
|
|
if not os.path.exists(args.output_path):
|
|
|
|
try:
|
|
|
|
os.makedirs(args.output_path)
|
|
|
|
except OSError as e:
|
|
|
|
if e.errno != errno.EEXIST:
|
|
|
|
raise e
|
|
|
|
|
|
|
|
if (not build_standalone_apps) and (not build_test_case_apps):
|
|
|
|
for target in VALID_TARGETS:
|
|
|
|
output_json([], target, args.build_system, args.output_path)
|
|
|
|
SystemExit(0)
|
2020-04-20 02:30:31 -04:00
|
|
|
|
|
|
|
test_cases = []
|
2020-06-29 06:11:49 -04:00
|
|
|
for path in set(args.paths):
|
|
|
|
if args.test_type == 'example_test':
|
2020-07-21 04:59:31 -04:00
|
|
|
assign = ExampleAssignTest(path, args.ci_config_file)
|
2020-06-29 06:11:49 -04:00
|
|
|
elif args.test_type == 'test_apps':
|
2020-07-21 04:59:31 -04:00
|
|
|
assign = TestAppsAssignTest(path, args.ci_config_file)
|
2020-04-20 02:30:31 -04:00
|
|
|
else:
|
|
|
|
raise SystemExit(1) # which is impossible
|
|
|
|
|
|
|
|
test_cases.extend(assign.search_cases())
|
|
|
|
|
|
|
|
'''
|
|
|
|
{
|
|
|
|
<target>: {
|
2020-06-19 06:58:03 -04:00
|
|
|
'test_case_apps': [<app_dir>], # which is used in target tests
|
|
|
|
'standalone_apps': [<app_dir>], # which is not
|
2020-04-20 02:30:31 -04:00
|
|
|
},
|
|
|
|
...
|
|
|
|
}
|
|
|
|
'''
|
|
|
|
scan_info_dict = defaultdict(dict)
|
|
|
|
# store the test cases dir, exclude these folders when scan for standalone apps
|
2020-06-28 01:56:04 -04:00
|
|
|
default_exclude = args.exclude if args.exclude else []
|
|
|
|
exclude_apps = default_exclude
|
2020-04-20 02:30:31 -04:00
|
|
|
|
2020-06-19 06:58:03 -04:00
|
|
|
build_system = args.build_system.lower()
|
|
|
|
build_system_class = BUILD_SYSTEMS[build_system]
|
|
|
|
|
2020-06-29 06:11:49 -04:00
|
|
|
if build_test_case_apps:
|
|
|
|
for target in VALID_TARGETS:
|
|
|
|
target_dict = scan_info_dict[target]
|
|
|
|
test_case_apps = target_dict['test_case_apps'] = set()
|
|
|
|
for case in test_cases:
|
|
|
|
app_dir = case.case_info['app_dir']
|
|
|
|
app_target = case.case_info['target']
|
|
|
|
if app_target.lower() != target.lower():
|
|
|
|
continue
|
|
|
|
test_case_apps.update(find_apps(build_system_class, app_dir, True, default_exclude, target.lower()))
|
|
|
|
exclude_apps.append(app_dir)
|
|
|
|
else:
|
|
|
|
for target in VALID_TARGETS:
|
|
|
|
scan_info_dict[target]['test_case_apps'] = set()
|
|
|
|
|
|
|
|
if build_standalone_apps:
|
|
|
|
for target in VALID_TARGETS:
|
|
|
|
target_dict = scan_info_dict[target]
|
|
|
|
standalone_apps = target_dict['standalone_apps'] = set()
|
|
|
|
for path in args.paths:
|
|
|
|
standalone_apps.update(find_apps(build_system_class, path, True, exclude_apps, target.lower()))
|
|
|
|
else:
|
|
|
|
for target in VALID_TARGETS:
|
|
|
|
scan_info_dict[target]['standalone_apps'] = set()
|
2020-04-20 02:30:31 -04:00
|
|
|
|
2020-06-19 06:58:03 -04:00
|
|
|
test_case_apps_preserve_default = True if build_system == 'cmake' else False
|
2020-04-20 02:30:31 -04:00
|
|
|
for target in VALID_TARGETS:
|
|
|
|
apps = []
|
|
|
|
for app_dir in scan_info_dict[target]['test_case_apps']:
|
|
|
|
apps.append({
|
|
|
|
'app_dir': app_dir,
|
2020-06-28 01:56:04 -04:00
|
|
|
'build_system': args.build_system,
|
|
|
|
'target': target,
|
2020-06-19 06:58:03 -04:00
|
|
|
'preserve': args.preserve or test_case_apps_preserve_default
|
2020-04-20 02:30:31 -04:00
|
|
|
})
|
|
|
|
for app_dir in scan_info_dict[target]['standalone_apps']:
|
|
|
|
apps.append({
|
|
|
|
'app_dir': app_dir,
|
2020-06-28 01:56:04 -04:00
|
|
|
'build_system': args.build_system,
|
|
|
|
'target': target,
|
2020-06-29 06:11:49 -04:00
|
|
|
'preserve': args.preserve
|
2020-04-20 02:30:31 -04:00
|
|
|
})
|
2020-06-19 06:58:03 -04:00
|
|
|
output_path = os.path.join(args.output_path, 'scan_{}_{}.json'.format(target.lower(), build_system))
|
2020-06-28 01:56:04 -04:00
|
|
|
with open(output_path, 'w') as fw:
|
|
|
|
fw.writelines([json.dumps(app) + '\n' for app in apps])
|
2020-04-20 02:30:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|