Allow testcontainer beans to also contribute properties

Allow `Container` bean definitions to inject a `DynamicPropertyRegistry`
so that they can contribute environment properties.

Closes gh-35201
This commit is contained in:
Phillip Webb
2023-05-02 18:55:03 -07:00
parent e9578fe745
commit 26566d4a30
13 changed files with 491 additions and 11 deletions

View File

@@ -0,0 +1,44 @@
/*
* Copyright 2012-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package smoketest.session.redis;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.test.context.TestConfiguration;
import org.springframework.boot.testsupport.testcontainers.RedisContainer;
import org.springframework.context.annotation.Bean;
import org.springframework.test.context.DynamicPropertyRegistry;
public class TestPropertiesSampleSessionRedisApplication {
public static void main(String[] args) {
SpringApplication.from(SampleSessionRedisApplication::main).with(ContainerConfiguration.class).run(args);
}
@TestConfiguration(proxyBeanMethods = false)
static class ContainerConfiguration {
@Bean
RedisContainer redisContainer(DynamicPropertyRegistry properties) {
RedisContainer container = new RedisContainer();
properties.add("spring.data.redis.host", container::getHost);
properties.add("spring.data.redis.port", container::getFirstMappedPort);
return container;
}
}
}

View File

@@ -22,19 +22,21 @@ import org.springframework.boot.testcontainers.service.connection.ServiceConnect
import org.springframework.boot.testsupport.testcontainers.RedisContainer;
import org.springframework.context.annotation.Bean;
@TestConfiguration(proxyBeanMethods = false)
public class TestSampleSessionRedisApplication {
@Bean
@ServiceConnection("redis")
RedisContainer redisContainer() {
return new RedisContainer();
}
public class TestServiceConnectionSampleSessionRedisApplication {
public static void main(String[] args) {
SpringApplication.from(SampleSessionRedisApplication::main)
.with(TestSampleSessionRedisApplication.class)
.run(args);
SpringApplication.from(SampleSessionRedisApplication::main).with(ContainerConfiguration.class).run(args);
}
@TestConfiguration(proxyBeanMethods = false)
static class ContainerConfiguration {
@Bean
@ServiceConnection("redis")
RedisContainer redisContainer() {
return new RedisContainer();
}
}
}