Update @DynamicPropertySource examples regarding changes in Testcontainers
Closes gh-29939
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2002-2020 the original author or authors.
|
* Copyright 2002-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@@ -70,14 +70,16 @@ import java.lang.annotation.Target;
|
|||||||
* class ExampleIntegrationTests {
|
* class ExampleIntegrationTests {
|
||||||
*
|
*
|
||||||
* @Container
|
* @Container
|
||||||
* static RedisContainer redis = new RedisContainer();
|
* static GenericContainer redis =
|
||||||
|
* new GenericContainer(DockerImageName.parse("redis:5.0.3-alpine"))
|
||||||
|
* .withExposedPorts(6379);
|
||||||
*
|
*
|
||||||
* // ...
|
* // ...
|
||||||
*
|
*
|
||||||
* @DynamicPropertySource
|
* @DynamicPropertySource
|
||||||
* static void redisProperties(DynamicPropertyRegistry registry) {
|
* static void redisProperties(DynamicPropertyRegistry registry) {
|
||||||
* registry.add("redis.host", redis::getContainerIpAddress);
|
* registry.add("redis.host", redis::getHost);
|
||||||
* registry.add("redis.port", redis::getMappedPort);
|
* registry.add("redis.port", redis::getFirstMappedPort);
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* }</pre>
|
* }</pre>
|
||||||
|
|||||||
@@ -4342,12 +4342,14 @@ properties.
|
|||||||
class ExampleIntegrationTests {
|
class ExampleIntegrationTests {
|
||||||
|
|
||||||
@Container
|
@Container
|
||||||
static RedisContainer redis = new RedisContainer();
|
static GenericContainer redis =
|
||||||
|
new GenericContainer(DockerImageName.parse("redis:5.0.3-alpine"))
|
||||||
|
.withExposedPorts(6379);
|
||||||
|
|
||||||
@DynamicPropertySource
|
@DynamicPropertySource
|
||||||
static void redisProperties(DynamicPropertyRegistry registry) {
|
static void redisProperties(DynamicPropertyRegistry registry) {
|
||||||
registry.add("redis.host", redis::getContainerIpAddress);
|
registry.add("redis.host", redis::getHost);
|
||||||
registry.add("redis.port", redis::getMappedPort);
|
registry.add("redis.port", redis::getFirstMappedPort);
|
||||||
}
|
}
|
||||||
|
|
||||||
// tests ...
|
// tests ...
|
||||||
@@ -4365,13 +4367,15 @@ properties.
|
|||||||
|
|
||||||
@Container
|
@Container
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
val redis: RedisContainer = RedisContainer()
|
val redis: GenericContainer =
|
||||||
|
GenericContainer(DockerImageName.parse("redis:5.0.3-alpine"))
|
||||||
|
.withExposedPorts(6379)
|
||||||
|
|
||||||
@DynamicPropertySource
|
@DynamicPropertySource
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun redisProperties(registry: DynamicPropertyRegistry) {
|
fun redisProperties(registry: DynamicPropertyRegistry) {
|
||||||
registry.add("redis.host", redis::getContainerIpAddress)
|
registry.add("redis.host", redis::getHost)
|
||||||
registry.add("redis.port", redis::getMappedPort)
|
registry.add("redis.port", redis::getFirstMappedPort)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user