3

spring-boot-starter-data-rest と別の永続化リポジトリ (私の場合は spring-boot-starter-data-mongodb) を含めると、REST で CRUD のエンドポイントが自動的に作成されます (@SpringBootApplication でアノテーションが付けられたメイン メソッドを含むメイン クラスがあると仮定します)正しいレベルで)あなたのために作成されました。たとえば、SampleEntity インスタンスを管理するための SampleRepository があるため、http://locahost:8080/api/sampleEntitiesにアクセスすると、basePath の下に GET、PUT、POST、DELETE などのエンドポイントを取得します。

これらのエンドポイントを JUnit 5 + Mockito + Spring Boot でテストするにはどうすればよいですか?

これは参照用の現在のテスト ケースですが、確認できる唯一のエンドポイントはプロファイル エンドポイントです。

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.boot.test.web.client.TestRestTemplate;
import org.springframework.boot.web.server.LocalServerPort;
import org.springframework.context.ApplicationContext;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageImpl;
import org.springframework.data.domain.Pageable;
import org.springframework.hateoas.Resources;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;

import java.util.Collections;
import java.util.List;

import static java.util.Arrays.asList;
import static org.mockito.Mockito.doReturn;

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class SampleEntityRestTest {

    @LocalServerPort private int port;
    @MockBean private SampleRepository sampleRepository;

    @Autowired private ApplicationContext applicationContext;
    @Autowired private TestRestTemplate testRestTemplate;

    @DisplayName("Mocking sample repository works.")
    @Test
    public void checkMockingWorks() {
        List<SampleEntity> sampleEntityList = asList(SampleEntity.builder().firstName("firstname").lastName("lastname").email("some@some.com").build());
        Page<SampleEntity> page = new PageImpl<>(sampleEntityList);
        doReturn(page).when(sampleRepository).findAll(Pageable.unpaged());

        SampleRepository sampleRepositoryFromContext = applicationContext.getBean("sampleRepository", SampleRepository.class);
        List<SampleEntity> sampleEntityListFromContext = sampleRepositoryFromContext.findAll(Pageable.unpaged()).getContent();
        Assertions.assertFalse(sampleEntityListFromContext.isEmpty());
        Assertions.assertEquals("firstname", sampleEntityListFromContext.get(0).getFirstName());
        Assertions.assertEquals("lastname", sampleEntityListFromContext.get(0).getLastName());
        Assertions.assertEquals("some@some.com", sampleEntityListFromContext.get(0).getEmail());
    }

    @Test
    public void testCrudOfSampleEntity() {
        List<SampleEntity> sampleEntityList = asList(SampleEntity.builder().firstName("firstname").lastName("lastname").email("some@some.com").build());
        Page<SampleEntity> page = new PageImpl<>(sampleEntityList);
        doReturn(page).when(sampleRepository).findAll(Pageable.unpaged());

        ResponseEntity<Resources<SampleEntity>> resourcesResponseEntity = testRestTemplate.exchange(
                Constants.ENDPOINT + ":" + port + "/api/" + Constants.SAMPLE_ENTITY,
                HttpMethod.GET,
                null,
                new ParameterizedTypeReference<Resources<SampleEntity>>() {},
                Collections.emptyList());
        Assertions.assertEquals(200, resourcesResponseEntity.getStatusCode());
    }
}

実際のアプリケーションを実行し、http://localhost:8080/api/sampleEntitiesを指定すると問題なく動作します。

実際のアプリケーション クラスは次のようになります。

package com.somepackage;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SomeRestApiApplication {

    public static void main(String[] args) {
        SpringApplication.run(SomeRestApiApplication.class, args);
    }

}

spring-boot-starter-data-rest によって自動的に生成された残りのエンドポイントをテストするために、テスト クラスとメソッドを構築する方法のコード例を教えてもらえますか?

4

0 に答える 0