springboot单元测试controller层
程序员文章站
2022-03-02 18:06:55
...
springboot单元测试controller层。
demo:
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.SpringBootConfiguration;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.result.MockMvcResultHandlers;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
@RunWith(SpringRunner.class)
@SpringBootTest
@SpringBootConfiguration
public class AlarmSearchControllerTests {
private MockMvc mvc;
//初始化执行
@Before
public void setUp() throws Exception {
mvc = MockMvcBuilders.standaloneSetup(new AlarmSearchController()).build(); //加入controller测试的对象
}
//验证controller是否正常响应并打印返回结果
@Test
public void getSearchAlarm() throws Exception {
//加入类中的url
mvc.perform(MockMvcRequestBuilders.get("/alarm/searchAlarm").accept(MediaType.APPLICATION_JSON))
.andExpect(MockMvcResultMatchers.status().isOk())
.andDo(MockMvcResultHandlers.print())
.andReturn();
}
}
run执行,看控制台输出查看输出内容即可。
参考:
http://www.ityouknow.com/springboot/2017/05/09/springboot-deploy.html
上一篇: C#简单工厂模式是什么?
推荐阅读
-
关于Spring MVC在Controller层中注入request的坑详解
-
springboot如何为web层添加统一请求前缀
-
SpringBoot2.x实现给Controller的RequestMapping添加统一前缀
-
SpringBoot2.x实现给Controller的RequestMapping添加统一前缀
-
idea创建一个入门Spring Boot项目(controller层)使用Moven代码管理
-
SpringBoot单元测试如何使用 mock静态方法
-
springboot之单元测试
-
详解在SpringBoot中使用MongoDb做单元测试的代码
-
详解SpringBoot之添加单元测试
-
SpringBoot_13_单元测试_Restfull API