作者: | 来源:互联网 | 2023-09-23 09:56
我一直在尝试使用WireMock验证http请求是否已发送到外部服务。
我想将字符串数组传递给util方法,它是请求字段之一。但是我不断收到不同的错误。
到目前为止,我已经尝试过:
static verifyRequestSent(List someValues) {
verify(putRequestedFor(urlEqualTo("/someUrl"))
.withRequestBody(containing("\"field\":${someValues.toString()}".toString()))
)
}
static verifyRequestSent(List someValues) {
verify(putRequestedFor(urlEqualTo("/someUrl"))
.withRequestBody(equalToJson("""
{
"field": $someValues
}
""")
)
)
}