Add master-detail Hurl workflow

This commit is contained in:
Ophir LOJKINE
2026-06-02 12:46:44 +02:00
committed by Ophir LOJKINE
parent 7792fdfc24
commit 530524cd37
-1
View File
@@ -1 +0,0 @@
../../test.hurl
+48
View File
@@ -0,0 +1,48 @@
GET http://localhost:8080
HTTP 200
[Asserts]
header "Content-Type" contains "text/html"
body contains "SQLPage Form Demo"
body contains "Users"
body contains "Add a new user"
body not contains "An error occurred"
POST http://localhost:8080/insert_user.sql?id=987654
Content-Type: application/x-www-form-urlencoded
`First%20name=Hurl&Last%20name=Masterdetail&Email=hurl-masterdetail%40example.com`
HTTP 302
[Asserts]
header "Location" == "edit_user.sql?id=987654"
GET http://localhost:8080/edit_user.sql?id=987654
HTTP 200
[Asserts]
body contains "Edit user"
body contains "Hurl"
body contains "Masterdetail"
body contains "hurl-masterdetail@example.com"
body contains "Addresses"
body contains "Add address"
body not contains "An error occurred"
POST http://localhost:8080/insert_address.sql?user_id=987654
Content-Type: application/x-www-form-urlencoded
`Street=42%20Hurl%20Street&City=Testville&Country=Exampleland`
HTTP 302
[Asserts]
header "Location" == "edit_user.sql?id=987654"
GET http://localhost:8080/edit_user.sql?id=987654
HTTP 200
[Asserts]
body contains "Hurl"
body contains "Masterdetail"
body contains "42 Hurl Street, Testville, Exampleland"
body not contains "An error occurred"
GET http://localhost:8080
HTTP 200
[Asserts]
body contains "Hurl Masterdetail"
body contains "hurl-masterdetail@example.com"
body not contains "An error occurred"