Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-06-25 20:48:14 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-06-26 16:06:49 +0300
commit51c6dfd7f0aafddf29ea2b28706341dd87a559fd (patch)
tree95567f5d1079935a3705dcd8c82008d178b3c465
parent0e327968a97792700d9866d5b9fb5d16a386a897 (diff)
Tests: add navigation links for HTML test reports, and other tweaks
-rwxr-xr-xtests/python/cycles_render_tests.py2
-rwxr-xr-xtests/python/eevee_render_tests.py2
-rwxr-xr-xtests/python/modules/global_report.py3
-rwxr-xr-xtests/python/modules/render_report.py51
-rwxr-xr-xtests/python/opengl_draw_tests.py2
-rwxr-xr-xtests/python/workbench_render_tests.py2
6 files changed, 44 insertions, 18 deletions
diff --git a/tests/python/cycles_render_tests.py b/tests/python/cycles_render_tests.py
index 36f5459c2f7..349ba83f88a 100755
--- a/tests/python/cycles_render_tests.py
+++ b/tests/python/cycles_render_tests.py
@@ -104,7 +104,7 @@ def main():
output_dir = args.outdir[0]
from modules import render_report
- report = render_report.Report("Cycles Test Report", output_dir, idiff)
+ report = render_report.Report("Cycles", output_dir, idiff)
report.set_pixelated(True)
report.set_reference_dir("cycles_renders")
report.set_compare_engines('cycles', 'eevee')
diff --git a/tests/python/eevee_render_tests.py b/tests/python/eevee_render_tests.py
index b410f5fc4d8..9fb8a5f41a8 100755
--- a/tests/python/eevee_render_tests.py
+++ b/tests/python/eevee_render_tests.py
@@ -122,7 +122,7 @@ def main():
output_dir = args.outdir[0]
from modules import render_report
- report = render_report.Report("Eevee Test Report", output_dir, idiff)
+ report = render_report.Report("Eevee", output_dir, idiff)
report.set_pixelated(True)
report.set_reference_dir("eevee_renders")
report.set_compare_engines('eevee', 'cycles')
diff --git a/tests/python/modules/global_report.py b/tests/python/modules/global_report.py
index e45d159bb2d..8ed8551beb9 100755
--- a/tests/python/modules/global_report.py
+++ b/tests/python/modules/global_report.py
@@ -32,11 +32,12 @@ def _write_html(output_dir):
.failed {{ color: red; }}
.none {{ color: #999; }}
</style>
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
<br/>
+ <h1>{title}</h1>
{combined_reports}
<br/>
</div>
diff --git a/tests/python/modules/render_report.py b/tests/python/modules/render_report.py
index 5a2baa354c7..2f99a3b6292 100755
--- a/tests/python/modules/render_report.py
+++ b/tests/python/modules/render_report.py
@@ -159,6 +159,23 @@ class Report:
filepath = os.path.join(outdir, "compare.data")
pathlib.Path(filepath).write_text(self.compare_tests)
+ def _navigation_item(self, title, href, active):
+ if active:
+ return """<li class="breadcrumb-item active" aria-current="page">%s</li>""" % title
+ else:
+ return """<li class="breadcrumb-item"><a href="%s">%s</a></li>""" % (href, title)
+
+ def _navigation_html(self, comparison):
+ html = """<nav aria-label="breadcrumb"><ol class="breadcrumb">"""
+ html += self._navigation_item("Test Reports", "../report.html", False)
+ html += self._navigation_item(self.title, "report.html", not comparison)
+ if self.compare_engines:
+ compare_title = "Compare with %s" % self.compare_engines[1].capitalize()
+ html += self._navigation_item(compare_title, "compare.html", comparison)
+ html += """</ol></nav>"""
+
+ return html
+
def _write_html(self, comparison=False):
# Gather intermediate data for all tests.
if comparison:
@@ -186,17 +203,25 @@ class Report:
else:
image_rendering = 'auto'
+ # Navigation
+ menu = self._navigation_html(comparison)
+
failed = len(failed_tests) > 0
if failed:
- message = "<p>Run <tt>BLENDER_TEST_UPDATE=1 ctest</tt> to create or update reference images for failed tests.</p>"
+ message = """<div class="alert alert-danger" role="alert">"""
+ message += """Run this command to update reference images for failed tests, or create images for new tests:<br>"""
+ message += """<tt>BLENDER_TEST_UPDATE=1 ctest -R %s</tt>""" % self.title.lower()
+ message += """</div>"""
else:
message = ""
if comparison:
- title = "Render Test Compare"
- columns_html = "<tr><th>Name</th><th>%s</th><th>%s</th>" % self.compare_engines
+ title = self.title + " Test Compare"
+ engine_self = self.compare_engines[0].capitalize()
+ engine_other = self.compare_engines[1].capitalize()
+ columns_html = "<tr><th>Name</th><th>%s</th><th>%s</th>" % (engine_self, engine_other)
else:
- title = self.title
+ title = self.title + " Test Report"
columns_html = "<tr><th>Name</th><th>New</th><th>Reference</th><th>Diff</th>"
html = """
@@ -226,16 +251,16 @@ class Report:
}}
table td:first-child {{ width: 256px; }}
</style>
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
<br/>
<h1>{title}</h1>
+ {menu}
{message}
- <br/>
<table class="table table-striped">
- <thead class="thead-default">
+ <thead class="thead-dark">
{columns_html}
</thead>
{tests_html}
@@ -245,6 +270,7 @@ class Report:
</body>
</html>
""" . format(title=title,
+ menu=menu,
message=message,
image_rendering=image_rendering,
tests_html=tests_html,
@@ -256,12 +282,11 @@ class Report:
print_message("Report saved to: " + pathlib.Path(filepath).as_uri())
-
# Update global report
- link_name = "Renders" if not comparison else "Comparison"
- global_output_dir = os.path.dirname(self.output_dir)
- global_failed = failed if not comparison else None
- global_report.add(global_output_dir, self.title, link_name, filepath, global_failed)
+ if not comparison:
+ global_output_dir = os.path.dirname(self.output_dir)
+ global_failed = failed if not comparison else None
+ global_report.add(global_output_dir, "Render", self.title, filepath, global_failed)
def _relative_url(self, filepath):
relpath = os.path.relpath(filepath, self.output_dir)
@@ -274,7 +299,7 @@ class Report:
old_img, ref_img, new_img, diff_img = test_get_images(self.output_dir, filepath, self.reference_dir)
status = error if error else ""
- tr_style = """ style="background-color: #f99;" """ if error else ""
+ tr_style = """ class="table-danger" """ if error else ""
new_url = self._relative_url(new_img)
ref_url = self._relative_url(ref_img)
diff --git a/tests/python/opengl_draw_tests.py b/tests/python/opengl_draw_tests.py
index 9913f875689..b70111c042f 100755
--- a/tests/python/opengl_draw_tests.py
+++ b/tests/python/opengl_draw_tests.py
@@ -91,7 +91,7 @@ def main():
output_dir = args.outdir[0]
from modules import render_report
- report = render_report.Report("OpenGL Draw Test Report", output_dir, idiff)
+ report = render_report.Report("OpenGL Draw", output_dir, idiff)
ok = report.run(test_dir, render_file)
sys.exit(not ok)
diff --git a/tests/python/workbench_render_tests.py b/tests/python/workbench_render_tests.py
index f22ca002604..e43aac175b8 100755
--- a/tests/python/workbench_render_tests.py
+++ b/tests/python/workbench_render_tests.py
@@ -109,7 +109,7 @@ def main():
output_dir = args.outdir[0]
from modules import render_report
- report = render_report.Report("Workbench Test Report", output_dir, idiff)
+ report = render_report.Report("Workbench", output_dir, idiff)
report.set_pixelated(True)
report.set_reference_dir("workbench_renders")
report.set_compare_engines('workbench', 'eevee')