Spring Boot Integration测试随机自由端口

pti*_*son 2 java spring integration-testing spring-test spring-boot

我能够获得Spring Boot集成以生成随机自由端口以启动自身.但我还需要Redis的免费端口.

@ContextConfiguration(classes = {MyApplication.class}, loader = SpringApplicationContextLoader.class)
@WebIntegrationTest(randomPort = true, value = "server.port:0")
@ActiveProfiles(profiles = {"local"})
public class SegmentSteps {

    private static final String HOST_TEMPLATE = "http://localhost:%s";

    // Needs to be a random open port
    private static final int REDIS_PORT = 6380;

    private String host;
    @Value("${local.server.port}")
    private int serverPort;

    private RedisServer redisServer;

    @Before
    public void beforeScenario() throws Exception {
        host = String.format(HOST_TEMPLATE, serverPort);
        redisServer = RedisServer.builder()
                .redisExecProvider(RedisExecProvider.defaultProvider())
                .port(REDIS_PORT)
                .setting("bind 127.0.0.1")
                .build();
        redisServer.start();
    }

    ...
}
Run Code Online (Sandbox Code Playgroud)

关于如何实现这一点的任何想法?

And*_*son 14

您可以使用Spring Framework SocketUtils获取可用端口:

int redisPort = SocketUtils.findAvailableTcpPort();
Run Code Online (Sandbox Code Playgroud)