JSON 负载的 Wiremock 请求模板,具有多个允许的密钥,但响应相同
Wiremock Request Templating for JSON Payload with multiple allowed keys, but same response
尝试模拟一个 API 端点,该端点允许具有 2 个可能有效负载的请求,但响应相同:
请求选项 1
{
"key1": "value1"
}
请求选项 2
{
"key2": "value2"
}
基于 Request Templating documentation,我看到有一个选项可以为 matchesJsonPath
定义一些正则表达式。
但是,我无法弄清楚如何提供允许 key1
或 key2
.
的配置
这是我试过的方法,但它似乎不起作用:
{
// ... other configs
"request": {
"bodyPatterns": [
{
"matchesJsonPath": "$.(key1|key2)"
}
]
}
}
是否可以提供 1 个支持两种有效负载的定义,或者我是否必须创建 2 个存根?
注意:我使用的是 standalone Wiremock Docker image,因此使用 Java 进行更复杂处理的选项有限。
您的 JsonPath 匹配器格式不正确。您需要应用 filter/script(由 ?()
表示)。有关 JsonPath 匹配器如何工作的更多信息 can be found here.
格式正确的 JsonPath 匹配器如下所示:
{
"matchesJsonPath": "$[?(@.key1 || @.key2)]"
}
如果您需要 key1
和 key2
具有特定的值,则看起来像:
{
"matchesJsonPath": "$[?(@.key1 == 'value1' || @.key2 == 'value2')]"
}
尝试模拟一个 API 端点,该端点允许具有 2 个可能有效负载的请求,但响应相同:
请求选项 1
{
"key1": "value1"
}
请求选项 2
{
"key2": "value2"
}
基于 Request Templating documentation,我看到有一个选项可以为 matchesJsonPath
定义一些正则表达式。
但是,我无法弄清楚如何提供允许 key1
或 key2
.
这是我试过的方法,但它似乎不起作用:
{
// ... other configs
"request": {
"bodyPatterns": [
{
"matchesJsonPath": "$.(key1|key2)"
}
]
}
}
是否可以提供 1 个支持两种有效负载的定义,或者我是否必须创建 2 个存根?
注意:我使用的是 standalone Wiremock Docker image,因此使用 Java 进行更复杂处理的选项有限。
您的 JsonPath 匹配器格式不正确。您需要应用 filter/script(由 ?()
表示)。有关 JsonPath 匹配器如何工作的更多信息 can be found here.
格式正确的 JsonPath 匹配器如下所示:
{
"matchesJsonPath": "$[?(@.key1 || @.key2)]"
}
如果您需要 key1
和 key2
具有特定的值,则看起来像:
{
"matchesJsonPath": "$[?(@.key1 == 'value1' || @.key2 == 'value2')]"
}