{% include "partials/header.html" %} {% include "partials/navbar.html" %}

Back

RNAGet Implementation Compliance Report

Server: {{server.server_name}}

Base URL: {{server.base_url}}

Total tests: {{server.total_tests}}

Total tests passed: {{server.total_tests_passed}}

Total tests failed: {{server.total_tests_failed}}

Total tests skipped: {{server.total_tests_skipped}}

Total warnings generated: {{server.total_warnings}}

{% for endpoint in h.s.endpoints %}

{{h.f.capitalize(endpoint)}} {% if not server.implemented[endpoint] %} not implemented by server {% endif %}

{% for ins_key in server.test_results[endpoint].keys() %}

{{h.f.capitalize(h.s.singles[endpoint])}} {{loop.index}} id: {{ins_key}}

Tests

{% for test in server.test_results[endpoint][ins_key] %}

Test: {{h.f.format_test_name(test.name)}} - {{ h.s.status[test.result].status }}

description: {{test.description}}

summary: {{test.text}}

{% if test.message.has_api_component %}

API Route Test Cases - {{ h.s.status[test.message.api_component.status].status }}

{% for case in test.message.api_component.cases %}

API Test Case: {{h.f.format_test_name(case.name)}} - {{ h.s.status[case.status].status }}

case description: {{case.description}}

case summary: {{case.summary}}

{% if case.error_message %}

error message: {{case.error_message}}

{% endif %}

{% for audit_log in case.audit %}

{{audit_log}}

{% endfor %}
{% endfor %} {% endif %} {% if test.message.has_content_component %}

File Content Test Cases - {{ h.s.status[test.message.content_component.status].status }}

{% for case in test.message.content_component.cases %}

Content Test Case: {{h.f.format_test_name(case.name)}} - {{ h.s.status[case.status].status }}

case description: {{case.description}}

case summary: {{case.summary}}

{% if case.error_message %}

error message: {{case.error_message}}

{% endif %}

{% for audit_log in case.audit %}

{{audit_log}}

{% endfor %}
{% endfor %} {% endif %} {% endfor %} {% endfor %}
{% endfor %}
{% for endpoint in h.s.endpoints %} {% for ins_key in server.test_results[endpoint].keys() %} {% for test in server.test_results[endpoint][ins_key] %} {% endfor %} {% endfor %} {% endfor %}
Server name Object and Id Test case Status
{{server.server_name}} {{h.f.capitalize(endpoint)}}: {{ins_key}} {{h.f.format_test_name(test.name)}} {{h.s.status[test.result].status}}
{% include "partials/footer.html" %}