文章目录
目标:
- 加载测试专用属性
- 加载测试专用配置
- Web环境模拟测试
- 数据层测试回滚
- 测试用例数据设定
1.加载测试专用属性
我们在前面讲配置高级的时候是这样写的:
test:prop: testValue
测试类:
@SpringBootTestpublicclassPropertiesAndArgsTest{@Value("${test.prop}")privateString msg;@TestvoidtestProperties(){System.out.println(msg);}}
那如果我把yml文件中的配置注释掉,我们还可以通过
@SprinBootTest
来添加临时属性
@SpringBootTest("test.prop = testValue")publicclassPropertiesAndArgsTest{@Value("${test.prop}")privateString msg;@TestvoidtestProperties(){System.out.println(msg);}}
如果两个都有谁生效呢? 答案是在这个测试类properties属性添加的临时属性配置中会覆盖yml的配置。
用args配也是可以的,使用args属性可以为当前测试用例添加临时的命令行参数
//@SpringBootTest("test.prop = testValue")@SpringBootTest(args ={"--test.prop=testValue2"})publicclassPropertiesAndArgsTest{@Value("${test.prop}")privateString msg;@TestvoidtestProperties(){System.out.println(msg);}}
那如果三个都有呢?
答案: 命令行级别参数(源码级别) > properties(idea)
小结:
加载测试临时属性应用小于小范围测试环境.
3.Web环境模拟测试
如果我们要想加入一个外部的bean来辅助我们测试:
@ConfigurationpublicclassMsgConfig{@BeanpublicStringmsg(){return"bean msg";}}
测试类中:
@SpringBootTest@Import(MsgConfig.class)publicclassConfigurationTest{@AutowiredprivateString msg;@TestvoidtestConfiguration(){System.out.println(msg);}}
小结: 加载测试范围配置应用与小范围测试环境
能不能在测试样例中测试表现层呢?
2.加载测试专用配置
@SpringBootTestpublicclassWebTest{@Testvoidtest(){}}
ctrl+左键 =》 查看SpringBootTest的源码,ctrl + f12查看方法
@SpringBootTest(webEnvironment =SpringBootTest.WebEnvironment.RANDOM_PORT)
创建controller 然后模拟调用
@RestController@RequestMapping("/books")publicclassBookController{@GetMappingpublicStringgetById(){System.out.println("getById is running...");return"SpringBoot";}}
@TestvoidtestWeb(@AutowiredMockMvc mvc)throwsException{//http:localhost:8080/books//创建虚拟请求 当前访问路径为/booksMockHttpServletRequestBuilder builder =MockMvcRequestBuilders.get("/books");
mvc.perform(builder);}
ctrl + 左键 进去RequestBuilder查看源码,然后ctrl+h查看实现类
@TestvoidtestStatus(@AutowiredMockMvc mvc)throwsException{MockHttpServletRequestBuilder builder =MockMvcRequestBuilders.get("/books");ResultActions action = mvc.perform(builder);//设定预期值与真实值进行比较,成功测试通过,失败测试失败StatusResultMatchers status =MockMvcResultMatchers.status();//预计本次调用时成功的:状态200ResultMatcher ok = status.isOk();//添加预计值到本次调用过程中进行匹配
action.andExpect(ok);}
如果你修改为book1
执行结果的匹配
@TestvoidtestBody(@AutowiredMockMvc mvc)throwsException{MockHttpServletRequestBuilder builder =MockMvcRequestBuilders.get("/books");ResultActions action = mvc.perform(builder);//设定预期值与真实值进行比较,成功测试通过,失败测试失败ContentResultMatchers content =MockMvcResultMatchers.content();ResultMatcher result = content.string("springboot");
action.andExpect(result);}
但是我们以后是对json做匹配
importlombok.Data;@DatapublicclassBook{privateint id;privateString name;privateString type;privateString description;}
@GetMappingpublicBookgetById(){System.out.println("getById is running...");Book book =newBook();
book.setId(1);
book.setName("SpringBoot");
book.setType("Spring Framework");
book.setDescription("This is a book about Spring Boot");return book;}
@TestvoidtestJson(@AutowiredMockMvc mvc)throwsException{MockHttpServletRequestBuilder builder =MockMvcRequestBuilders.get("/books");ResultActions action = mvc.perform(builder);//设定预期值与真实值进行比较,成功测试通过,失败测试失败ContentResultMatchers content =MockMvcResultMatchers.content();ResultMatcher result = content.json("{\n"+" \"id\": 1,\n"+" \"name\": \"SpringBoot\",\n"+" \"type\": \"Spring Framework\",\n"+" \"description\": \"This is a book about Spring Boot\"\n"+"}");
action.andExpect(result);}
我们也可以测试header-type 虚拟请求头匹配
@TestvoidtestContentType(@AutowiredMockMvc mvc)throwsException{MockHttpServletRequestBuilder builder =MockMvcRequestBuilders.get("/books");ResultActions action = mvc.perform(builder);//设定预期值与真实值进行比较,成功测试通过,失败测试失败HeaderResultMatchers header =MockMvcResultMatchers.header();ResultMatcher contentType = header.string("Content-Type","application/json;charset=UTF-8");
action.andExpect(contentType);}
4.数据层测试回滚
有一种情况是:当我们测试业务层或者Dao层会留下结果数据,真实的企业开发会生成两个sql文件一个数据库的表创建的sql,一个数据库初始化的sql,但是当我们在开发的时候仍然需要测试仍然会留下数据,但是我们是想着我们测试只是想看看写的代码有没有问题,不需要留下数据,下面说的方法只服务于开发,上线后的另说。
我们可以用事务来进行回滚,
如何生成随机值来进行测试呢?
5.测试用例数据设定
封装实体类:
小结: 使用随机数据替换固定数据。
版权归原作者 ->yjy 所有, 如有侵权,请联系我们删除。