Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List individual tools in the readme #2

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 46 additions & 4 deletions .github/scripts/update_readme.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from datetime import datetime
import json
import sys
import yaml

from jinja2 import Template

Expand Down Expand Up @@ -28,13 +29,54 @@
template = Template(f.read())

with open(readme_path, "w") as f:
htmlout = "<thead><tr><th>Chunk ID</th><th>Tool List</th><th>Latest report</th><th>Previous report</th></tr></thead><tbody>"
ids = list(chunks.keys())
ids = [int(x) for x in ids]
ids.sort()
ids = [str(x) for x in ids]
# Write the chunked test reports table
reports_html = "<thead><tr><th>Report ID</th><th>Tool List</th><th>Latest report</th><th>Previous report</th></tr></thead><tbody>"
for eachid in ids:
eachchunk = chunks.get(eachid)
htmlout += "<tr><td>{}</td><td><a href=\"{}\">Toolset</a></td><td><a href=\"{}\">{}</a></td><td><a href=\"{}\">{}</a></td></tr>".format(eachid, eachchunk.get("tools"), eachchunk.get("run1"), eachchunk.get("date1"), eachchunk.get("run2"), eachchunk.get("date2"))
htmlout += "</tbody>"
f.write(template.render(anviltools=htmlout, reportdir=readme_path.replace("/README.md", "")))
reports_html += f"""
<tr>
<td>{eachid}</td>
<td><a href=\"{eachchunk.get("tools")}\">Toolset</a></td>
<td><a href=\"{eachchunk.get("run1")}\">{eachchunk.get("date1")}</a></td>
<td><a href=\"{eachchunk.get("run2")}\">{eachchunk.get("date2")}</a></td>
</tr>"""
reports_html += "</tbody>"
# List tools individually
tool_tests_html = "<thead<tr><th>#</th><th>Report ID</th><th>Tool ID</th><th>Test #</th><th>Test results</th></thead><tbody>"
count = 0
for each_id in ids:
chunk = chunks.get(each_id)
chunk_tools_url = chunk.get('tools')
chunk_tools_path = chunk_tools_url.replace('https://github.com/anvilproject/galaxy-tests/blob/main/', '')
with open(chunk_tools_path, 'r') as tf:
chunk_tools = yaml.safe_load(tf)
for tool in chunk_tools['tools']:
for rev in tool['revisions']:
count += 1
tool_tests_html += f"""
<tr>
<td>{count}</td>
<td><a href=\"{chunk.get("run1")}\">{each_id}</a></td>
<td>{tool['owner']}/{tool['name']}@{rev}</td>"""
test_count = 0
for test in range(3): # TODO: Link with tests
test_count += 1
if test_count == 1:
tool_tests_html += f"""
<td>Test #{test_count}</td>
<td><span style='color:red'>F</span>P</td>"""
else:
tool_tests_html += f"""
<tr>
<td></td><td></td><td></td>
<td>Test #{test_count}</td>
<td><span style='color:red'>F</span>P</td>
</tr>"""
tool_tests_html +="</tr>"
tool_tests_html += "</tbody>"

f.write(template.render(toolreports=reports_html, tooltests=tool_tests_html, reportdir=readme_path.replace("/README.md", "")))
37 changes: 27 additions & 10 deletions .github/templates/README.md.j2
Original file line number Diff line number Diff line change
@@ -1,17 +1,34 @@
# Automated Tests for Galaxy on Kubernetes Stacks
## Galaxy on GKE deployed via GalaxyKubeMan (AnVIL)
### Deployment Testing
Twice a day, [GalaxyKubeMan (GKM)](https://github.com/galaxyproject/galaxykubeman-helm) is deployed on GKE, mimicking an AnVIL deployment. The purpose of these tests is to provide reasonable confidence that Galaxy is launchable on the AnVIL everyday.

Below is a plot summarizing successful deployments and GKM install times.
<a href="https://htmlpreview.github.io/?https://github.com/anvilproject/galaxy-tests/blob/main/{{reportdir}}/deployments.html">Click here</a> or on the image for more details.
## Deployment testing

<a href="https://htmlpreview.github.io/?https://github.com/anvilproject/galaxy-tests/blob/main/{{reportdir}}/deployments.html"><img src="deployments.svg" /></a>
Twice a day, [GalaxyKubeMan
(GKM)](https://github.com/galaxyproject/galaxykubeman-helm) is deployed on GKE,
mimicking an AnVIL deployment. The purpose of these tests is to provide
reasonable confidence that Galaxy can be launched on the AnVIL everyday.

### Tool Testing
After each successful deployment, automated tool tests are also run against the instance. These serve as an end-to-end-like test for Galaxy, providing confidence that Galaxy is not only launchable but functional. These tests cycle on a weekly basis through the entire suite of tools installed by default on AnVIL, providing reasonable confidence that the tools encountered by most users remain functional, and automating the detection and reporting of tools breaking.
Below is a plot summarizing successful deployments and GKM install times. <a
href="https://htmlpreview.github.io/?https://github.com/anvilproject/galaxy-tests/blob/main/{{reportdir}}/deployments.html">Click
here</a> or on the image for more details.

Latest tool tests for each chunk:
<a href="https://htmlpreview.github.io/?https://github.com/anvilproject/galaxy-tests/blob/main/{{reportdir}}/deployments.html">
<img src="deployments.svg" />
</a>

<table id="anviltools">{{ anviltools }}</table>
## Tool testing
After each successful deployment, automated tool tests are also run against the
instance. These serve as an end-to-end-like test for Galaxy, providing
confidence that Galaxy deployments are functional. These tests cycle on a weekly
basis through the entire suite of tools installed by default on AnVIL, providing
reasonable confidence that the tools encountered by most users remain
functional, and automating the detection and reporting of tools breaking.

### Tool test reports

Latest tool test reports for each chunk:

<table id="toolreports">{{ toolreports }}</table>

### Individual tool tests results over time:

<table id="tooltests">{{ tooltests }}</table>