微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java – com.github.tomakehurst.wiremock.client.VerificationException:预计至少有一个请求匹配

我想为API创建一个Stub,并希望验证服务器返回的API调用和响应.因为我已经实现了wiremock示例:

import org.junit.Rule;
import org.junit.Test;

import com.github.tomakehurst.wiremock.junit.wiremockRule;

public class MockTestDemo {

    private static final int wiremock_PORT = 8080;

    @Rule
    public wiremockRule wiremockRule = new wiremockRule(wiremock_PORT);

    @Test
    public void exampletest() {

    stubFor(get(urlEqualTo("/login")).withHeader("Accept",equalTo("application/json"))
            .willReturn(aResponse().withStatus(200).withBody("Login Success")
                    .withStatusMessage("Everything was just fine!"))
            .willReturn(okJson("{ \"message\": \"Hello\" }")));

       verify(getRequestedFor(urlPathEqualTo("http://localhost:8080/login")) 
            .withHeader("Content-Type",equalTo("application/json")));       }

}

但是低于错误

06001

如果我评论验证部分然后测试执行成功,我也通过调用http:// localhost:8080 / login验证了相同的邮件并且它成功返回响应?

在这里缺少什么东西?

最佳答案
在您的代码中,您正在查找响应,然后验证是否已为该存根发出请求.但是,您没有调用端点,因此测试失败.

您需要在验证端点之前调用它.

如果您使用Apache Commons HttpClient,您可以将测试编写为:

@Test
public void exampletest() throws Exception {

    stubFor(get(urlEqualTo("/login")).withHeader("Accept",equalTo("application/json"))
            .willReturn(aResponse().withStatus(200).withBody("Login Success")
                    .withStatusMessage("Everything was just fine!"))
            .willReturn(okJson("{ \"message\": \"Hello\" }")));

    String url = "http://localhost:8080/login";
    HttpClient client = HttpClientBuilder.create().build();
    HttpGet request = new HttpGet(url);
    request.addHeader("Content-Type","application/json");
    request.addHeader("Accept","application/json");
    HttpResponse response = client.execute(request);

    verify(getRequestedFor(urlPathEqualTo("/login"))
            .withHeader("Content-Type",equalTo("application/json")));
}

原文地址:https://www.jb51.cc/java/437496.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐