Skip to content
Snippets Groups Projects
Commit 15387030 authored by Pavel Břoušek's avatar Pavel Břoušek
Browse files

life check in raw HTTP test

parent b1ba0e9f
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,6 @@ variables:
# first test standard response, then each test case
flow: |
headless();
set("VALID_STATUS_CODE", template["http_status_code"]);
set("VALID_BODY", template["http_body"]);
for (let testcase of iterate(template["TEST_CASES"])) {
set("TEST_CASE", testcase);
headless();
......
......@@ -16,14 +16,18 @@ variables:
flow: |
set("TEST_CASE", "standardResponse");
http();
set("VALID_STATUS_CODE", template["http_status_code"]);
set("VALID_BODY", template["http_body"]);
for (let testcase of iterate(template["TEST_CASES"])) {
set("TEST_CASE", testcase);
http();
}
http:
- raw:
- |
@Host: https://{{Hostname}}
GET {{Path}}/{{File}} HTTP/1.1
Host: {{Hostname}}
disable-path-automerge: true
- raw:
- |
@Host: https://{{CONFORMANCE_IDP_HOSTNAME}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment