为什么 Testcontainers 不使用 application.properties / application.yaml?

Why does Testcontainers not use application.properties / application.yaml?

在我的 Spring Boot 2.4.3 应用程序中,我使用了 Testcontainers 并遵循了在 Internet 上找到的说明。我有一个 application.yaml:

spring:
  datasource:
    url: jdbc:tc:postgresql:13.2:///testdb?TC_INITSCRIPT=tc_initscript_postgresql.sql
    username: duke
    password: s3crEt
  jpa:
    database-platform: org.hibernate.dialect.PostgreSQL95Dialect
    hibernate:
      ddl-auto: create-drop

但是当我调试应用程序时,容器始终将 'test' 作为 URL、用户名和密码的值。

这是我的测试 class:

@ActiveProfiles("test")
@Testcontainers
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public abstract class AbstractApplicationIT {

    final static DockerImageName POSTGRES_IMAGE = DockerImageName.parse("postgres:13.2-alpine");

        @Container
    //    public static GenericContainer postgreSQLContainer = new GenericContainer(POSTGRES_IMAGE)
        public static PostgreSQLContainer<?> postgreSQLContainer = new PostgreSQLContainer<>(POSTGRES_IMAGE)
    //            .withInitScript("tc_initscript_postgresql.sql")
    //            .withPassword("password")
    //            .withUsername("username")
    //            .withDatabaseName("test")
    //            .withInitScript("tc_initscript_postgresql.sql")
                ;
    
    //    @DynamicPropertySource
    //    static void postgresqlProperties(DynamicPropertyRegistry registry) {
    //        registry.add("spring.datasource.url", postgreSQLContainer::getJdbcUrl);
    //        registry.add("spring.datasource.password", postgreSQLContainer::getPassword);
    //        registry.add("spring.datasource.username", postgreSQLContainer::getUsername);
    //    }
    
        @Test
        public void contextLoads() {
            System.out.println(postgreSQLContainer.getDatabaseName());
            System.out.println(postgreSQLContainer.getUsername());
            System.out.println(postgreSQLContainer.getPassword());
        }
    
    }

System.out:

test
test
test

...即使不使用 @DynamicPropertySource.

容器不知道application.properties。

application.properties 是 Spring 引导配置,与 Testcontainers 无关。

您可以像这样覆盖值

@Container
private PostgreSQLContainer postgresqlContainer = new PostgreSQLContainer()
    .withDatabaseName("foo")
    .withUsername("foo")
    .withPassword("secret");

您还可以像这样从 application.properties 中读取值:

@Value("spring.datasource.username")
private String username;

测试人员可以使用 JDBC support.

从您的 spring.datasource.url 派生容器定义

一个最小的例子如下所示:

@SpringBootTest(properties = {
  "spring.datasource.url=jdbc:tc:postgresql:12:///springboot?TC_INITSCRIPT=somepath/init_mysql.sql"
})
class AbstractApplicationIT {
 
  @Autowired
  private YourRepository yourRepository;
 
  @Test
  @Sql("/scripts/INIT_THREE_ORDERS.sql")
  void shouldReturnOrdersThatContainMacBookPro() {
    List<Order> orders = yourRepository.findAllContainingMacBookPro();
    assertEquals(2, orders.size());
  }
}

要使其正常工作,请不要在测试中手动指定任何额外的容器定义。