
autobahntestsuite.templates.testresult.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autobahntestsuite-maven-plugin Show documentation
Show all versions of autobahntestsuite-maven-plugin Show documentation
Maven plugin which allows to run the Autobahn Testsuite as part of
the build.
The newest version!
{% extends "base.html" %}
{% block inner %}
{% if testresult.passed %}
Pass ({{ testresult.duration | round(1) }} ms)
{% else %}
Fail
{% endif %}
{{ testresult.testeeName }} - Test Case {{ testresult.caseName }}
Description
{{ testresult.description|safe }}
{{ testresult.expectation }}
Expected
Session Index
Session ID
Topic
Payload
{% if testresult.expected %}
{% for sid in testresult.expected %}
{% if testresult.expected[sid]|length > 0 %}
{% for event in testresult.expected[sid] %}
0
{{ sid }}
{{ event[0] }}
{{ event[1] }}
{% endfor %}
{% else %}
{% endif %}
{% endfor %}
{% else %}
Nothing.
{% endif %}
Observed
Session Index
Session ID
Topic
Payload
{% if testresult.observed %}
{% for sid in testresult.observed %}
{% if testresult.observed[sid]|length > 0 %}
{% for event in testresult.observed[sid] %}
0
{{ sid }}
{{ event[0] }}
{{ event[1] }}
{% endfor %}
{% else %}
{% endif %}
{% endfor %}
{% else %}
Nothing.
{% endif %}
Log
Timestamp
Session Index
Session ID
Message
{% for line in testresult.log %}
{{ line[0] | round(6) }}
{% if line[1] is none %} {% else %}{{ line[1] }}{% endif %}
{% if line[2] is none %} {% else %}{{ line[2] }}{% endif %}
{{ line[3] }}
{% endfor %}
{% endblock %}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy