Spring 使用Junit的MockMvc 写测试用例

声明:本文系转载

1、spring配置文件

该声明为bean的类就声明,测试之前项目要能运行,所以spring的配置文件问题就不多说了,下面的数据库配置和测试类中负责回滚的TransactionalConfigration注解有关,所以贴出来。

[html]  view plain  copy
  1. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
  2.     <property name="dataSource" ref="mysqlDataSource" />  
  3. bean>  

2、pom.xml需要使用的包:

[javascript]  view plain  copy
  1.   
  2.   
  3.     junit  
  4.     junit  
  5.     4.10  
  6.     test  
  7.       
  8.           
  9.             hamcrest-core  
  10.             org.hamcrest  
  11.           
  12.       
  13.   
  14.   
  15.   
  16.     org.springframework  
  17.     spring-test  
  18.     3.2.8.RELEASE  
  19.     test  
  20.   
  21.   
  22.   
  23.     org.hamcrest  
  24.     hamcrest-all  
  25.     1.3  
  26.     test  
  27.   
  28.   
  29.     org.mockito  
  30.     mockito-core  
  31.     1.9.5  
  32.     test  
  33.       
  34.           
  35.             hamcrest-core  
  36.             org.hamcrest  
  37.           
  38.       
  39.   
  40.   
  41.   
  42.     com.jayway.jsonpath  
  43.     json-path  
  44.     0.8.1  
  45.     test  
  46.   

3、测试类

最好在源码平行目录下新建一个测试用的文件夹以及包等

[java]  view plain  copy
  1. @RunWith(SpringJUnit4ClassRunner.class)  
  2.   
  3. @TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = true)//保证每次测试类执行完后数据库进行回滚,防止测试时产生脏数据  
  4. @Transactional  
  5.   
  6. @WebAppConfiguration(value = "mydemo/src/main/webapp")  
  7. @ContextConfiguration(locations={"file:src/main/webapp/WEB-INF/spring-config.xml"})//如果spring的配置文件放在WEB-INF目录下,需要使用这种方法  
  8. @ActiveProfiles("dev")  
  9. public class demoTest {  
  10.   
  11.     @Autowired  
  12.     WebApplicationContext wac;  
  13.   
  14.     private MockMvc mockMvc;  
  15.   
  16.     @Before  
  17.     public void setUp() {  
  18.         mockMvc = MockMvcBuilders.webAppContextSetup(wac).build();  
  19.     }  
  20.   
  21.   
  22. @Test  
  23.     public void getDemoidTest1() throws Exception {  
  24.         mockMvc.perform(MockMvcRequestBuilders.get("/config/getDemo?demoid=1005"))  
  25.                 .andDo(MockMvcResultHandlers.print())  
  26.                 .andExpect(MockMvcResultMatchers.status().isOk())  
  27.                 .andExpect(MockMvcResultMatchers.content().contentType("application/json;charset=UTF-8"))  
  28.                 .andExpect(jsonPath("$.code").value(20000))  
  29.                 .andExpect(jsonPath("$.demoList").exists())  
  30.                 .andDo(MockMvcResultHandlers.print())  
  31.                 .andReturn();  
  32.     }  
  33. }  

1、mockMvc.perform执行一个请求;

2、MockMvcRequestBuilders.get("/user/1")构造一个请求

3、ResultActions.andExpect添加执行完成后的断言

4、ResultActions.andDo添加一个结果处理器,表示要对结果做点什么事情,比如此处使用MockMvcResultHandlers.print()输出整个响应结果信息。

5、ResultActions.andReturn表示执行完成后返回相应的结果。


4、其中可能遇到的坑:


1)、如果spring的配置文件在默认的目录下,使用@ContextConfiguration(locations = "classpath:spring-config.xml")即可


但是!如果spring的配置文件在WEB-INF目录下,请使用

@ContextConfiguration(locations={"file:src/main/webapp/WEB-INF/spring-config.xml"})

否则会找不到配置文件


说到这里可以提一下为什么需要加载配置文件,使用mockMvc,会创建整套完整流程,模拟从前端发出的请求,个人理解为使用这种方法调用controller和前端、postman等调用controller没什么区别,这样可以测试完整的Spring MVC流程,即从URL请求到控制器处理,再到视图渲染都可以测试。

你可能感兴趣的:(java)