Karate - how to check if array contains values?

a 夏天 提交于 2020-08-20 08:54:41

问题


I have defined array

* def array = [ {"code": "codeA", "boolValue": false, "a": 5, "c": false}, {"code": "codeA", "boolValue": true, "a": 7, "c": true}, {"code": "codeB", "boolValue": true, "a": 1, "c": false} ]

And variable

* def expected = { "code": "codeB", "boolValue": true }

How to check if array contains expected? In the last element of array there is expected value but it contains some additional values and thats why it failed all the time I try to check that.


回答1:


This will work in 0.9.6.RC4:

* match array contains deep expected

In prior versions:

* match array contains '#(^expected)'

Please read the docs: https://github.com/intuit/karate/tree/develop#schema-validation



来源:https://stackoverflow.com/questions/63395373/karate-how-to-check-if-array-contains-values

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!