티스토리 뷰
728x90
1. 아래의 코드는 JUnit 4를 기반한 코드이다.
2. 통합 테스트의 경우 실제 컨텍스트가 필요하기 때문에 @SpringBootTest가 필요하다.
2-1 @RunWith만으로는 전체 스프링 컨텍스트가 기동하지 않기 때문에 Service가 주입되지 않는다.
3. 테스트 컨텍스트를 기동하기 위하여 @RunWith(SpringRunner.class) 가 필요하다.
3-1 없으면 테스트용 컨텍스트가 생성되지 않아 기동 자체가 되지 않는다.
4. testSaveOfDescpriton 테스트의 @Transactional은 필수다.
4-1 없는 경우, 스프링 컨텍스트 밖에서 실행하므로 Session을 찾을 수가 없다.
package pe.pilseong.recipe.service;
import static org.junit.jupiter.api.Assertions.assertEquals;
import javax.transaction.Transactional;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import pe.pilseong.recipe.command.RecipeCommand;
import pe.pilseong.recipe.coverter.RecipeCommandToRecipe;
import pe.pilseong.recipe.coverter.RecipeToRecipeCommand;
import pe.pilseong.recipe.domain.Recipe;
import pe.pilseong.recipe.repository.RecipeRepository;
@RunWith(SpringRunner.class)
@SpringBootTest
public class RecipeServiceIT {
public static final String DESCRPTION = "DESCRIPTION";
@Autowired
RecipeService recipeService;
@Autowired
RecipeRepository recipeRepository;
@Autowired
RecipeCommandToRecipe recipeConverter;
@Autowired
RecipeToRecipeCommand commandConverter;
@Test
@Transactional
public void testSaveOfDesription() {
//given
Iterable<Recipe> recipes = recipeRepository.findAll();
Recipe testRecipe = recipes.iterator().next();
RecipeCommand testRecipeCommand = commandConverter.convert(testRecipe);
//when
testRecipeCommand.setDescription(DESCRPTION);
Recipe savedRecipe = recipeService.save(testRecipeCommand);
//then
assertEquals(DESCRPTION, savedRecipe.getDescription());
assertEquals(testRecipe.getId(), savedRecipe.getId());
}
}
728x90
'Spring > Spring Test' 카테고리의 다른 글
Spring Test : Repository Integration Test with @RunWith, @Mongo (0) | 2020.08.21 |
---|---|
Spring Test : 테스트 시 인자로 any or 특정 값? (0) | 2020.08.05 |
Spring Test : JUnit 5 Mockito Unit Test (0) | 2020.08.03 |
Spring Test : Spring Boot 2.1 이전 버전에서의 Junit 5 설정하기 (0) | 2020.08.02 |
Spring Test : Maven Integration Test 설정하기 (0) | 2020.08.01 |
댓글
최근에 올라온 글
최근에 달린 댓글
- 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
- RestTemplate
- crud
- login
- Angular
- 상속
- 자바
- form
- Spring
- Rest
- hibernate
- jsp
- spring boot
- mapping
- 외부파일
- XML
- one-to-one
- Many-To-Many
- WebMvc
- 스프링
- Spring Security
- 매핑
- one-to-many
- Security
- 로그인
- 스프링부트
- Validation
- 설정
- MYSQL
- 하이버네이트
- 설정하기
250x250