springboot单元测试详解和实战
单元测试是检测代码严密性的最好方式,不仅能减少和预防bug的产生,还能自己二次检查代码或者考虑review必要,如果你还没有养成这个习惯,可要开始关注了。
本节主要讲述单元测试使用以及多环境配置
maven依赖
在pom.xml中引入
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
项目属性文件配置
application.properties配置文件内容如下:
msg=Hello
1.不依赖web模块的单元测试,示例以两种方式读取项目属性文件的值
加入@SpringBootTest注解和@RunWith(SpringRunner.class)注解。
注:1.4.0版本之后这样使用即可
import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.core.env.Environment; import org.springframework.test.context.junit4.SpringRunner; @SpringBootTest @RunWith(SpringRunner.class) public class Test { @Value("${msg}") private String msg; @Autowired private Environment env; @Test public void testCoreConfig() { System.out.println(msg); } @Test public void testCoreConfig2() { System.out.println(env.getProperty("msg")); } }
- @RunWith(SpringJUnit4ClassRunner.class),这是JUnit的注解,通过这个注解让SpringJUnit4ClassRunner这个类提供Spring测试上下文。
2.使用web模块的单元测试,模拟执行controller等功能
我们以一个简单的Testcontroller为例,get请求访问 路径+"/hello"返回hello字符串。我们想要验证接口是否正常以及返回预期结果判定,则编写以下测试示例
@RunWith(SpringRunner.class) @SpringBootTest public class SpringbootDemoApplicationTests { private MockMvc mvc; @Before public void setUp() throws Exception { //初始化 mvc = MockMvcBuilders.standaloneSetup(new TestController()).build(); } @Test public void hello() throws Exception { String url = "/hello";//访问url String expectedResult = "hello";//预期返回结果 MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.get(url).accept(MediaType.APPLICATION_JSON)) .andReturn(); //访问返回状态 int status = mvcResult.getResponse().getStatus(); //接口返回结果 String content = mvcResult.getResponse().getContentAsString(); //打印结果和状态 //System.out.println(status); //System.out.println(content); //断言预期结果和状态 Assert.assertTrue("错误", status == 200); Assert.assertFalse("错误", status != 200); Assert.assertTrue("数据一致", expectedResult.equals(content)); Assert.assertFalse("数据不一致", !expectedResult.equals(content)); } }
相关推荐
蛰脚踝的天蝎 2020-11-10
Cocolada 2020-11-12
TuxedoLinux 2020-09-11
snowphy 2020-08-19
83540690 2020-08-16
lustdevil 2020-08-03
83417807 2020-07-19
张文倩数据库学生 2020-07-19
bobljm 2020-07-07
83417807 2020-06-28
86427019 2020-06-28
86427019 2020-06-25
zhengzf0 2020-06-21
tobecrazy 2020-06-16
宿命java 2020-06-15
83417807 2020-06-15
84284855 2020-06-11