springboot基础(24):测试中配置web环境和虚拟调用

文章目录

  • 前言
  • 配置web环境
  • 发起虚拟调用

前言

Springboot的测试中配置web环境和虚拟调用

配置web环境

使用注解@SpringBootTest(webEnvironment =SpringBootTest.WebEnvironment.RANDOM_PORT) 配置web环境
springboot基础(24):测试中配置web环境和虚拟调用_第1张图片

@SpringBootTest(webEnvironment =SpringBootTest.WebEnvironment.RANDOM_PORT) 配置说明:

  • SpringBootTest.WebEnvironment.DEFINED_PORT
    固定端口,与application.yml配置一致
  • SpringBootTest.WebEnvironment.NONE
    (默认状态)不是web环境
  • SpringBootTest.WebEnvironment.RANDOM_PORT
    随机端口

发起虚拟调用

虚拟请求调用,调用接口 http://localhost:xxxx/hello
springboot基础(24):测试中配置web环境和虚拟调用_第2张图片

@SpringBootTest(webEnvironment =SpringBootTest.WebEnvironment.RANDOM_PORT)
@AutoConfigureMockMvc //开启mvc调用
public class WebTest {

    //通过形参方式注入Mvc对象
    @Test
    void hello(@Autowired MockMvc mockMvc) throws Exception {
        //创建请求,http://localhost:xxxx/hello
        MockHttpServletRequestBuilder builder= MockMvcRequestBuilders.get("/hello");
       ResultActions action=mockMvc.perform(builder);

    }
}

springboot基础(24):测试中配置web环境和虚拟调用_第3张图片

其他的请求方式
springboot基础(24):测试中配置web环境和虚拟调用_第4张图片

你可能感兴趣的:(springboot,spring,boot)