gpt4 book ai didi

wiremock - 在 wiremock 映射 json BodyPatterns 中,只有最后一次比较正在进行

转载 作者:行者123 更新时间:2023-12-04 15:19:07 28 4
gpt4 key购买 nike

我正在使用 wiremock-jre8-standalone-2.27.0 jar 来模拟 API。我的映射 json 看起来像:

 {
"request": {
"url": "/sampleUrl",
"method": "POST",
"bodyPatterns": [
{
"matchesJsonPath" : {
"expression": "$[0].fruit",
"contains": "apple"
},
"matchesJsonPath" : {
"expression": "$[0].quantity",
"contains": "1221"
},
"matchesJsonPath" : {
"expression": "$[1].fruit",
"contains": "banana"
},
"matchesJsonPath" : {
"expression": "$[2].quantity",
"contains": "2784"
}
}
]
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json; charset=utf-8"
},
"bodyFileName": "prices.json",
"delayDistribution": {
"type": "uniform",
"lower": 200000,
"upper": 500000
}

可以看出 bodyPatterns 中有 4 个 matchesJsonPath,但只有最后一个 matchesJsonPath ($[2].quantity == 2784 ) 每次都进行比较。我是否更改了请求正文中的剩余内容,例如前三个 matchesJsonPath 失败并通过 Postman 发送请求我仍然得到响应。有没有办法让 Wiremock 检查所有条件?

最佳答案

问题出在您的 bodyPatterns 数组上。每个匹配项都需要是数组中它自己的 JSON 对象。您目前将所有匹配器都放在一个对象中。

"bodyPatterns": [
{
"matchesJsonPath" : {
"expression": "$[0].fruit",
"contains": "apple"
}
},
{
"matchesJsonPath" : {
"expression": "$[0].quantity",
"contains": "1221"
}
},
{
"matchesJsonPath" : {
"expression": "$[1].fruit",
"contains": "banana"
}
},
{
"matchesJsonPath" : {
"expression": "$[2].quantity",
"contains": "2784"
}
}
]

关于wiremock - 在 wiremock 映射 json BodyPatterns 中,只有最后一次比较正在进行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63735020/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com