Created
January 17, 2016 12:22
-
-
Save an-sangkil/0f8691a60a0992c5be70 to your computer and use it in GitHub Desktop.
MvcMock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* <pre> | |
* Class Name : AddressController.java | |
* Description : | |
* Modification Information | |
* | |
* 수정일 수정자 수정내용 | |
* ──────────── ───────── ─────────────────────────────── | |
* 2016. 1. 4. ask 최초생성 | |
* </pre> | |
* | |
* @author ahn | |
* @since 2016. 1. 4. | |
* @version | |
* | |
* Copyright (C) 2016 by SKAN.COMPANY All right reserved. | |
*/ | |
package com.dongbu.potal.web.potal.address.controller; | |
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; | |
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content; | |
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; | |
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*; | |
import org.junit.Before; | |
import org.junit.Ignore; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.http.MediaType; | |
import org.springframework.test.annotation.Rollback; | |
import org.springframework.test.context.ContextConfiguration; | |
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; | |
import org.springframework.test.context.transaction.TransactionConfiguration; | |
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.web.context.WebApplicationContext; | |
import com.skan.potal.config.AppConfig; | |
import com.skan.potal.config.PersistenceJPAConfig; | |
import com.skan.potal.config.WebMvcConfig; | |
/** | |
* @author ahn | |
* | |
*/ | |
@RunWith(SpringJUnit4ClassRunner.class) | |
@WebAppConfiguration | |
@ContextConfiguration(classes = { WebMvcConfig.class, AppConfig.class, PersistenceJPAConfig.class }) | |
@Rollback(value=true) | |
public class AddressControllerTest { | |
@Autowired | |
protected WebApplicationContext wac; | |
protected MockMvc mockMvc; | |
@Before | |
public void setup() throws Exception { | |
// Set up a mock MVC tester based on the web application context | |
mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); | |
} | |
@Test | |
@Ignore | |
public void addressPageList() throws Exception { | |
this.mockMvc.perform(post("/address/address_list").accept(MediaType.TEXT_HTML_VALUE) | |
.contentType(MediaType.TEXT_HTML_VALUE) | |
.param("page", "1") | |
.param("size", "10") | |
.param("direction", "DESC")) | |
.andExpect(status().isOk()) | |
//.andExpect(content().contentType(MediaType.TEXT_HTML_VALUE)) | |
.andExpect(model().attributeExists("hmMngAddressPage")); | |
} | |
@Test | |
public void addressInsertTest() throws Exception { | |
this.mockMvc.perform(post("/address/address_insert").accept(MediaType.TEXT_HTML_VALUE).param("name", "ansangkil")); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment