2021-02-02 02:53:40 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2021-10-12 02:47:28 +00:00
|
|
|
# SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2021-02-02 02:53:40 +00:00
|
|
|
|
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
import sys
|
2021-12-27 07:22:08 +00:00
|
|
|
from pathlib import Path
|
2021-02-02 02:53:40 +00:00
|
|
|
|
|
|
|
import yaml
|
2021-12-27 07:22:08 +00:00
|
|
|
from idf_ci_utils import IDF_PATH, get_git_files
|
2021-02-02 02:53:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
def check(pattern_yml, exclude_list):
|
|
|
|
rules_dict = yaml.load(open(pattern_yml), Loader=yaml.FullLoader)
|
|
|
|
rules_patterns_set = set()
|
|
|
|
for k, v in rules_dict.items():
|
2021-12-27 08:29:07 +00:00
|
|
|
if k.startswith('.pattern') and k != '.patterns-python-files' and isinstance(v, list):
|
2021-02-02 02:53:40 +00:00
|
|
|
rules_patterns_set.update(v)
|
2021-12-27 08:29:07 +00:00
|
|
|
|
2021-02-02 02:53:40 +00:00
|
|
|
rules_files_set = set()
|
2021-12-27 07:22:08 +00:00
|
|
|
idf_path = Path(IDF_PATH)
|
2021-02-02 02:53:40 +00:00
|
|
|
for pat in rules_patterns_set:
|
2021-12-27 07:22:08 +00:00
|
|
|
rules_files_set.update(idf_path.glob(pat))
|
2021-02-02 02:53:40 +00:00
|
|
|
|
|
|
|
exclude_patterns_set = set()
|
2021-12-27 07:22:08 +00:00
|
|
|
for line in open(exclude_list).readlines():
|
|
|
|
pat = line.split('#')[0].strip()
|
|
|
|
if pat:
|
|
|
|
exclude_patterns_set.add(pat)
|
|
|
|
|
2021-02-02 02:53:40 +00:00
|
|
|
exclude_files_set = set()
|
|
|
|
for pat in exclude_patterns_set:
|
2021-12-27 07:22:08 +00:00
|
|
|
exclude_files_set.update(idf_path.glob(pat))
|
2021-02-02 02:53:40 +00:00
|
|
|
|
|
|
|
missing_files = set()
|
|
|
|
git_files = get_git_files(os.path.join(IDF_PATH, 'tools'), full_path=True)
|
|
|
|
for f in git_files:
|
2021-12-27 07:22:08 +00:00
|
|
|
f = Path(f)
|
2021-02-02 02:53:40 +00:00
|
|
|
if f in rules_files_set or f in exclude_files_set:
|
|
|
|
continue
|
|
|
|
missing_files.add(os.path.relpath(f, IDF_PATH))
|
|
|
|
|
|
|
|
return missing_files, rules_patterns_set.intersection(exclude_patterns_set)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = argparse.ArgumentParser(description='check if all tools files are in rules patterns or exclude list')
|
|
|
|
parser.add_argument('-c', '--pattern-yml',
|
|
|
|
default=os.path.join(IDF_PATH, '.gitlab', 'ci', 'rules.yml'),
|
|
|
|
help='yml file path included file patterns')
|
|
|
|
parser.add_argument('-e', '--exclude-list',
|
|
|
|
default=os.path.join(IDF_PATH, 'tools', 'ci', 'exclude_check_tools_files.txt'),
|
|
|
|
help='exclude list path')
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
res = 0
|
|
|
|
not_included_files, dup_patterns = check(args.pattern_yml, args.exclude_list)
|
2021-10-12 02:47:28 +00:00
|
|
|
if not_included_files or dup_patterns:
|
2021-02-02 02:53:40 +00:00
|
|
|
res = 1
|
2021-10-12 02:47:28 +00:00
|
|
|
print('This test is used for making sure of all the tools dir files are recorded in .gitlab/ci/rules.yml to '
|
|
|
|
'trigger the related tests, except those files should be excluded.')
|
|
|
|
if not_included_files:
|
|
|
|
print('Missing Files:')
|
|
|
|
for file in not_included_files:
|
2021-12-27 07:22:08 +00:00
|
|
|
print('\t' + str(file))
|
2021-10-12 02:47:28 +00:00
|
|
|
print('Please add these files or glob patterns to ".gitlab/ci/rules.yml" and put related files under '
|
|
|
|
'".patterns-<test_group>" block to trigger related tests.\n'
|
|
|
|
'Or add them to "tools/ci/exclude_check_tools_files.txt" to exclude them.')
|
|
|
|
|
|
|
|
if dup_patterns:
|
|
|
|
print('Duplicated Patterns:')
|
|
|
|
for pattern in dup_patterns:
|
|
|
|
print('\t' + pattern)
|
|
|
|
print('Please remove them from tools/ci/exclude_check_tools_files.txt')
|
2021-02-02 02:53:40 +00:00
|
|
|
|
|
|
|
sys.exit(res)
|