ci: save built binaries could be tested locally:

we have some test cases not executed in CI. we need to save those
binaries as artifacts so we can test locally.
This commit is contained in:
He Yin Ling
2021-05-13 16:26:08 +08:00
parent 8cc4cd775e
commit 016a37c8ad
2 changed files with 24 additions and 10 deletions

View File

@@ -190,7 +190,6 @@ tools/ci/python_packages/tiny_test_fw/Utility/TestCase.py
tools/ci/python_packages/tiny_test_fw/bin/Runner.py tools/ci/python_packages/tiny_test_fw/bin/Runner.py
tools/ci/python_packages/tiny_test_fw/bin/example.py tools/ci/python_packages/tiny_test_fw/bin/example.py
tools/ci/python_packages/tiny_test_fw/docs/conf.py tools/ci/python_packages/tiny_test_fw/docs/conf.py
tools/ci/python_packages/ttfw_idf/CIScanTests.py
tools/ci/python_packages/ttfw_idf/DebugUtils.py tools/ci/python_packages/ttfw_idf/DebugUtils.py
tools/ci/python_packages/ttfw_idf/IDFApp.py tools/ci/python_packages/ttfw_idf/IDFApp.py
tools/ci/python_packages/ttfw_idf/IDFAssignTest.py tools/ci/python_packages/ttfw_idf/IDFAssignTest.py

View File

@@ -6,6 +6,11 @@ import os
from collections import defaultdict from collections import defaultdict
from copy import deepcopy from copy import deepcopy
try:
from typing import Any
except ImportError:
# Only used for type annotations
pass
from find_apps import find_apps from find_apps import find_apps
from find_build_apps import BUILD_SYSTEM_CMAKE, BUILD_SYSTEMS from find_build_apps import BUILD_SYSTEM_CMAKE, BUILD_SYSTEMS
from idf_py_actions.constants import PREVIEW_TARGETS, SUPPORTED_TARGETS from idf_py_actions.constants import PREVIEW_TARGETS, SUPPORTED_TARGETS
@@ -28,14 +33,14 @@ BUILD_ALL_LABELS = [
] ]
def _has_build_all_label(): def _has_build_all_label(): # type: () -> bool
for label in BUILD_ALL_LABELS: for label in BUILD_ALL_LABELS:
if os.getenv(label): if os.getenv(label):
return True return True
return False return False
def _judge_build_or_not(action, build_all): # type: (str, bool) -> (bool, bool) def _judge_build_or_not(action, build_all): # type: (str, bool) -> tuple[bool, bool]
""" """
:return: (build_or_not_for_test_related_apps, build_or_not_for_non_related_apps) :return: (build_or_not_for_test_related_apps, build_or_not_for_non_related_apps)
""" """
@@ -45,7 +50,7 @@ def _judge_build_or_not(action, build_all): # type: (str, bool) -> (bool, bool)
labels = TEST_LABELS[action] labels = TEST_LABELS[action]
if not isinstance(labels, list): if not isinstance(labels, list):
labels = [labels] labels = [labels] # type: ignore
for label in labels: for label in labels:
if os.getenv(label): if os.getenv(label):
@@ -55,13 +60,23 @@ def _judge_build_or_not(action, build_all): # type: (str, bool) -> (bool, bool)
return False, False return False, False
def output_json(apps_dict_list, target, build_system, output_dir): def output_json(apps_dict_list, target, build_system, output_dir): # type: (list, str, str, str) -> None
output_path = os.path.join(output_dir, 'scan_{}_{}.json'.format(target.lower(), build_system)) output_path = os.path.join(output_dir, 'scan_{}_{}.json'.format(target.lower(), build_system))
with open(output_path, 'w') as fw: with open(output_path, 'w') as fw:
fw.writelines([json.dumps(app) + '\n' for app in apps_dict_list]) fw.writelines([json.dumps(app) + '\n' for app in apps_dict_list])
def main(): # we might need artifacts to run test cases locally.
# So we need to save artifacts which have test case not executed by CI.
class _ExampleAssignTest(ExampleAssignTest):
DEFAULT_FILTER = {} # type: dict[str, Any]
class _TestAppsAssignTest(TestAppsAssignTest):
DEFAULT_FILTER = {} # type: dict[str, Any]
def main(): # type: () -> None
parser = argparse.ArgumentParser(description='Scan the required build tests') parser = argparse.ArgumentParser(description='Scan the required build tests')
parser.add_argument('test_type', parser.add_argument('test_type',
choices=TEST_LABELS.keys(), choices=TEST_LABELS.keys(),
@@ -101,14 +116,14 @@ def main():
output_json([], target, args.build_system, args.output_path) output_json([], target, args.build_system, args.output_path)
SystemExit(0) SystemExit(0)
paths = set([os.path.join(os.getenv('IDF_PATH'), path) if not os.path.isabs(path) else path for path in args.paths]) paths = set([os.path.join(str(os.getenv('IDF_PATH')), path) if not os.path.isabs(path) else path for path in args.paths])
test_cases = [] test_cases = []
for path in paths: for path in paths:
if args.test_type == 'example_test': if args.test_type == 'example_test':
assign = ExampleAssignTest(path, args.ci_config_file) assign = _ExampleAssignTest(path, args.ci_config_file)
elif args.test_type in ['test_apps', 'component_ut']: elif args.test_type in ['test_apps', 'component_ut']:
assign = TestAppsAssignTest(path, args.ci_config_file) assign = _TestAppsAssignTest(path, args.ci_config_file)
else: else:
raise SystemExit(1) # which is impossible raise SystemExit(1) # which is impossible
@@ -123,7 +138,7 @@ def main():
... ...
} }
''' '''
scan_info_dict = defaultdict(dict) scan_info_dict = defaultdict(dict) # type: dict[str, dict]
# store the test cases dir, exclude these folders when scan for standalone apps # store the test cases dir, exclude these folders when scan for standalone apps
default_exclude = args.exclude if args.exclude else [] default_exclude = args.exclude if args.exclude else []