{% extends 'layout.jinja2.html' %} {% from 'test_macro.jinja2.html' import test_table %} {% block title %}Test: {{test['test_id']}}{% endblock %} {% block style %} #artifacts_tbl pre { white-space: pre-wrap; } {% endblock %} {% block body %}

Test: {{test['test_id']}}

{% if test['completed_date'] %} {% endif %} {% if test['test_definition']['description']|length > 0 %} {% endif %} {% if has_chart %} {% endif %} {% if artifacts|length > 0 %} {% for rev_n in range(test['test_definition']['revisions']|length) %} {% set revision = test['test_definition']['revisions'][rev_n] %} {% endfor %} {% for op_n in range(test['test_definition']['operations']|length) %} {% set op = test['test_definition']['operations'][op_n] %} {% endfor %} {% endblock %}
Title{{test['test_definition']['title']}}
User{{test['user']}}
Cluster{{test['cluster']}}
Status{{test['status']}} {% if test['status'] == 'in_progress' %} This test is currently in progress, view the console to monitor progress {% endif %}
Date Scheduled{{test['scheduled_date']}}
Date Completed{{test['completed_date']}}
Description
{{test['test_definition']['description']}}
Number of nodes{{test['test_definition']['num_nodes']}}
ChartView Chart
Artifacts
{% for artifact in artifacts %} {% if artifact['artifact_type'] in ('failure',) %} {% elif artifact['artifact_type'] in ('link',) %} {% else %} {% endif %} {% endfor %}
{{artifact['artifact_type']}}
{{artifact['artifact']}}
{{artifact['artifact_type']}}{{artifact['description']}}
{{artifact['artifact_type']}}{{artifact['description']}}
{% endif %}
Revisions
Revision {{rev_n + 1}} {% if revision['label'] %} {% endif %} {% if revision['yaml'] %} {% endif %} {% if revision['env'] %} {% endif %} {% for option, value in revision['options'].items() %} {% endfor %}
Revision{{revision['revision']}}
Label{{revision['label']}}
Cassandra.yaml
{{revision['yaml']}}
Environment
{{revision['env']}}
{{option}}{{value}}
Operations
Operation {{op_n + 1}} {% if op['command'] %} {% endif %}
Operation{{op['operation']}}
Command{{op['command']}}