如何在json响应空手道框架中验证数组

时间:2017-11-17 11:37:52

标签: karate

在下面的示例中,如果warehouse是一个数组,我如何验证json响应,如下例所示:

Scenario: using karate's simpler alternative to json-schema
* def warehouseLocation = { latitude: '#number', longitude: '#number' }
* def productStructure =
"""
{
 id: '#number',
 name: '#string',
 price: '#number? _ > 0',
 tags: '##[_ > 0] #string',
   dimensions: {
     length: '#number',
     width: '#number',
     height: '#number'
   },
 warehouseLocation: '##(warehouseLocation)'
}
"""
* def json = read('products.json')
* match json == '#[] productStructure'

我把#array放在哪里。 我尝试了不同的问题,但它不起作用。感谢

1 个答案:

答案 0 :(得分:1)

您的问题是要求warehouse我在您的示例中根本找不到。我假设你要求这个:

warehouseLocation: '#[] warehouseLocation'