SpringBootTest 学习笔记

简介: SpringBootTest 学习笔记

SpringBootTest 学习笔记


前言


版本说明

platform-bom=Cairo-SR7


相关链接



实战演练

package top.simba1949.web.controller;
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.ResultActions;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;
/**
 * @RunWith(SpringRunner.class) 告诉JUnit使用Spring的测试支持
 * @SpringBootTest 使用Spring Boot支持的引导,需要加载springboot的配置文件
 *
 * @Author Theodore
 * @Date 2019/12/2 15:15
 */
@RunWith(SpringRunner.class)
@SpringBootTest
public class UserControllerTest {
    /**
     * 伪造 MVC 环境
     */
    @Autowired
    private WebApplicationContext webApplicationContext;
    private MockMvc mockMvc;
    @Before
    public void init(){
        mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
    }
    /**
     *  MockMvcRequestBuilders 创建请求方式
     * @throws Exception
     */
    @Test
    public void whenQuerySuccess() throws Exception {
        ResultActions resultActions = mockMvc.perform(
                // 创建一个请求
                MockMvcRequestBuilders.get("/user")
                        // 添加 contentType 信息
                        .contentType(MediaType.APPLICATION_JSON_UTF8)
                        // 添加请求参数
                        .param("username", "test")
        );
        resultActions
                // 执行结果期望
                .andExpect(MockMvcResultMatchers.status().isOk())
                // jsonPath 参考 https://github.com/json-path/JsonPath
                .andExpect(MockMvcResultMatchers.jsonPath("$.length()").value(3));
    }
}


目录
相关文章
|
Java 测试技术
springbootTest坑
springbootTest坑
58 0
|
7月前
|
存储 Java 测试技术
《Spring 测试指南》:JPA、MockMvc 和 @SpringBootTest 详解
Spring 提供了一组测试工具,可以轻松地测试 Spring 应用程序的各个组件,包括控制器、服务、存储库和其他组件。它具有丰富的测试注释、实用程序类和其他功能,以帮助进行单元测试、集成测试等。
125 0
|
2月前
|
Go Python
Classes & OOP--Defining Your Own Exception Classes
Classes & OOP--Defining Your Own Exception Classes
16 2
|
4月前
|
Java
Unable to find @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest
Unable to find @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest
69 0
|
7月前
Strange fuction(HDU--2899)
Strange fuction(HDU--2899)
17HUI - 进度条(hui-progress)
17HUI - 进度条(hui-progress)
45 0
17HUI - 进度条(hui-progress)
|
JavaScript 前端开发
01HUI -HUI介绍
01HUI -HUI介绍
67 0
26HUI - 上拉加载(hui-refresh)
26HUI - 上拉加载(hui-refresh)
62 0
|
JSON Java 测试技术
一分钟上手SpringBootTest
您好,我是码农飞哥,感谢您阅读本文!本文主要讲述如何在SpringBoot框架上进行单元测试。也就是使用SpringBootTest进行单元测试。
706 0
|
Java Spring
第四篇:SpringBoot如何整合Junit -- @SpringBootTest + @Test
第四篇:SpringBoot如何整合Junit -- @SpringBootTest + @Test
239 0
第四篇:SpringBoot如何整合Junit -- @SpringBootTest + @Test