本文共 2682 字,大约阅读时间需要 8 分钟。
Spring Boot 提供了许多实用工具和注解来帮助测试应用程序,主要包括以下两个模块。
spring-boot-test:支持测试的核心内容。
spring-boot-test-autoconfigure:支持测试的自动化配置。
开发进行只要使用 spring-boot-starter-test
启动器就能引入这些 Spring Boot 测试模块,还能引入一些像 JUnit, AssertJ, Hamcrest
及其他一些有用的类库,具体如下所示。
下面是 Maven 的依赖关系图。
以上这些都是 Spring Boot 提供的一些比较常用的测试类库,如果上面的还不能满足你的需要,你也可以随意添加其他的以上没有的类库。
添加 Maven 依赖
org.springframework.boot spring-boot-starter-test 1.5.10.RELEASE test
1、 要让一个普通类变成一个单元测试类只需要在类名上加入 @SpringBootTest 和 @RunWith(SpringRunner.class) 两个注释即可。
2、 在测试方法上加上 @Test 注释。
如果测试需要做 REST 调用,可以 @Autowire 一个 TestRestTemplate。
@RunWith(SpringRunner.class)@SpringBootTestpublic class BBTestAA { @Autowired private TestRestTemplate testRestTemplate; @Test public void testDemo() { ... } }
GET请求测试
@Testpublic void get() throws Exception { MapmultiValueMap = new HashMap<>(); multiValueMap.put("username","Java技术栈"); ActResult result = testRestTemplate.getForObject("/test/getUser?username={username}",ActResult.class,multiValueMap); Assert.assertEquals(result.getCode(),0);}
POST请求测试
@Testpublic void post() throws Exception { MultiValueMap multiValueMap = new LinkedMultiValueMap(); multiValueMap.add("username","Java技术栈"); ActResult result = testRestTemplate.postForObject("/test/post",multiValueMap,ActResult.class); Assert.assertEquals(result.getCode(),0);}
文件上传测试
@Testpublic void upload() throws Exception { Resource resource = new FileSystemResource("/home/javastack/test.jar"); MultiValueMap multiValueMap = new LinkedMultiValueMap(); multiValueMap.add("username","Java技术栈"); multiValueMap.add("files",resource); ActResult result = testRestTemplate.postForObject("/test/upload",multiValueMap,ActResult.class); Assert.assertEquals(result.getCode(),0);}
文件下载测试
@Testpublic void download() throws Exception { HttpHeaders headers = new HttpHeaders(); headers.set("token","javastack"); HttpEntity formEntity = new HttpEntity(headers); String[] urlVariables = new String[]{"admin"}; ResponseEntityresponse = testRestTemplate.exchange("/test/download?username={1}",HttpMethod.GET,formEntity,byte[].class,urlVariables); if (response.getStatusCode() == HttpStatus.OK) { Files.write(response.getBody(),new File("/home/javastack/test.jar")); }}
推荐:
扫描关注我们的微信公众号,干货每天更新。
转载地址:http://nytoo.baihongyu.com/