在 SpringBoot 中使用 Testcontainers 进行 Spring Data Elasticsearch 集成测试

Posted

技术标签:

【中文标题】在 SpringBoot 中使用 Testcontainers 进行 Spring Data Elasticsearch 集成测试【英文标题】:Spring Data Elasticsearch integration test using Testcontainers in SpringBoot 【发布时间】:2021-05-02 07:29:38 【问题描述】:

我正在尝试使用 Testcontainers 和 junit5 在 SpringBoot 中为 Spring Data Elastisearch 存储库编写集成测试。但是测试失败了

org.springframework.beans.factory.UnsatisfiedDependencyException: 创建具有名称的 bean 时出错 'com.example.demo.AddressRepositoryTest':不满足的依赖关系 通过字段“存储库”表示;嵌套异常是 org.springframework.beans.factory.NoSuchBeanDefinitionException: 否 'com.example.demo.AddressRepository' 类型的限定 bean 可用:预计至少有 1 个符合 autowire 条件的 bean 候选人。依赖注解: @org.springframework.beans.factory.annotation.Autowired(required=true)

我该如何解决这个问题?我尝试了谷歌搜索,但找不到任何合适的内容。

DTO

@Data
@Document(indexName = "addresses")
public class Address 
    String city;
    String street;
    GeoJsonPoint location;

存储库

@Repository
public interface AddressRepository extends ElasticsearchRepository<Address, String> 


测试AddressRepositoryTest.java

@ExtendWith(SpringExtension.class)
@Testcontainers
class AddressRepositoryTest 

    private static final String ELASTICSEARCH_VERSION = "7.10.1";

    static class Initializer implements ApplicationContextInitializer<ConfigurableApplicationContext> 
        @Override
        public void initialize(final ConfigurableApplicationContext configurableApplicationContext) 

        
    

    @Container
    public static ElasticsearchContainer container = new ElasticsearchContainer(DockerImageName
            .parse("docker.elastic.co/elasticsearch/elasticsearch-oss")
            .withTag(ELASTICSEARCH_VERSION));

    @Autowired
    AddressRepository repository;

    @Autowired
    private Config esConfig;

    @BeforeEach
    void setUp() 
        container.start();
        System.setProperty("elasticsearch.host", container.getContainerIpAddress());
        System.setProperty("elasticsearch.port", String.valueOf(container.getMappedPort(9300)));
        assertTrue(container.isRunning());
    

    @AfterEach
    void tearDown() 
        container.stop();
    

    @Test
    void save() 
        final Address address = new Address();
        address.setCity("Some city");
        address.setStreet("Some street");

        address.setLocation(GeoJsonPoint.of(0, 0));
        final Address save = repository.save(address);

    

【问题讨论】:

【参考方案1】:

在 Spring 中,您必须以某种方式初始化上下文,否则将无法自动装配。如果这是一个测试,通常可以使用 @Import 注释来设置特定配置,或者使用 @SpringBootTest 注释(在这种情况下,您不需要 @ExtendWith)。

请在 Google 上搜索“spring boot test”或“spring boot test jpa”。也许像 - https://www.baeldung.com/spring-boot-testing.

因为默认情况下没有创建上下文,所以没有什么可以自动装配。 @ExtendWith(SpringExtension.class) 不创建上下文。在生产应用程序中,@SpringBootApplication 会这样做,对于测试,有一个 @SpringBootTest 替代方案。

我还建议阅读一本书,Spring in action,前两章可能就足够了。

【讨论】:

非常感谢,它解决了我的问题。也感谢您的书籍​​推荐

以上是关于在 SpringBoot 中使用 Testcontainers 进行 Spring Data Elasticsearch 集成测试的主要内容,如果未能解决你的问题,请参考以下文章

在springboot中使用拦截器

SpringBoot中使用kafka

在springboot工程中使用filter

在SpringBoot中使用热部署(DevTools)

Springboot联结万物学习笔记--Springboot微服务基础搭建篇-- SpringBoot中日志的使用

07.ElasticSearch在springboot中使用