Wiremock 如何在 JSON 中为独立 运行 映射 302 响应
Wiremock how to map a 302 response in JSON for standalone run
在 wiremock 中,如果您将其用于测试,您可以通过编程方式 return 302 使用具有目标路径的临时重定向(字符串目标)
stubFor(post(urlEqualTo("/firsturl"))
.willReturn(temporaryRedirect("https://somehost:8080/test/")))
我的问题是:如何在独立 运行 模式下使用 json 映射文件
做同样的事情
{
"request": {
"method": "POST",
"url": "/api/test"
},
"response": {
"status": 302,
????? <- how to return the path?
}
}
找不到关于此的任何信息。
如果你想重定向到一个单独的url,你可以使用WireMock's proxying functionality。
它看起来像...
{
"request": {
"method": "POST",
"url": "/api/test"
},
"response": {
"status": 302,
"proxyBaseUrl": "https://somehost:8080/test/"
}
}
在 wiremock 中,如果您将其用于测试,您可以通过编程方式 return 302 使用具有目标路径的临时重定向(字符串目标)
stubFor(post(urlEqualTo("/firsturl"))
.willReturn(temporaryRedirect("https://somehost:8080/test/")))
我的问题是:如何在独立 运行 模式下使用 json 映射文件
做同样的事情 {
"request": {
"method": "POST",
"url": "/api/test"
},
"response": {
"status": 302,
????? <- how to return the path?
}
}
找不到关于此的任何信息。
如果你想重定向到一个单独的url,你可以使用WireMock's proxying functionality。
它看起来像...
{
"request": {
"method": "POST",
"url": "/api/test"
},
"response": {
"status": 302,
"proxyBaseUrl": "https://somehost:8080/test/"
}
}