File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 7
7
8
8
### The following checks will be performed:
9
9
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
+
10
17
{%- if request .expected_type %}
11
18
- 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 -%}
12
19
Original file line number Diff line number Diff line change @@ -62,8 +62,16 @@ The server will pause for {{ request.response_pause }} seconds before responding
62
62
63
63
{%- if request .response_status or request .response_headers or request .response_body %}
64
64
65
- ### The server sends a response containing:
65
+ ### The server sends {% if request .interim_responses %}responses{% else %}a response{% endif %} containing:
66
+
66
67
~~~
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 -%}
67
75
{% if request .expected_type == "lm_validated" or request .expected_type = "etag_validated" -%}
68
76
HTTP/1.1 304 Not Modified
69
77
{%- else -%}
You can’t perform that action at this time.
0 commit comments