编辑
2022-07-20
实用工具
00
请注意,本文编写于 988 天前,最后修改于 625 天前,其中某些信息可能已经过时。

目录

意义
引入依赖
Controller层测试
Service层做测试

意义

在时间允许的情况下,编写单元测试是程序员对代码的自测,这是对自己代码的负责。 写单元测试的两个动机:

  1. 保证或验证实现功能。
  2. 保护已经实现的功能不被破坏。

引入依赖

java
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency>

Controller层测试

对Controller层(API)做测试,这时候就用到MockMvc了,它使得你无需启动项目工程就能测试这些接口

MockMvc实现了对Http请求的模拟,能够直接使用网络的形式,转换到Controller的调用,这样可以使得测试速度快、不依赖网络环境,而且提供了一套验证的工具,这样可以使得请求的验证统一而且很方便。 基本步骤

  1. mockMvc.perform执行一个请求。
  2. MockMvcRequestBuilders.get(“XXX”)构造一个请求。
  3. ResultActions.param添加请求传值
  4. ResultActions.accept()设置返回类型
  5. ResultActions.andExpect添加执行完成后的断言。
  6. ResultActions.andDo添加一个结果处理器,表示要对结果做点什么事情,比如处使用print()输出整个响应结果信息。
  7. ResultActions.andReturn表示执行完成后返回相应的结果。
java
import com.alibaba.fastjson.JSON; import com.lhw.entity.TestEntity; import com.lhw.request.Request; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; 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.MvcResult; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; import org.springframework.test.web.servlet.setup.MockMvcBuilders; @RunWith(SpringRunner.class) @SpringBootTest public class CatalogHealthInsuranceControllerTest { @Autowired private org.springframework.web.context.WebApplicationContext context; private MockMvc mvc; @Before public void setUp() throws Exception { mvc = MockMvcBuilders.webAppContextSetup(context).build(); } @Test public void getTransferList() throws Exception { Request request = new Request(); request.setPatientId("123123"); request.setVisitId("123123"); String strJson = JSON.toJSONString(request); System.out.println(strJson); MvcResult result = mvc.perform(MockMvcRequestBuilders.post("/catalog/getTransferList") .contentType(MediaType.APPLICATION_JSON) .content(strJson) ) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentType(MediaType.APPLICATION_JSON)) .andReturn(); result.getResponse().setCharacterEncoding("UTF-8"); System.out.println(result.getResponse().getContentAsString()); } }

解释:

  1. mockMvc.perform:执行一个请求

  2. MockMvcRequestBuilders.get(“/XXX/get”):构造一个请求,Post请求使用.post方法

  3. contentType(MediaType.APPLICATION_JSON):代表发送端发送的数据格式是application/json;charset=UTF-8

  4. content(strJson) 向接口传递的内容

  5. ResultActions.andExpect(MockMvcResultMatchers.status().isOk()):方法看请求的状态响应码是否为200如果不是则抛异常,测试不通过

  6. andExpect(MockMvcResultMatchers.content().contentType(MediaType.APPLICATION_JSON)) 判断返回值是否是json格式,因为我们接口已经规定了

  7. andReturn() 它会返回一个MvcResult对象,该对象包含了请求和响应的相关信息,例如请求参数、响应状态、响应内容等。我们可以通过调用MvcResult对象的各种方法来获取这些信息

Service层做测试

在需要测试的service层右键goto test,创建测试类

创建test界面testing library选择JUnit4

Memeber勾选自己需要方法名

添加上测试注解 以及该方法需要的测试内容

java
import com.lhw.entity.TestEntity; import com.lhw.request.Request; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import javax.annotation.Resource; import java.util.List; @RunWith(SpringRunner.class) @SpringBootTest public class ITestServiceTest { @Resource private ITestService iTestService; @Test public void getTransferList() { Request request=new Request(); request.setPatientId("453435"); request.setVisitId("123132"); List<TestEntity> list=iTestService.getTransferList(request); Assert.assertNotNull(list); } }

注解解释:

@SpringBootTest:获取启动类,加载配置,寻找主配置启动类(被 @SpringBootApplication 注解的) @RunWith(SpringRunner.class):让JUnit运行Spring的测试环境,获得Spring环境的上下文的支持

本文作者:Weee

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!