在下面的例子中,创建匹配字符串的正确方法是什么?
我只能使用正确的匹配字符串来验证以下两个JSON。文章源自玩技e族-https://www.playezu.com/193585.html
在其中一个例子中,我们有一个;“期间”;数据文章源自玩技e族-https://www.playezu.com/193585.html
{
"id": 1,
"period":
[
{
"startDate": "2022-05-05",
"endDate": "2022-05-06"
},
{
"startDate": "2022-06-05",
"endDate": "2022-06-06"
}
]
}
另一方面,它是一个空数组。文章源自玩技e族-https://www.playezu.com/193585.html
{
"id": 1,
"period": []
}
我一直在尝试下面的匹配字符串,但同样的似乎失败了文章源自玩技e族-https://www.playezu.com/193585.html
* match response contains deep "##({period: [{startDate: '#notnull'}]})"
下载功能测试 软件测试文章源自玩技e族-https://www.playezu.com/193585.html 文章源自玩技e族-https://www.playezu.com/193585.html
未知地区 1F
干得好:
* def dateSchema = { startDate: ‘#string’, endDate: ‘#string’ }
* match response == { id: ‘#number’, period: ‘#[] dateSchema’ }