在时间允许的情况下,编写单元测试是程序员对代码的自测,这是对自己代码的负责。 写单元测试的两个动机:
java<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency>
对Controller层(API)做测试,这时候就用到MockMvc了,它使得你无需启动项目工程就能测试这些接口
MockMvc实现了对Http请求的模拟,能够直接使用网络的形式,转换到Controller的调用,这样可以使得测试速度快、不依赖网络环境,而且提供了一套验证的工具,这样可以使得请求的验证统一而且很方便。 基本步骤
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());
}
}
解释:
mockMvc.perform:执行一个请求
MockMvcRequestBuilders.get(“/XXX/get”):构造一个请求,Post请求使用.post方法
contentType(MediaType.APPLICATION_JSON):代表发送端发送的数据格式是application/json;charset=UTF-8
content(strJson) 向接口传递的内容
ResultActions.andExpect(MockMvcResultMatchers.status().isOk()):方法看请求的状态响应码是否为200如果不是则抛异常,测试不通过
andExpect(MockMvcResultMatchers.content().contentType(MediaType.APPLICATION_JSON)) 判断返回值是否是json格式,因为我们接口已经规定了
andReturn() 它会返回一个MvcResult对象,该对象包含了请求和响应的相关信息,例如请求参数、响应状态、响应内容等。我们可以通过调用MvcResult对象的各种方法来获取这些信息
在需要测试的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 许可协议。转载请注明出处!