hurl/integration/tests_failed/predicate.hurl

43 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-08-27 10:07:46 +03:00
GET http://localhost:8000/predicate/error/type
2022-11-11 16:25:00 +03:00
HTTP 200
2020-08-27 10:07:46 +03:00
[Asserts]
2023-06-18 15:35:03 +03:00
jsonpath "$.status" == "true"
jsonpath "$.count" == 0
jsonpath "$.message" == 0
jsonpath "$.empty" == 0
jsonpath "$.number" == 1.1
2023-07-25 17:31:36 +03:00
jsonpath "$.count" startsWith "0"
jsonpath "$.count" endsWith "0"
jsonpath "$.count" matches "hi"
jsonpath "$.count" isEmpty
jsonpath "$.count" includes "foo"
2020-08-27 10:07:46 +03:00
jsonpath "$.message" startsWith "hi"
2021-07-16 09:13:23 +03:00
jsonpath "$.message" endsWith "hi"
2020-08-27 10:07:46 +03:00
jsonpath "$.message" contains "hi"
jsonpath "$.message" matches "hi"
2023-07-25 17:31:36 +03:00
jsonpath "$.message" matches "hi{"
jsonpath "$.message" isEmpty
jsonpath "$.message" count == 1
2020-08-27 10:07:46 +03:00
jsonpath "$.toto" exists
jsonpath "$.message" not exists
jsonpath "$.list" count == 2
2023-07-25 17:31:36 +03:00
jsonpath "$.not-exist" == 2
jsonpath "$.not-exist" > 3
jsonpath "$.not-exist" >= 3
jsonpath "$.not-exist" < 1
jsonpath "$.not-exist" <= 1
jsonpath "$.not-exist" count == 1
jsonpath "$.not-exist" startsWith "foo"
jsonpath "$.not-exist" endsWith "foo"
jsonpath "$.not-exist" contains "foo"
jsonpath "$.not-exist" includes "foo"
jsonpath "$.not-exist" matches /foo/
jsonpath "$.not-exist" isInteger
jsonpath "$.not-exist" isFloat
jsonpath "$.not-exist" isBoolean
jsonpath "$.not-exist" isString
jsonpath "$.not-exist" isCollection
jsonpath "$.not-exist" isDate
jsonpath "$.not-exist" exists
jsonpath "$.not-exist" isEmpty