mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 16:11:34 +03:00
105 lines
2.6 KiB
Plaintext
105 lines
2.6 KiB
Plaintext
GET http://localhost:8000/assert-json
|
|
[Options]
|
|
variable: one=1
|
|
variable: two=2
|
|
variable: three=3
|
|
variable: four=4
|
|
variable: five=5
|
|
variable: foo=abc
|
|
insecure: false
|
|
HTTP 200
|
|
[Captures]
|
|
count: jsonpath "$.count"
|
|
[Asserts]
|
|
jsonpath "$.count" == 5
|
|
jsonpath "$.count" == 5.0
|
|
jsonpath "$.count" == {{five}}
|
|
jsonpath "$.count" != 4
|
|
jsonpath "$.count" != {{four}}
|
|
jsonpath "$.count" not == 4
|
|
jsonpath "$.count" > 1
|
|
jsonpath "$.count" > {{one}}
|
|
jsonpath "$.count" > 1.0
|
|
jsonpath "$.success" == false
|
|
jsonpath "$.success" != null
|
|
jsonpath "$.success" exists
|
|
jsonpath "$.success" isBoolean
|
|
jsonpath "$.errors" count == 2
|
|
jsonpath "$.errors" isCollection
|
|
jsonpath "$.failures" count == 1
|
|
jsonpath "$.failures" isCollection
|
|
jsonpath "$.warnings" count == 0
|
|
jsonpath "$.warnings" isEmpty
|
|
jsonpath "$.toto" not exists
|
|
jsonpath "$.failures" exists
|
|
jsonpath "$.warnings" exists
|
|
jsonpath "$.errors[0]" exists
|
|
jsonpath "$.errors[0]" isCollection
|
|
jsonpath "$.errors[0].id" == "error1"
|
|
jsonpath "$.errors[0].id" isString
|
|
jsonpath "$.errors[0]['id']" == "error1"
|
|
jsonpath "$.errors[*].id" includes "error1"
|
|
jsonpath "$.errors[?(@.id=='error1')].id" nth 0 == "error1"
|
|
jsonpath "$.failures[*].id" includes "failure1"
|
|
jsonpath "$.duration" == 1.5
|
|
jsonpath "$.duration" <= 2.0
|
|
jsonpath "$.duration" < 2
|
|
jsonpath "$.duration" < {{two}}
|
|
jsonpath "$.duration" isFloat
|
|
jsonpath "$.duration" not isInteger
|
|
jsonpath "$.nullable" == null
|
|
jsonpath "$.tags[0]" == "test"
|
|
jsonpath "$.tags[0]" > "te"
|
|
jsonpath "$.tags[0]" < "testabc"
|
|
jsonpath "$.tags[0]" <= "test"
|
|
jsonpath "$.tags[0]" > "{{foo}}"
|
|
jsonpath "$.profile-id" == "123abc"
|
|
jsonpath "$['profile-id']" == "123abc"
|
|
jsonpath "$.errors[0]" not isEmpty
|
|
jsonpath "$.empty" isEmpty
|
|
# FIXME do we accept count filter on object?
|
|
# jsonpath "$.empty" count == 0
|
|
{
|
|
"count": 5,
|
|
"success": false,
|
|
"errors": [{"id":"error1"},{"id":"error2"}],
|
|
"failures": [{"id":"failure1"}],
|
|
"warnings": [],
|
|
"duration": 1.5,
|
|
"tags": ["test"],
|
|
"nullable": null,
|
|
"profile-id": "123abc",
|
|
"empty": {}
|
|
}
|
|
|
|
|
|
GET http://localhost:8000/assert-json/index
|
|
HTTP 200
|
|
[Captures]
|
|
index: body
|
|
|
|
|
|
GET http://localhost:8000/assert-json
|
|
HTTP 200
|
|
[Asserts]
|
|
jsonpath "$.errors[{{index}}].id" == "error2"
|
|
jsonpath "$.tags" includes "test"
|
|
jsonpath "$.tags" not includes "prod"
|
|
jsonpath "$.tags" not includes null
|
|
|
|
|
|
GET http://localhost:8000/assert-json/list
|
|
HTTP 200
|
|
[Asserts]
|
|
jsonpath "$" count == 2
|
|
jsonpath "$.[0].name" == "Bob"
|
|
jsonpath "$[0].name" == "Bob"
|
|
jsonpath "$.[?(@.id == 1)].name" nth 0 == "Bob"
|
|
jsonpath "$[?(@.id == 1)].name" nth 0 == "Bob"
|
|
|
|
|
|
GET http://localhost:8000/assert-json/filter
|
|
HTTP 200
|
|
[Asserts]
|
|
jsonpath "$.fruit[?(@.price.US==200)].name" nth 0 == "grape"
|