MockMvc 是springTest提供的对SpringMvc提供的测试工具。这样可以让单元测试不仅仅局限于对Dao和Service 层的测试。同时,也可以测试Controller层。丰富的单元测试的功能。测试时不用频繁重启servlet容器,简化了测试操作。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:空间域名、网络空间、营销软件、网站建设、原州网站维护、网站推广。
MockMvc需要ServletContext来模拟用户的请求和相应。
首选,需要在测试类头部添加一下Annotation
@WebAppConfiguration @RunWith(SpringJUnit4Cla***unner.class) @ContextConfiguration(locations = { "classpath:spring/applicationContext.xml" })
@WebAppConfiguration 用来引入servletContext
接下来就可以在junit中编写测试类了。
demo 1 有请求头、无参数的get请求
样例代码如下:
@Test public void 测试类() throws Exception { ResultActions reaction=this.mockMvc.perform(MockMvcRequestBuilders.get("/service/test/testController") .accept(MediaType.APPLICATION_JSON)//返回值接收json .header("Timestamp", "1496656373783") .header("AppId", "1003")); reaction.andExpect(MockMvcResultMatchers.status().isOk()); MvcResult mvcResult =reaction.andReturn(); System.out.println(mvcResult.getResponse().getContentAsString()); }
demo 2 有请求头、有请求体的post请求
样例代码如下:
@Test public void 测试类() throws Exception { PolicyInfoRequest request=new PolicyInfoRequest(); request.setAnnualPremium(100); request.setPolicyNo("Test-222"); request.setPolicyRebate(0.28f); request.setPolicyType(1); request.setRebateAmount(28f); String jsonRequest=JSON.toJSONString(request); ResultActions reaction =this.mockMvc.perform(MockMvcRequestBuilders.post("/policy/info/save") .contentType(MediaType.APPLICATION_JSON)//请求体时json .header("Timestamp", "1496656373791") .header("AppId", "1003") .content(jsonRequest)); reaction.andExpect(MockMvcResultMatchers.status().isOk()); MvcResult mvcResult =reaction.andReturn(); System.out.println(mvcResult.getResponse().getContentAsString()); }
以上两个例子就能基本覆盖解决使用springtest的MockMvc对Controller进行单元测试的需求。
分享题目:使用MockMvc测试SpringMVCController
网页URL:/article28/ipodcp.html
成都网站建设公司_创新互联,为您提供定制开发、关键词优化、营销型网站建设、网页设计公司、品牌网站设计、网站收录
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联