2022-03-18 12:36:45 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
from typing import List, Tuple
|
2022-03-18 12:36:45 +00:00
|
|
|
import argparse
|
|
|
|
import csv
|
2022-11-03 12:44:07 +00:00
|
|
|
import logging
|
2022-03-18 12:36:45 +00:00
|
|
|
import os
|
|
|
|
|
2022-10-27 11:32:42 +00:00
|
|
|
from github import Github
|
|
|
|
|
2023-04-18 23:03:48 +00:00
|
|
|
from commit_status_helper import get_commit, post_commit_status
|
2022-10-27 11:32:42 +00:00
|
|
|
from get_robot_token import get_best_robot_token
|
|
|
|
from pr_info import PRInfo
|
2023-01-03 14:23:19 +00:00
|
|
|
from report import TestResults, TestResult
|
|
|
|
from s3_helper import S3Helper
|
2022-10-27 11:32:42 +00:00
|
|
|
from upload_result_helper import upload_results
|
|
|
|
|
|
|
|
|
2022-03-18 12:36:45 +00:00
|
|
|
def parse_args():
|
|
|
|
parser = argparse.ArgumentParser()
|
2022-10-27 11:32:42 +00:00
|
|
|
parser.add_argument("status", nargs="+", help="Path to status file")
|
2022-03-18 12:36:45 +00:00
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
def post_commit_status_from_file(file_path: str) -> List[str]:
|
2022-03-22 16:39:58 +00:00
|
|
|
with open(file_path, "r", encoding="utf-8") as f:
|
2023-01-03 14:23:19 +00:00
|
|
|
res = list(csv.reader(f, delimiter="\t"))
|
2022-03-18 12:36:45 +00:00
|
|
|
if len(res) < 1:
|
|
|
|
raise Exception(f'Can\'t read from "{file_path}"')
|
|
|
|
if len(res[0]) != 3:
|
|
|
|
raise Exception(f'Can\'t read from "{file_path}"')
|
|
|
|
return res[0]
|
|
|
|
|
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
def process_result(file_path: str) -> Tuple[bool, TestResults]:
|
|
|
|
test_results = [] # type: TestResults
|
2022-03-18 12:36:45 +00:00
|
|
|
state, report_url, description = post_commit_status_from_file(file_path)
|
|
|
|
prefix = os.path.basename(os.path.dirname(file_path))
|
2022-10-27 13:06:37 +00:00
|
|
|
is_ok = state == "success"
|
2022-11-03 12:44:07 +00:00
|
|
|
if is_ok and report_url == "null":
|
2023-01-03 14:23:19 +00:00
|
|
|
return is_ok, test_results
|
2022-10-27 13:06:37 +00:00
|
|
|
|
2022-12-06 10:13:22 +00:00
|
|
|
status = f'OK: Bug reproduced (<a href="{report_url}">Report</a>)'
|
2022-10-27 16:51:11 +00:00
|
|
|
if not is_ok:
|
|
|
|
status = f'Bug is not reproduced (<a href="{report_url}">Report</a>)'
|
2023-01-03 14:23:19 +00:00
|
|
|
test_results.append(TestResult(f"{prefix}: {description}", status))
|
2022-10-27 13:06:37 +00:00
|
|
|
return is_ok, test_results
|
2022-03-18 12:36:45 +00:00
|
|
|
|
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
def process_all_results(file_paths: str) -> Tuple[bool, TestResults]:
|
2022-10-27 16:51:11 +00:00
|
|
|
any_ok = False
|
2022-10-27 11:32:42 +00:00
|
|
|
all_results = []
|
2022-10-27 15:11:16 +00:00
|
|
|
for status_path in file_paths:
|
|
|
|
is_ok, test_results = process_result(status_path)
|
2022-10-27 16:51:11 +00:00
|
|
|
any_ok = any_ok or is_ok
|
2022-11-03 12:44:07 +00:00
|
|
|
if test_results is not None:
|
|
|
|
all_results.extend(test_results)
|
|
|
|
|
2022-10-27 16:51:11 +00:00
|
|
|
return any_ok, all_results
|
2022-10-27 15:11:16 +00:00
|
|
|
|
2022-10-27 11:32:42 +00:00
|
|
|
|
2022-10-27 15:11:16 +00:00
|
|
|
def main(args):
|
2022-11-03 12:44:07 +00:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
2022-10-27 11:32:42 +00:00
|
|
|
check_name_with_group = "Bugfix validate check"
|
|
|
|
|
2022-10-27 15:11:16 +00:00
|
|
|
is_ok, test_results = process_all_results(args.status)
|
|
|
|
|
2022-11-03 12:44:07 +00:00
|
|
|
if not test_results:
|
|
|
|
logging.info("No results to upload")
|
|
|
|
return
|
|
|
|
|
2022-10-27 11:32:42 +00:00
|
|
|
pr_info = PRInfo()
|
|
|
|
report_url = upload_results(
|
|
|
|
S3Helper(),
|
|
|
|
pr_info.number,
|
|
|
|
pr_info.sha,
|
2022-10-27 15:11:16 +00:00
|
|
|
test_results,
|
2023-01-03 15:30:36 +00:00
|
|
|
args.status,
|
2022-10-27 11:32:42 +00:00
|
|
|
check_name_with_group,
|
|
|
|
)
|
|
|
|
|
|
|
|
gh = Github(get_best_robot_token(), per_page=100)
|
2023-04-18 23:03:48 +00:00
|
|
|
commit = get_commit(gh, pr_info.sha)
|
2022-10-27 11:32:42 +00:00
|
|
|
post_commit_status(
|
2023-04-18 23:03:48 +00:00
|
|
|
commit,
|
2022-10-27 11:32:42 +00:00
|
|
|
"success" if is_ok else "error",
|
|
|
|
report_url,
|
2023-04-18 23:03:48 +00:00
|
|
|
"" if is_ok else "Changed tests don't reproduce the bug",
|
|
|
|
check_name_with_group,
|
|
|
|
pr_info,
|
2022-10-27 11:32:42 +00:00
|
|
|
)
|
2022-03-18 12:36:45 +00:00
|
|
|
|
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
if __name__ == "__main__":
|
2022-03-18 12:36:45 +00:00
|
|
|
main(parse_args())
|