测试容器在 Spring 引导项目中启动两个容器而不是一个

Testcontainers start two containers instead of one in Spring boot project

我正在使用带有 Spring Boot 2.4 和 Junit5 的 Testcontainers 1.15.3。 当我 运行 我的测试时,testcontainers 启动第一个容器并执行 flyway 脚本,然后停止第一个容器。立即启动第二个容器(不启动 flyway 脚本)。 我的测试失败,因为第二个容器不包含数据。

摘要class:

@ExtendWith({RestDocumentationExtension.class, SpringExtension.class})
@TestPropertySource(locations = "classpath:application-test.properties")
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@AutoConfigureTestDatabase(replace = AutoConfigureTestDatabase.Replace.NONE)
public abstract class AbstractIntegrationTest {
//...
}

测试class:

class ClassTest extends AbstractIntegrationTest{
    
    @Test
    void getById () throws Exception {
    //...
    }

}

属性 测试文件(jdbc url 包含 jdbc:tc 以启动测试容器):

spring.flyway.locations = classpath:database/structure,classpath:database/data
spring.datasource.url=jdbc:tc:postgresql:13.3:///databasename?TC_INITSCRIPT=file:src/test/resources/database/dataset/add_user.sql

启动测试后的日志:

...
...
2021-06-21 12:56:52 [main] INFO   [postgres:13.3] - Creating container for image: postgres:13.3
2021-06-21 12:56:52 [main] INFO   [postgres:13.3] - Starting container with ID: 6a41054e8ec0f9045f8db9e945134234458a0e60b6157618f6f139cdf77d0cc4
2021-06-21 12:56:52 [main] INFO   [postgres:13.3] - Container postgres:13.3 is starting: 6a41054e8ec0f9045f8db9e945134234458a0e60b6157618f6f139cdf77d0cc4
...
...
2021-06-21 12:56:53 [main] INFO  o.f.core.internal.command.DbMigrate - Migrating schema "public" to version "1.1.001 - init structure"
...
...
2021-06-21 12:56:55 [main] INFO  com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
2021-06-21 12:56:55 [main] INFO   [postgres:13.3] - Creating container for image: postgres:13.3
2021-06-21 12:56:55 [main] INFO   [postgres:13.3] - Starting container with ID: f02fccb0706f047918d849f897ce52bf41870a53821663b21212760c779db05f
2021-06-21 12:56:55 [main] INFO   [postgres:13.3] - Container postgres:13.3 is starting: f02fccb0706f047918d849f897ce52bf41870a53821663b21212760c779db05f

正如我们在上面的日志中看到的,创建了两个容器。

你能帮我解决这个问题吗?

谢谢。

我找到了适合我的情况的解决方案:删除 flyway 用户和密码属性以仅使用 spring 个。这些属性的重复导致数据源的双重启动。

之前

spring:
  flyway:
    locations: [ classpath:flyway-scripts ]
    user: xxx
    password: xxx
  datasource:
    url: jdbc:postgresql://localhost:5432/postgres
    username: xxx
    password: xxx

之后

spring:
  flyway:
    locations: [ classpath:flyway-scripts ]
  datasource:
    url: jdbc:postgresql://localhost:5432/postgres
    username: xxx
    password: xxx

我修复它的方法是将 ?TC_DAEMON=true 添加到数据源 url。 (在我的例子中,我使用了 postgis,所以只需将其替换为 jdbc:tc:postgresql:13.3

spring:
  datasource:
    driver-class-name: org.testcontainers.jdbc.ContainerDatabaseDriver
    url: jdbc:tc:postgis:9.6-2.5:///dbname?TC_DAEMON=true
    username: xxx
    password: xxx
  flyway:
    enabled: true
    locations: 'classpath:db/migration'
    url: ${spring.datasource.url}
    user: ${spring.datasource.username}
    password: ${spring.datasource.password}
    validate-on-migrate: true