2016-04-14 02:02:17 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
##
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2016-05-24 23:39:54 -04:00
|
|
|
# This script uses Jenkins REST api to collect test result(s) of given build/builds and generates
|
|
|
|
# flakyness data about unittests.
|
|
|
|
# Print help: report-flakies.py -h
|
2016-04-14 02:02:17 -04:00
|
|
|
import argparse
|
2016-05-24 23:39:54 -04:00
|
|
|
import findHangingTests
|
2016-04-14 02:02:17 -04:00
|
|
|
import logging
|
|
|
|
import requests
|
2016-05-24 23:39:54 -04:00
|
|
|
import sys
|
2016-04-14 02:02:17 -04:00
|
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
2016-05-24 23:39:54 -04:00
|
|
|
parser.add_argument("--urls", metavar="url[ max-builds]", action="append", required=True,
|
|
|
|
help="Urls to analyze, which can refer to simple projects, multi-configuration projects or "
|
|
|
|
"individual build run. Optionally, specify maximum builds to analyze for this url "
|
|
|
|
"(if available on jenkins) using space as separator. By default, all available "
|
|
|
|
"builds are analyzed.")
|
2016-04-14 02:02:17 -04:00
|
|
|
parser.add_argument("--mvn", action="store_true",
|
|
|
|
help="Writes two strings for including/excluding these flaky tests using maven flags. These "
|
2016-05-24 23:39:54 -04:00
|
|
|
"strings are written to files so they can be saved as artifacts and easily imported in "
|
|
|
|
"other projects. Also writes timeout and failing tests in separate files for "
|
|
|
|
"reference.")
|
2016-04-14 02:02:17 -04:00
|
|
|
parser.add_argument("-v", "--verbose", help="Prints more logs.", action="store_true")
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
logging.basicConfig()
|
2016-05-24 23:39:54 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2016-04-14 02:02:17 -04:00
|
|
|
if args.verbose:
|
2016-05-24 23:39:54 -04:00
|
|
|
logger.setLevel(logging.INFO)
|
2016-04-14 02:02:17 -04:00
|
|
|
|
2016-05-24 23:39:54 -04:00
|
|
|
|
|
|
|
# Given url of an executed build, analyzes its console text, and returns
|
|
|
|
# [list of all tests, list of timeout tests, list of failed tests].
|
|
|
|
def get_bad_tests(build_url):
|
2016-05-27 19:39:13 -04:00
|
|
|
logger.info("Analyzing %s", build_url)
|
|
|
|
json_response = requests.get(build_url + "/api/json").json()
|
|
|
|
if json_response["building"]:
|
|
|
|
logger.info("Skipping this build since it is in progress.")
|
|
|
|
return {}
|
2016-05-24 23:39:54 -04:00
|
|
|
console_url = build_url + "/consoleText"
|
|
|
|
return findHangingTests.get_hanging_tests(console_url)
|
|
|
|
|
2016-04-14 02:02:17 -04:00
|
|
|
|
|
|
|
# If any url is of type multi-configuration project (i.e. has key 'activeConfigurations'),
|
|
|
|
# get urls for individual jobs.
|
2016-05-24 23:39:54 -04:00
|
|
|
def expand_multi_configuration_projects(urls_list):
|
|
|
|
expanded_urls = []
|
|
|
|
for url_max_build in urls_list:
|
|
|
|
splits = url_max_build.split()
|
|
|
|
url = splits[0]
|
|
|
|
max_builds = 10000 # Some high value
|
|
|
|
if len(splits) == 2:
|
|
|
|
max_builds = int(splits[1])
|
|
|
|
json_response = requests.get(url + "/api/json").json()
|
|
|
|
if json_response.has_key("activeConfigurations"):
|
|
|
|
for config in json_response["activeConfigurations"]:
|
|
|
|
expanded_urls.append({'url':config["url"], 'max_builds': max_builds})
|
|
|
|
else:
|
|
|
|
expanded_urls.append({'url':url, 'max_builds': max_builds})
|
|
|
|
return expanded_urls
|
|
|
|
|
|
|
|
|
|
|
|
# Set of timeout/failed tests across all given urls.
|
|
|
|
all_timeout_tests = set()
|
|
|
|
all_failed_tests = set()
|
|
|
|
|
|
|
|
# Iterates over each url, gets test results and prints flaky tests.
|
|
|
|
expanded_urls = expand_multi_configuration_projects(args.urls)
|
|
|
|
for url_max_build in expanded_urls:
|
|
|
|
url = url_max_build["url"]
|
2016-04-14 02:02:17 -04:00
|
|
|
json_response = requests.get(url + "/api/json").json()
|
2016-05-24 23:39:54 -04:00
|
|
|
if json_response.has_key("builds"):
|
|
|
|
builds = json_response["builds"]
|
|
|
|
logger.info("Analyzing job: %s", url)
|
2016-04-14 02:02:17 -04:00
|
|
|
else:
|
2016-05-24 23:39:54 -04:00
|
|
|
builds = [{'number' : json_response["id"], 'url': url}]
|
|
|
|
logger.info("Analyzing build : %s", url)
|
2016-04-14 02:02:17 -04:00
|
|
|
build_id_to_results = {}
|
|
|
|
num_builds = 0
|
|
|
|
build_ids = []
|
2016-05-24 23:39:54 -04:00
|
|
|
build_ids_without_tests_run = []
|
2016-04-14 02:02:17 -04:00
|
|
|
for build in builds:
|
|
|
|
build_id = build["number"]
|
|
|
|
build_ids.append(build_id)
|
2016-05-24 23:39:54 -04:00
|
|
|
result = get_bad_tests(build["url"])
|
2016-05-27 19:39:13 -04:00
|
|
|
if result == {}:
|
|
|
|
continue
|
2016-05-24 23:39:54 -04:00
|
|
|
if len(result[0]) > 0:
|
|
|
|
build_id_to_results[build_id] = result
|
2016-04-14 02:02:17 -04:00
|
|
|
else:
|
2016-05-24 23:39:54 -04:00
|
|
|
build_ids_without_tests_run.append(build_id)
|
2016-04-14 02:02:17 -04:00
|
|
|
num_builds += 1
|
2016-05-24 23:39:54 -04:00
|
|
|
if num_builds == url_max_build["max_builds"]:
|
2016-04-14 02:02:17 -04:00
|
|
|
break
|
|
|
|
|
|
|
|
# Collect list of bad tests.
|
|
|
|
bad_tests = set()
|
|
|
|
for build in build_id_to_results:
|
2016-05-24 23:39:54 -04:00
|
|
|
[_, timeout_tests, failed_tests] = build_id_to_results[build]
|
|
|
|
all_timeout_tests.update(timeout_tests)
|
|
|
|
all_failed_tests.update(failed_tests)
|
|
|
|
bad_tests.update(timeout_tests.union(failed_tests))
|
|
|
|
|
|
|
|
# Get total and failed/timeout times for each bad test.
|
|
|
|
build_counts = {key : {'total': 0, 'timeout': 0, 'fail': 0 } for key in bad_tests}
|
2016-04-14 02:02:17 -04:00
|
|
|
for build in build_id_to_results:
|
2016-05-24 23:39:54 -04:00
|
|
|
[all_tests, timeout_tests, failed_tests] = build_id_to_results[build]
|
2016-04-14 02:02:17 -04:00
|
|
|
for bad_test in bad_tests:
|
2016-05-24 23:39:54 -04:00
|
|
|
if all_tests.issuperset([bad_test]):
|
|
|
|
build_counts[bad_test]["total"] += 1
|
|
|
|
if timeout_tests.issuperset([bad_test]):
|
|
|
|
build_counts[bad_test]['timeout'] += 1
|
|
|
|
if failed_tests.issuperset([bad_test]):
|
|
|
|
build_counts[bad_test]['fail'] += 1
|
2016-04-14 02:02:17 -04:00
|
|
|
|
|
|
|
if len(bad_tests) > 0:
|
2016-05-24 23:39:54 -04:00
|
|
|
print "URL: {}".format(url)
|
|
|
|
print "{:>60} {:25} {:10} {}".format(
|
|
|
|
"Test Name", "Bad Runs(failed/timeout)", "Total Runs", "Flakyness")
|
2016-04-14 02:02:17 -04:00
|
|
|
for bad_test in bad_tests:
|
2016-05-24 23:39:54 -04:00
|
|
|
fail = build_counts[bad_test]['fail']
|
|
|
|
timeout = build_counts[bad_test]['timeout']
|
2016-04-14 02:02:17 -04:00
|
|
|
total = build_counts[bad_test]['total']
|
2016-05-24 23:39:54 -04:00
|
|
|
print "{:>60} {:10} ({:4} / {:4}) {:10} {:2.0f}%".format(
|
|
|
|
bad_test, fail + timeout, fail, timeout, total, (fail + timeout) * 100.0 / total)
|
2016-04-14 02:02:17 -04:00
|
|
|
else:
|
|
|
|
print "No flaky tests founds."
|
2016-05-24 23:39:54 -04:00
|
|
|
if len(build_ids) == len(build_ids_without_tests_run):
|
2016-04-14 02:02:17 -04:00
|
|
|
print "None of the analyzed builds have test result."
|
|
|
|
|
2016-05-24 23:39:54 -04:00
|
|
|
print "Builds analyzed: {}".format(build_ids)
|
|
|
|
print "Builds without any test runs: {}".format(build_ids_without_tests_run)
|
2016-04-14 02:02:17 -04:00
|
|
|
print ""
|
|
|
|
|
2016-05-24 23:39:54 -04:00
|
|
|
|
|
|
|
all_bad_tests = all_timeout_tests.union(all_failed_tests)
|
2016-04-14 02:02:17 -04:00
|
|
|
if args.mvn:
|
2016-05-24 23:39:54 -04:00
|
|
|
includes = ",".join(all_bad_tests)
|
2016-04-14 02:02:17 -04:00
|
|
|
with open("./includes", "w") as inc_file:
|
|
|
|
inc_file.write(includes)
|
2016-05-09 14:02:06 -04:00
|
|
|
|
2016-05-24 23:39:54 -04:00
|
|
|
excludes = ["**/{0}.java".format(bad_test) for bad_test in all_bad_tests]
|
2016-04-14 02:02:17 -04:00
|
|
|
with open("./excludes", "w") as exc_file:
|
2016-05-24 23:39:54 -04:00
|
|
|
exc_file.write(",".join(excludes))
|
|
|
|
|
|
|
|
with open("./timeout", "w") as file:
|
|
|
|
file.write(",".join(all_timeout_tests))
|
|
|
|
|
|
|
|
with open("./failed", "w") as file:
|
|
|
|
file.write(",".join(all_failed_tests))
|