功能测试中的 WSRequest 将最终超时

发布于 2024-12-01 10:16:34 字数 500 浏览 1 评论 0原文

我有以下功能测试。由于某种原因, get() 调用最终总是会收到 java.util.concurrent.TimeoutException: No response returned after 60000ms。

有什么见解吗?另外,我从浏览器内部尝试了相同的网址,它工作得很好。

public class MyTest extends FunctionalTest {
    @Before
    public void setup() {
        Fixtures.loadYaml("data.yml");
    }

    @Test
    public void testIndex() {
        HttpResponse response = WS.url("http://localhost:9001/tags/index").get(); 
        assertEquals(response.getStatus(), (Integer)200);
    }
}

I have the following functional test. For some reason, the get() call always end up getting a java.util.concurrent.TimeoutException: No response received after 60000ms.

Any insights? Also, I tried the same url from inside browser, it works just fine.

public class MyTest extends FunctionalTest {
    @Before
    public void setup() {
        Fixtures.loadYaml("data.yml");
    }

    @Test
    public void testIndex() {
        HttpResponse response = WS.url("http://localhost:9001/tags/index").get(); 
        assertEquals(response.getStatus(), (Integer)200);
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阳光下的泡沫是彩色的 2024-12-08 10:16:34

将以下内容添加到 application.conf 将修复问题

%test.play.pool=2

Adding the following into application.conf would fix the problem

%test.play.pool=2

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文