티스토리 뷰

TDD

[TDD] spring mvc file uplad 테스트

skydev 2019. 12. 11. 11:11
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.fileUpload;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;

import java.io.File;
import java.io.FileInputStream;
import java.nio.charset.Charset;

import org.junit.runner.RunWith;
import org.junit.BeforeClass;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.mock.web.MockMultipartFile;
import org.springframework.test.annotation.Rollback;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.context.WebApplicationContext;

import com.fasterxml.jackson.databind.ObjectMapper;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:/test-app-context.xml",
		"classpath:/test-servlet-context.xml" })
@WebAppConfiguration
@Transactional
public abstract class GoodsControllerTest {
	@Autowired
	private WebApplicationContext context;

	private MockMvc mockMvc;
	ObjectMapper mapper = new ObjectMapper();

	@BeforeClass
	public void setUp() {
		// MockitoAnnotations.initMocks(this); // @RunWith(SpringJUnit4ClassRunner.class) 이것과 동일한 효과
		mockMvc = MockMvcBuilders.webAppContextSetup(context).build();
	}

	@Test
	@Rollback // @Commit
	public void importGoodsTest() throws Exception {
		
		String endpoint = "/goods/importGoods";
        File f = new File("D:\\project\\source\\goods.xlsx");
        System.out.println(f.isFile() + " - " + f.getName() + " - " + f.exists());
        FileInputStream fi1 = new FileInputStream(f);
        // *중요*
        MockMultipartFile multipartFile = new MockMultipartFile("file", f.getName(), "multipart/form-data", fi1);
		
		this.mockMvc.perform(fileUpload(endpoint)
		        .file(multipartFile))
		        .andExpect(status().isOk())
				.andDo(print());
	}
}

'TDD' 카테고리의 다른 글

Spring MVC 단위테스트  (0) 2019.07.04
Mockito 사용법2  (0) 2019.07.04
Mockito 사용법  (0) 2019.07.04
JUnit 사용법  (0) 2019.07.04
JUnit Test에서 application context 로딩  (0) 2019.07.04
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
more
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
글 보관함