在下面的示例中,如果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放在哪里。 我尝试了不同的问题,但它不起作用。感谢
答案 0 :(得分:1)
您的问题是要求warehouse
我在您的示例中根本找不到。我假设你要求这个:
warehouseLocation: '#[] warehouseLocation'