Skip to content

Commit 1b31a0d

Browse files
committed
Show interim responses in tooltip
1 parent 10f2e12 commit 1b31a0d

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

test-engine/lib/tpl/checks.liquid

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77

88
### The following checks will be performed:
99

10+
{%- if request.interim_responses -%}
11+
{%- for interim_response in request.interim_responses %}
12+
- The client will check that an interim response with the `{{ interim_response[0] }}` status code{% if interim_response[1] %} and the following headers{% endif %} is received.
13+
{%- render 'header-list' with interim_response[1] as headers %}
14+
{%- endfor -%}
15+
{%- endif -%}
16+
1017
{%- if request.expected_type %}
1118
- The client will check that this response {% case request.expected_type %}{% when "cached" %}is cached{% when "not_cached" %}is not cached{% when "lm_validated" %}is validated using `Last-Modified`{% when "etag_validated" %}is validated using `ETag`{% endcase %} {% if test.setup_tests contains "expected_type" %}{{ setup_prop }}{% endif %}{% endif -%}
1219

test-engine/lib/tpl/explain-test.liquid

+9-1
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,16 @@ The server will pause for {{ request.response_pause }} seconds before responding
6262

6363
{%- if request.response_status or request.response_headers or request.response_body %}
6464

65-
### The server sends a response containing:
65+
### The server sends {% if request.interim_responses %}responses{% else %}a response{% endif %} containing:
66+
6667
~~~
68+
{% if request.interim_responses -%}
69+
{% for interim_response in request.interim_responses -%}
70+
HTTP/1.1 {{ interim_response[0] }}
71+
{% for header in interim_response[1] %}{% render 'header-magic' with header as header %}
72+
{% endfor %}
73+
{% endfor -%}
74+
{%- endif -%}
6775
{% if request.expected_type == "lm_validated" or request.expected_type = "etag_validated" -%}
6876
HTTP/1.1 304 Not Modified
6977
{%- else -%}

0 commit comments

Comments
 (0)