gpt4 book ai didi

java - 使用 wiremock 时连接被拒绝

转载 作者:行者123 更新时间:2023-11-30 07:40:35 30 4
gpt4 key购买 nike

我在Junit中有这段代码,我明确将端口设置为8888

when(clientUtils.getLinkUrl(eq(HOSTELS_MICROSERVICE.name()), eq(HOSTELS_MICROSERVICE.name()), anyMap()))
.thenReturn("http://localhost:8888/HOSTELS/HOSTELSMethods");

stubFor(com.github.tomakehurst.wiremock.client.WireMock.get("/HOSTELS/HOSTELS_LIST").willReturn(
aResponse().withStatus(200)
.withHeader("Content-Type", APPLICATION_JSON_VALUE)
.withBody(ResourceUtils.getResourceFileAsString ("__files/HOSTELS.json"))));

但是当我运行测试时,我在这一行遇到了这个错误:

stubFor(com.github.tomakehurst.wiremock.client.WireMock.get("/HOSTELS/HOSTELS_LIST").willReturn(..

和错误:

wiremock.org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: connect

最佳答案

对于 Java 用户

基于WireMock文档。

在测试中有 3 种可能使用 WireMock :

  1. 如果您使用 Wiremock 作为 JUnit 4 规则来配置端口,请使用:
import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig;

...

@Rule
public WireMockRule wireMockRule = new WireMockRule(wireMockConfig().port(8888));
  1. 如果您正在使用新实例并从您的测试类启动它(例如 @Before):
import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.options;

...

public class Test {

WireMockServer wm;

@BeforeEach
void setUp() {
wm = new WireMockServer(options().port(8888));
wm.start();
}

@Test
void test() {
wm.stubFor(...);
}
}
  1. 使用默认实例的静态配置(不在测试中使用新实例):
WireMock.configureFor(8888);

对于 Kotlin 用户

如果您使用的是 kotlin,您可以将实际的 wiremock 实例添加到 stubForverify 调用,例如 wm.stubFor() 并配置端口就像这个答案的选项 3 一样。

关于java - 使用 wiremock 时连接被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57626072/

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