티스토리 뷰
728x90
1. WebFlux를 테스트할 경웨는 WebTestClient를 사용해야 한다.
1-1 우선 WebTestClient을 해당 함수와 바인드하는 부분이 필요하다.
1-2 바인드 후에 WebMvc를 테스트 하듯 사용하면 된다.
package pe.pilseong.recipe.controller;
import static org.mockito.Mockito.when;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.springframework.http.MediaType;
import org.springframework.test.web.reactive.server.WebTestClient;
import org.springframework.web.reactive.function.server.RouterFunction;
import pe.pilseong.recipe.config.WebConfig;
import pe.pilseong.recipe.domain.Recipe;
import pe.pilseong.recipe.service.RecipeService;
import reactor.core.publisher.Flux;
public class RouterFunctionTest {
WebTestClient webTestClient;
@Mock
RecipeService recipeService;
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
WebConfig webConfig = new WebConfig();
RouterFunction<?> routerFunction = webConfig.routes(recipeService);
webTestClient = WebTestClient.bindToRouterFunction(routerFunction).build();
}
@Test
public void testGetRecipes() {
when(recipeService.getRecipes()).thenReturn(Flux.just());
webTestClient.get().uri("/api/recipes")
.accept(MediaType.APPLICATION_JSON)
.exchange()
.expectStatus().isOk();
}
@Test
public void testGetRecipesWithData() {
when(recipeService.getRecipes()).thenReturn(Flux.just(Recipe.builder().build(), Recipe.builder().build()));
webTestClient.get().uri("/api/recipes")
.accept(MediaType.APPLICATION_JSON)
.exchange()
.expectStatus().isOk()
.expectBodyList(Recipe.class);
}
}
728x90
'Spring > Spring Test' 카테고리의 다른 글
Spring Test : REST Controller TEST 용 코드 (0) | 2021.05.10 |
---|---|
Spring Test : Spring REST 유닛 테스트 (0) | 2020.09.03 |
Spring Test : Embedded MongoDB 통합테스트 시 connection closed (0) | 2020.08.30 |
Spring Test : Repository Integration Test with @RunWith, @Mongo (0) | 2020.08.21 |
Spring Test : 테스트 시 인자로 any or 특정 값? (0) | 2020.08.05 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
- 도커 개발환경 참고
- AWS ARN 구조
- Immuability에 관한 설명
- 자바스크립트 멀티 비동기 함수 호출 참고
- WSDL 참고
- SOAP 컨슈머 참고
- MySql dump 사용법
- AWS Lambda with Addon
- NFC 드라이버 linux 설치
- electron IPC
- mifare classic 강의
- go module 관련 상세한 정보
- C 메모리 찍어보기
- C++ Addon 마이그레이션
- JAX WS Header 관련 stackoverflow
- SOAP Custom Header 설정 참고
- SOAP Custom Header
- SOAP BindingProvider
- dispatcher 사용하여 설정
- vagrant kvm으로 사용하기
- git fork, pull request to the …
- vagrant libvirt bridge network
- python, js의 async, await의 차이
- go JSON struct 생성
- Netflix Kinesis 활용 분석
- docker credential problem
- private subnet에서 outbound IP 확…
- 안드로이드 coroutine
- kotlin with, apply, also 등
- 안드로이드 초기로딩이 안되는 경우
- navigation 데이터 보내기
- 레이스 컨디션 navController
- raylib
TAG
- 하이버네이트
- 외부파일
- one-to-many
- spring boot
- 매핑
- login
- RestTemplate
- WebMvc
- mapping
- one-to-one
- jsp
- Validation
- Angular
- 설정하기
- 로그인
- crud
- 상속
- 스프링부트
- 자바
- Security
- MYSQL
- Spring
- hibernate
- form
- 설정
- Spring Security
- Rest
- 스프링
- Many-To-Many
- XML
250x250