|
1 |
| -package cn.iocoder.springboot.lab21.springmvc.controller; |
| 1 | +package cn.iocoder.springboot.lab23.springmvc.controller; |
2 | 2 |
|
3 |
| -import cn.iocoder.springboot.lab21.springmvc.Application; |
4 |
| -import org.junit.Before; |
| 3 | +import cn.iocoder.springboot.lab23.springmvc.Application; |
5 | 4 | import org.junit.Test;
|
6 | 5 | import org.junit.runner.RunWith;
|
7 | 6 | import org.springframework.beans.factory.annotation.Autowired;
|
| 7 | +import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; |
8 | 8 | import org.springframework.boot.test.context.SpringBootTest;
|
9 | 9 | import org.springframework.test.context.junit4.SpringRunner;
|
10 | 10 | import org.springframework.test.web.servlet.MockMvc;
|
| 11 | +import org.springframework.test.web.servlet.MvcResult; |
11 | 12 | import org.springframework.test.web.servlet.ResultActions;
|
12 | 13 | import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
|
| 14 | +import org.springframework.test.web.servlet.result.MockMvcResultHandlers; |
13 | 15 | import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
|
14 |
| -import org.springframework.test.web.servlet.setup.MockMvcBuilders; |
15 | 16 |
|
| 17 | +/** |
| 18 | + * UserController 集成测试 |
| 19 | + */ |
16 | 20 | @RunWith(SpringRunner.class)
|
17 | 21 | @SpringBootTest(classes = Application.class)
|
| 22 | +@AutoConfigureMockMvc |
18 | 23 | public class UserControllerTest {
|
19 | 24 |
|
20 |
| - private MockMvc mvc; |
21 |
| - |
22 | 25 | @Autowired
|
23 |
| - private UserController userController; |
24 |
| - |
25 |
| - @Before |
26 |
| - public void setUp() { |
27 |
| - mvc = MockMvcBuilders.standaloneSetup(userController).build(); |
28 |
| -// mvc = MockMvcBuilders.standaloneSetup(new UserController()).build(); |
29 |
| - } |
| 26 | + private MockMvc mvc; |
30 | 27 |
|
31 | 28 | @Test
|
32 | 29 | public void testList() throws Exception {
|
@@ -62,6 +59,25 @@ public void testGet() throws Exception {
|
62 | 59 | "}")); // 响应结果
|
63 | 60 | }
|
64 | 61 |
|
| 62 | + @Test |
| 63 | + public void testGet2() throws Exception { |
| 64 | + // 获得指定用户编号的用户 |
| 65 | + ResultActions resultActions = mvc.perform(MockMvcRequestBuilders.get("/users/1")); |
| 66 | + // 校验结果 |
| 67 | + resultActions.andExpect(MockMvcResultMatchers.status().isOk()); // 响应状态码 200 |
| 68 | + resultActions.andExpect(MockMvcResultMatchers.content().json("{\n" + |
| 69 | + "\"id\": 1,\n" + |
| 70 | + "\"username\": \"username:1\"\n" + |
| 71 | + "}")); // 响应结果 |
| 72 | + |
| 73 | + // 打印结果 |
| 74 | + resultActions.andDo(MockMvcResultHandlers.print()); |
| 75 | + |
| 76 | + // 获得 MvcResult ,后续执行各种自定义逻辑 |
| 77 | + MvcResult mvcResult = resultActions.andReturn(); |
| 78 | + System.out.println("拦截器数量:" + mvcResult.getInterceptors().length); |
| 79 | + } |
| 80 | + |
65 | 81 | @Test
|
66 | 82 | public void testAdd() throws Exception {
|
67 | 83 | // 获得指定用户编号的用户
|
|
0 commit comments