本文主要是介绍【SpringBoot深入浅出系列】SpringBoot之集成JUnit5+MockMvc测试Controller,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
- 一、写在前面
- 二、创建项目集成 JUnit 5 测试 Controller
- 1.项目说明
- 2.修改测试类 LoginControllerTest
- 3.运行测试
一、写在前面
本文在 SpringBoot之集成JUnit5进行单元测试 一文基础上进行拓展延伸,实现对 Controller 类的测试。
二、创建项目集成 JUnit 5 测试 Controller
1.项目说明
本项目在 SpringBoot之集成JUnit5进行单元测试 一文创建的项目 junit 基础上进行修改完善,实现对 Controller 类的测试。
2.修改测试类 LoginControllerTest
修改注意事项:
(1)添加 @AutoConfigureMockMvc
(2)实现 setupMockMvc() 方法并添加注解 @BeforeEach
完整代码如下:
@SpringBootTest
@AutoConfigureMockMvc
class LoginControllerTest {@Autowiredprivate MockMvc mvc;private MockHttpSession session;@BeforeEachpublic void setupMockMvc() {session = new MockHttpSession();}@Testvoid getUserInfo() throws Exception{MvcResult mvcResult = (MvcResult) mvc.perform(MockMvcRequestBuilders.get("/user/getUserInfo").accept(MediaType.ALL).session(session)).andExpect(MockMvcResultMatchers.status().isOk()).andDo(MockMvcResultHandlers.print()).andReturn();int status = mvcResult.getResponse().getStatus();String content = mvcResult.getResponse().getContentAsString();System.out.println(content);}
}
3.运行测试
运行后可在控制台看到以下信息:
MockHttpServletRequest:HTTP Method = GETRequest URI = /user/getUserInfoParameters = {}Headers = [Accept:"*/*"]Body = nullSession Attrs = {}Handler:Type = com.chaoyue.junit.controller.LoginControllerMethod = com.chaoyue.junit.controller.LoginController#getUserInfo()Async:Async started = falseAsync result = nullResolved Exception:Type = nullModelAndView:View name = nullView = nullModel = nullFlashMap:Attributes = nullMockHttpServletResponse:Status = 200Error message = nullHeaders = [Content-Type:"text/plain;charset=UTF-8", Content-Length:"43"]Content type = text/plain;charset=UTF-8Body = User(id=1, username=admin, password=123456)Forwarded URL = nullRedirected URL = nullCookies = []
User(id=1, username=admin, password=123456)
这篇关于【SpringBoot深入浅出系列】SpringBoot之集成JUnit5+MockMvc测试Controller的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!