添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

单元测试 @mock与@SpringBootTest的使用

目录一.单元测试工具mock使用1.引入依赖包2.mock测试类二.springboot使用@SpringBootTest单元测试1.引入依赖包2.测试类三.mock和@springBootTest区别1.mock进行单元测试不依赖spring的bean定义文件2.@springBootTest需要启动服务单元测试--SpringbootTest和MockMvcSpringbootTestMockMvc类的使用和模拟Http请求相关API:

在写单元测试的过程中我们会发现需要测试的类有很多依赖,这些依赖的类或者资源又会有依赖,导致在单元测试代码里无法完成构建,我们应对的方法是Mock。

简单的说就是模拟这些需要构建的类或者资源,提供给需要测试的对象使用。

一.单元测试工具mock使用

1.引入依赖包

2.mock测试类

二.springboot使用@SpringBootTest单元测试

1.引入依赖包

2.测试类

三.mock和@springBootTest区别

1.mock进行单元测试不依赖spring的bean定义文件

不需要启动web服务,执行起来速度很快。

2.@springBootTest需要启动服务

执行真正的操作,执行速度慢,当需要真正的dao层操作时可选此测试方式。

单元测试--SpringbootTest和MockMvc

SpringbootTest

基于Junit 的Test

import junit.framework.TestCase;

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;

@RunWith(SpringRunner.class) //底层用junit的 SpringJUnit4ClassRunner

@SpringQcfbPHxqpJBootTest(classes = {XdclassSpringbootApplication.class})

public class XdclassSpringbootApplicationTests {

@Test

public void testOne() {

System.out.println("start test");

Assert.assertEquals(1,1);

TestCase.assertEquals(1,2);

}

}

当然也可以使用 @Before 和 @After , 和 junit 的测试一样。

启动类是必须要有的。

当http://有多个 @Test 的方法,需要一起执行的时候, 执行 XdclassSpringbootApplicationTests 这个类的 run或debug。

Assert 和 TestCase 都是 断言,用法一样。

MockMvc类的使用和模拟Http请求

相关API:

perform:执行一个RequestBuilder请求

andExpect:添加ResultMatcher->MockMvcResultMatchers验证规则

andReturn:最后返回相应的MvcResult->Response

import org.junit.Test;

import org.junit.runner.RunWith;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;

import org.springframework.boot.test.context.SpringBootTest;

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.rQcfbPHxqpJesult.MockMvcResultMatchers;

@RunWith(SpringRunner.class)

@SpringBootTest

@AutoConfigureMockMvc

public class MockMvcTestDemo {

@Autowired

private MockMvc mockMvc;

@Test

public void apiTest(){

try {

MvcResult mvcResult = mockMvc.perform(MockMvcRequestBuilders.get("/hello"))

.andExpect(MockMvcResultMatchers.status().isOk())            .andReturn();

} catch (Exception e) {

e.printStackTrace();

}

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们[email protected] 处理,核实后本网站将在24小时内删除侵权内容。