1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
# Publish test results as a web page
#
# Copyright (C) 2017 Andrew Cagney
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
import os
import re
import shutil
import functools
import copy
import gzip
from collections import defaultdict
from datetime import datetime
from datetime import time
from fab import jsonutil
from fab import stats
from fab import timing
from fab import argutil
JSON_RESULTS = []
JSON_SUMMARY = { }
JSON_STATUS = { }
def add_arguments(parser):
group = parser.add_argument_group("publish arguments",
"options for publishing the results as json")
group.add_argument("--publish-resultsdir", metavar="DIRECTORY",
type=argutil.directory,
help="publish the results from the test run in %(metavar)s as json")
group.add_argument("--publish-status", metavar="STATUS-FILE",
type=argutil.directory_file,
help="publish (with live updates) the status of the test run in %(metavar)s as json")
group.add_argument("--publish-summary", metavar="SUMMARY-FILE",
type=argutil.directory_file,
help="publish a summary in %(metavar)s as json; default: DIRECTORY/summary.json")
group.add_argument("--publish-hash", metavar="HASH",
help="hash code of the commit being tested; added to the summary")
group.add_argument("--publish-result-html", metavar="index.html",
help="%(metavar) for each test directory")
group.add_argument("--publish-source-url", metavar="URL",
help="point test source files at %(metavar)/testing/pluto/...")
def log_arguments(logger, args):
logger.info("Publish arguments:")
logger.info(" publish-resultsdir: '%s'", args.publish_resultsdir)
logger.info(" publish-result-html: '%s'", args.publish_result_html)
logger.info(" publish-source-url: '%s'", args.publish_source_url)
logger.info(" publish-status: '%s'", args.publish_status)
logger.info(" publish-summary: '%s'", args.publish_summary)
logger.info(" publish-hash: '%s'", args.publish_hash)
# sneak in some fields
if not args.publish_resultsdir:
return
if args.publish_hash:
JSON_SUMMARY["hash"] = args.publish_hash
path = (args.publish_summary and os.path.dirname(args.publish_summary)
or args.publish_resultsdir)
if path:
directory = os.path.basename(path)
JSON_SUMMARY["directory"] = directory
JSON_STATUS["directory"] = directory
JSON_SUMMARY["start_time"] = datetime.now()
JSON_STATUS["start_time"] = datetime.now()
def _add(counts, *keys):
# fill in the missing keys.
for key in keys[0:-1]:
if not key in counts:
counts[key] = {}
counts = counts[key]
key = keys[-1]
if not key in counts:
counts[key] = 0
counts[key] = counts[key] + 1
def _mkdir_test(logger, args, result):
if not args.publish_resultsdir:
return None
dstdir = os.path.join(args.publish_resultsdir, result.test.name)
try:
os.mkdir(dstdir)
except FileExistsError:
logger.debug("directory %s already exists", dstdir)
return dstdir
def _mkdir_test_output(logger, args, result):
testdir = _mkdir_test(logger, args, result);
if not testdir:
return None
outdir = os.path.join(testdir, "OUTPUT")
try:
os.mkdir(outdir)
except FileExistsError:
logger.debug("directory %s already exists", outdir)
return outdir
def _copy_new_file(src, dst, logger):
if not os.path.isfile(src):
logger.error("source file '%s' does not exist; we're confused", src)
return
if os.path.isdir(dst):
logger.error("destination file '%s' is a directory; we're confused", dst)
return
# .samefile() only works when dst exists
if os.path.isfile(dst) \
and os.path.samefile(src, dst):
return
# heuristic to avoid re-copy; since mtime is being preserved
# identical files should have identical mtimes (or that failed and
# dst, as a copy, is newer).
if os.path.isfile(dst) \
and os.path.getsize(src) == os.path.getsize(dst) \
and os.path.getmtime(src) <= os.path.getmtime(dst):
return
logger.info("copying '%s' to '%s'", src, dst)
# copy file while preserving mtime et.al.
shutil.copy2(src, dst)
return
def test_files(logger, args, result, files={}):
testdir = _mkdir_test(logger, args, result)
if not testdir:
return None
test = result.test
ignore = re.compile(r"[~]$")
for name in os.listdir(test.directory):
if ignore.search(name):
continue
if args.publish_source_url:
# no need to copy
files[name] = args.publish_source_url + "/testing/pluto/" + test.name + "/" + name
else:
files[name] = name
# No reason to copy files that can't be seen? Problem is the
# web page relies on pulling in description.txt from the local
# file.
#
# if not args.publish_result_html or not args.publish_source_url:
src = os.path.join(test.directory, name)
dst = os.path.join(testdir, name)
_copy_new_file(src, dst, logger)
if args.publish_result_html:
src = args.publish_result_html
dst = os.path.join(testdir, "index.html")
_copy_new_file(src, dst, logger)
return testdir
def test_output_files(logger, args, result, files={}):
# always create OUTPUT/; even untested it contains files.json
outdir = _mkdir_test_output(logger, args, result)
if not outdir:
return None
# Only when there is an output directory does it need copying.
if os.path.isdir(result.output_directory):
# copy plain text files
text_name = re.compile(r"(\.txt|\.diff|^RESULT|\.json)$")
log_name = re.compile(r"(\.log)$")
for name in os.listdir(result.output_directory):
output_name = "OUTPUT/"+name
files[output_name] = output_name
# copy simple files
src = os.path.join(result.output_directory, name)
dst = os.path.join(outdir, name)
if text_name.search(name):
_copy_new_file(src, dst, logger)
continue
# copy compressed files; gzip is used as that works with
# the web's deflate?!?
if log_name.search(name):
dst_gz = dst + ".gz"
# heuristic to avoid re-compression
if os.path.isfile(dst) \
and os.path.getmtime(src) < os.path.getmtime(dst_gz):
continue
logger.info("compressing '%s' to '%s'", src, dst_gz)
with open(src, "rb") as f:
data = f.read()
with gzip.open(dst_gz, "wb") as f:
f.write(data)
continue
return outdir
def json_result(logger, args, result):
if not args.publish_resultsdir:
return
# accumulate results.json
json = result.json()
JSON_RESULTS.append(json)
# accumulate summary.json
_add(JSON_SUMMARY, "totals", result.test.kind, result.test.status, str(result))
for issue in result.issues:
for host in result.issues[issue]:
# count the number of times it occurred
_add(JSON_SUMMARY, "totals", result.test.kind, result.test.status, "issues", issue)
def json_results(logger, args):
if not args.publish_resultsdir:
return
path = os.path.join(args.publish_resultsdir, "results.json")
logger.info("writing results to '%s'", path)
with open(path, "w") as output:
jsonutil.dump(JSON_RESULTS, output)
output.write("\n")
def json_summary(logger, args):
if not args.publish_resultsdir:
return
# update totals and stop time
JSON_SUMMARY["total"] = len(JSON_RESULTS)
JSON_SUMMARY["current_time"] = datetime.now()
# emit
path = (args.publish_summary and args.publish_summary
or os.path.join(args.publish_resultsdir, "summary.json"))
logger.info("writing summary to '%s'", path)
with open(path, "w") as output:
jsonutil.dump(JSON_SUMMARY, output)
output.write("\n")
def testlist(logger, args):
if not args.publish_resultsdir:
return
path = os.path.join(args.publish_resultsdir, "TESTLIST")
logger.info("writing TESTLIST to '%s'", path)
with open(path, "w") as output:
for result in JSON_RESULTS:
output.write("%s %s %s\n" % (result["test_kind"], result["test_name"], result["test_status"]))
def json_status(logger, args, details):
if not args.publish_status:
return
JSON_STATUS["current_time"] = datetime.now()
JSON_STATUS["details"] = details
with open(args.publish_status, "w") as output:
jsonutil.dump(JSON_STATUS, output)
output.write("\n")
def everything(logger, args, result):
files = { "result.json": "result.json", }
testdir = test_files(logger, args, result, files)
outdir = test_output_files(logger, args, result, files)
if outdir:
with open(os.path.join(outdir, "files.json"), "w") as f:
jsonutil.dump(files, f)
json_result(logger, args, result)
json_results(logger, args)
json_summary(logger, args)
testlist(logger, args)
|