Dosage test results from %(date)s
Note that it is almost impossible to get a 100%% OK test run due to temporary site failures.
%(content)s
{%% endblock content %%}
"""
def get_mtime (filename):
"""Return modification time of filename."""
return os.path.getmtime(filename)
def strdate(t):
return time.strftime("%d.%m.%Y", time.localtime(t))
def get_test_name(line):
classname = line.split('::')[1][4:]
for scraper in get_scrapers():
if scraper.__name__ == classname:
try:
url = scraper.starter()
except Exception:
url = None
return scraper.get_name(), url
raise ValueError("Scraper %r not found" % classname)
def get_test(line):
name, url = get_test_name(line)
result = "OK" if line.startswith(". ") else "FAILED"
return [name, url, result, ""]
def get_content(filename):
tests = []
with open(filename, "r") as f:
print("Tests parsed: 0", end=" ", file=sys.stderr)
num_tests = 0
add_reason = False
for line in f:
if line.startswith((". ", "F ")) and "test_comics" in line:
add_reason = line.startswith("F ")
num_tests += 1
try:
tests.append(get_test(line))
except Exception as msg:
print("WARNING:", msg, file=sys.stderr)
continue
elif add_reason and line.startswith(" E "):
reason = line[3:].strip()
tests[-1][-1] = reason
if num_tests % 5 == 0:
print(num_tests, end=" ", file=sys.stderr)
tests.sort()
res = []
for name, url, result, reason in tests:
css = result.lower()
if len(name) > 40:
name = name[:37] + "..."
if url:
args = quote_all(url, reason, css, name)
inner = '%s' % args
else:
args = quote_all(reason, css, name)
inner = '%s' % args
res.append('%s
' % inner)
return os.linesep.join(res)
def quote_all(*args):
return tuple(cgi.escape(x, quote=True) for x in args)
def main(args):
filename = args[0]
modified = get_mtime(filename)
content = get_content(filename)
attrs = {"date": strdate(modified), "content": content}
print(htmltemplate % attrs)
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))