springboot之SpringBoot单元测试

简介: 本文介绍了Spring和Spring Boot项目的单元测试方法,包括使用`@RunWith(SpringJUnit4ClassRunner.class)`、`@WebAppConfiguration`等注解配置测试环境,利用`MockMvc`进行HTTP请求模拟测试,以及如何结合Spring Security进行安全相关的单元测试。Spring Boot中则推荐使用`@SpringBootTest`注解简化测试配置。

SpringBoot单元测试

spring单元测试

之前在spring项目中使用单元测试时是使用注解@RunWith(SpringJUnit4ClassRunner.class)来进行的

java

代码解读

复制代码

@RunWith(SpringJUnit4ClassRunner.class)// 通过自动织入从应用程序上下文向测试本身注入bean
@WebAppConfiguration // 指定web环境
@ContextConfiguration(locations = { // 指定配置文件
        "classpath*:springmvc.xml"
})

使用@WebAppConfiguration注解之后还可以注入WebApplicationContext环境

java

代码解读

复制代码

@Autowired
private WebApplicationContext webApplicationContext;

private MockMvc mockMvc;

@Before
public void setup(){
    mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
}

MockMvc

我们可以使用MockMvc来进行模拟请求

json

代码解读

复制代码

@Test
public void test() throws Exception {
    MockHttpServletResponse response = mockMvc.perform(MockMvcRequestBuilders.get("/json/testJson"))
            .andExpect(MockMvcResultMatchers.status().isOk())
            .andReturn().getResponse();
    System.out.println(response.getContentAsString());

}

web安全测试

我们项目中经常会使用spring-security来进行权限,这就给我们的测试带来了麻烦,可以使用spring-security-test依赖来进行测试

xml

代码解读

复制代码

<dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-test</artifactId>
            <version>5.1.5.RELEASE</version>
            <scope>test</scope>
        </dependency>

在进行开启支持springSecurity

java

代码解读

复制代码

@Before
public void setup(){
    mockMvc = MockMvcBuilders
            .webAppContextSetup(webApplicationContext)
            .apply(SecurityMockMvcConfigurers.springSecurity())
            .build();
}

在写单元测试方法时,可以使用@WithMockUser来设置用户

java

代码解读

复制代码

@Test
@WithMockUser(username = "root",password = "123456",roles = "ADMIN")
public void testSecurity() throws Exception {
    MockHttpServletResponse response = mockMvc.perform(MockMvcRequestBuilders.get("/json/testJson"))
            .andExpect(MockMvcResultMatchers.status().isOk())
            .andReturn().getResponse();
    System.out.println(response.getContentAsString());

}

然后使用测试的UserDetails来进行用户验证@WithUserDetails("root")

springboot单元测试

springboot中可以使用@SpringBootTest来进行单元测试,其中设置webEnvironment可以来定义运行模式,并在测试用例上使用@RunWith(SpringRunner.class)注解

java

代码解读

复制代码

enum WebEnvironment {

   // 加载WebApplicationContext,并提供一个mock servlet环境,使用该模式内嵌的servlet容器不会启动
   MOCK(false),

   // 加载EmbeddedWebApplicationContext,并提供一个真实的servlet环境,内嵌servlet容器启动,并监听一个随机端口
   RANDOM_PORT(true),

   // 加载EmbeddedWebApplicationContext,并提供一个真实的servlet环境,内嵌servlet容器启动,并监听一个定义好的接口
   DEFINED_PORT(true),

  // 使用SpringApplication加载一个ApplicationContext,但不提供servlet环境
   NONE(false);

}

示例

java

代码解读

复制代码

@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoApplicationTests {

   @Autowired
   private CustomConfig config;

   @Test
   public void testProfile() {
      System.out.println(config.getName());
   }

}


转载来源:https://juejin.cn/post/7392194854863274022

相关文章
|
Java 测试技术
springboot单元测试
springboot单元测试
44 0
|
6月前
|
Java 测试技术 Maven
SpringBoot单元测试
新建一个maven项目,spring-boot-test 配置pom.xml parent属性
45 0
|
6月前
|
Java Maven
springboot如何进行简单的测试
springboot如何进行简单的测试
159 0
|
6月前
|
缓存 druid NoSQL
5.springboot整合其它项目
5.springboot整合其它项目
29 0
|
7月前
|
Java 测试技术 Spring
Springboot单元测试
Springboot单元测试
Springboot单元测试
|
7月前
|
Java 测试技术
SpringBoot整合Junit进行单元测试
SpringBoot整合Junit进行单元测试
71 0
|
Java Spring
SpringBoot 项目 如何简单整合 Resilience4j
SpringBoot 项目 如何简单整合 Resilience4j
492 0
|
JSON Java 测试技术
SpringBoot 之 单元测试
SpringBoot 之 单元测试
106 0
|
Java 测试技术 Maven
07.SpringBoot单元测试
07.SpringBoot单元测试
|
XML NoSQL Java
SpringBoot 开发总结思考(二)
模块装配:假设要注入MongoDB,那么就加上@Configuration注解,有可能一个配置类没办法解决某个方向的问题,往往是很多@Configuration的类组合在一起SpringBoot是使用Enable注解,然后再通过@import导入Selector,通过Selector读取 .factories 文件,最终加载的Configuration
166 0
SpringBoot 开发总结思考(二)