我有一个pact代理服务器托管在https://mytestbroker.com. 我可以浏览经纪网页。
当我跑的时候 mvn test
,协定测试失败,连接超时错误。
curl -i https://mytestbroker.com
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=utf-8
Date: Wed, 06 Jan 2021 03:40:58 GMT
Server: nginx/1.13.12
Status: 200 OK
X-Content-Type-Options: nosniff
X-Pact-Broker-Version: 2.29.0
X-Powered-By: Phusion Passenger 6.0.2
Content-Length: 2648
Connection: keep-alive
@PactBroker(host = "mytestbroker.com", scheme = "https", consumers = {"my-api"})
@Provider("backend1")
public class MyContractTest {
@State("do some action")
public void testBackendService1() {
}
}
org.apache.http.conn.HttpHostConnectException: Connect to mytestbroker.com:443 [mytestbroker.com/2.2.2.2, mytestbroker.com/5.5.5.5] failed: Operation timed out (Connection timed out)
Caused by: java.net.ConnectException: Operation timed out (Connection timed out)
1条答案
按热度按时间0ejtzxu11#
这个错误似乎与pact无关,更多的是关于网络。
经纪人是否可以公开访问?测试本身是如何运行的?它们的中间代理curl知道java进程不知道吗?
您应该启用调试级别日志记录来查看pact所看到的内容。