返回顶部
首页 > 资讯 > 精选 >Spring Boot中怎么利用JUnit 5实现单元测试
  • 294
分享到

Spring Boot中怎么利用JUnit 5实现单元测试

2023-06-16 08:06:04 294人浏览 八月长安
摘要

这篇文章给大家介绍Spring Boot中怎么利用JUnit 5实现单元测试,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。1. 忽略测试用例执行JUnit 4:@Test  @Ignore 

这篇文章给大家介绍Spring Boot中怎么利用JUnit 5实现单元测试,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

1. 忽略测试用例执行

JUnit 4:

@Test  @Ignore  public void testMethod() {     // ...  }

JUnit 5:

@Test  @Disabled("explanation")  public void testMethod() {     // ...  }

2. RunWith 配置

JUnit 4:

@RunWith(springRunner.class)  @SpringBootTest  public class ApplicationTests {      @Test      public void contextLoads() {      }  }

JUnit 5:

@ExtendWith(SpringExtension.class)  @SpringBootTest public class ApplicationTests {      @Test      public void contextLoads() {      }  }

3. @Before、@BeforeClass、@After、@AfterClass 被替换

  •  @BeforeEach 替换 @Before

  •  @BeforeAll 替换 @BeforeClass

  •  @AfterEach 替换 @After

  •  @AfterAll 替换 @AfterClass

开发环境

示例

1.创建 Spring Boot 工程。

2.添加 spring-boot-starter-web 依赖,最终 pom.xml 如下。

<?xml version="1.0" encoding="UTF-8"?>  <project xmlns="Http://Maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"           xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">      <modelVersion>4.0.0</modelVersion>      <parent>          <groupId>org.springframework.boot</groupId>          <artifactId>spring-boot-starter-parent</artifactId>          <version>2.2.6.RELEASE</version>          <relativePath/>      </parent>      <groupId>tutorial.spring.boot</groupId>      <artifactId>spring-boot-junit5</artifactId>      <version>0.0.1-SNAPSHOT</version>      <name>spring-boot-junit5</name>      <description>Demo project for Spring Boot Unit Test with JUnit 5</description>      <properties>          <java.version>1.8</java.version>      </properties>      <dependencies>          <dependency>              <groupId>org.springframework.boot</groupId>              <artifactId>spring-boot-starter-WEB</artifactId>          </dependency>          <dependency>              <groupId>org.springframework.boot</groupId>              <artifactId>spring-boot-starter-test</artifactId>              <scope>test</scope>              <exclusions>                  <exclusion>                      <groupId>org.junit.vintage</groupId>                      <artifactId>junit-vintage-engine</artifactId>                  </exclusion>              </exclusions>          </dependency>      </dependencies>      <build>          <plugins>              <plugin>                  <groupId>org.springframework.boot</groupId>                  <artifactId>spring-boot-maven-plugin</artifactId>              </plugin>          </plugins>      </build> </project>

3.工程创建好之后自动生成了一个测试类。

package tutorial.spring.boot.junit5;  import org.junit.jupiter.api.Test;  import org.springframework.boot.test.context.SpringBootTest;  @SpringBootTest  class SpringBootJunit5ApplicationTests {      @Test      void contextLoads() {      }  }

这个测试类的作用是检查应用程序上下文是否可正常启动。@SpringBootTest 注解告诉 Spring Boot 查找带 @SpringBootApplication 注解的主配置类,并使用该类启动 Spring 应用程序上下文。Java知音公众号内回复“后端面试”, 送你一份Java面试题宝典

4.补充待测试应用逻辑代码

4.1. 定义 Service 层接口

package tutorial.spring.boot.junit5.service;  public interface HelloService {     String hello(String name);  }

4.2. 定义 Controller 层

package tutorial.spring.boot.junit5.controller;  import org.springframework.web.bind.annotation.GetMapping;  import org.springframework.web.bind.annotation.PathVariable;  import org.springframework.web.bind.annotation.RestController;  import tutorial.spring.boot.junit5.service.HelloService;  @RestController  public class HelloController {      private final HelloService helloService;      public HelloController(HelloService helloService) {         this.helloService = helloService;      }      @GetMapping("/hello/{name}")      public String hello(@PathVariable("name") String name) {          return helloService.hello(name);      }  }

4.3. 定义 Service 层实现

package tutorial.spring.boot.junit5.service.impl;  import org.springframework.stereotype.Service;  import tutorial.spring.boot.junit5.service.HelloService;  @Service public class HelloServiceImpl implements HelloService {      @Override      public String hello(String name) {          return "Hello, " + name;      }  }

5.编写发送 HTTP 请求的单元测试。

package tutorial.spring.boot.junit5;  import org.assertj.core.api.Assertions;  import org.junit.jupiter.api.Test;  import org.springframework.beans.factory.annotation.Autowired;  import org.springframework.boot.test.context.SpringBootTest;  import org.springframework.boot.test.web.client.TestRestTemplate;  import org.springframework.boot.web.server.LocalServerPort;  @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)  public class HttpRequestTest {      @LocalServerPort      private int port;      @Autowired      private TestRestTemplate restTemplate;     @Test      public void testHello() {          String requestResult = this.restTemplate.getForObject("http://127.0.0.1:" + port + "/hello/spring",                  String.class);          Assertions.assertThat(requestResult).contains("Hello, spring");      }  }

说明:

  •  webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT 使用本地的一个随机端口启动服务;

  •  @LocalServerPort 相当于 @Value("${local.server.port}");

  •  在配置了 webEnvironment 后,Spring Boot 会自动提供一个 TestRestTemplate 实例,可用于发送 HTTP 请求。

  •  除了使用 TestRestTemplate 实例发送 HTTP 请求外,还可以借助 org.springframework.test.web.servlet.Mockmvc 完成类似功能,代码如下: 

package tutorial.spring.boot.junit5.controller;  import org.assertj.core.api.Assertions;  import org.junit.jupiter.api.Test;  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.web.servlet.MockMvc;  import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;  import org.springframework.test.web.servlet.result.MockMvcResultHandlers;  import org.springframework.test.web.servlet.result.MockMvcResultMatchers;  @SpringBootTest  @AutoConfigureMockMvc  public class HelloControllerTest {      @Autowired      private HelloController helloController;      @Autowired      private MockMvc mockMvc;      @Test      public void testNotNull() {          Assertions.assertThat(helloController).isNotNull();      }      @Test      public void testHello() throws Exception {          this.mockMvc.perfORM(MockMvcRequestBuilders.get("/hello/spring"))                  .andDo(MockMvcResultHandlers.print())                  .andExpect(MockMvcResultMatchers.status().isOk())                  .andExpect(MockMvcResultMatchers.content().string("Hello, spring"));     }  }

以上测试方法属于整体测试,即将应用上下文全都启动起来,还有一种分层测试方法,譬如仅测试 Controller 层。

6.分层测试。

package tutorial.spring.boot.junit5.controller;  import org.assertj.core.api.Assertions;  import org.junit.jupiter.api.Test;  import org.mockito.Mockito;  import org.springframework.beans.factory.annotation.Autowired;  import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;  import org.springframework.boot.test.mock.mockito.MockBean;  import org.springframework.test.web.servlet.MockMvc;  import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;  import org.springframework.test.web.servlet.result.MockMvcResultHandlers;  import org.springframework.test.web.servlet.result.MockMvcResultMatchers;  import tutorial.spring.boot.junit5.service.HelloService;  @WebMvcTest  public class HelloControllerTest {      @Autowired      private HelloController helloController;      @Autowired      private MockMvc mockMvc;     @MockBean      private HelloService helloService;      @Test      public void testNotNull() {          Assertions.assertThat(helloController).isNotNull();      }      @Test      public void testHello() throws Exception {          Mockito.when(helloService.hello(Mockito.anyString())).thenReturn("Mock hello");          this.mockMvc.perform(MockMvcRequestBuilders.get("/hello/spring"))                  .andDo(MockMvcResultHandlers.print())                  .andExpect(MockMvcResultMatchers.status().isOk())                  .andExpect(MockMvcResultMatchers.content().string("Mock hello"));      }  }

说明:

@WebMvcTest 注释告诉 Spring Boot 仅实例化 Controller 层,而不去实例化整体上下文,还可以进一步指定仅实例化 Controller 层的某个实例:@WebMvcTest(HelloController.class);

因为只实例化了 Controller 层,所以依赖的 Service 层实例需要通过 @MockBean 创建,并通过 Mockito 的方法指定 Mock 出来的 Service 层实例在特定情况下方法调用时的返回结果。

关于Spring Boot中怎么利用JUnit 5实现单元测试就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

--结束END--

本文标题: Spring Boot中怎么利用JUnit 5实现单元测试

本文链接: https://lsjlt.com/news/282968.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • Spring Boot中怎么利用JUnit 5实现单元测试
    这篇文章给大家介绍Spring Boot中怎么利用JUnit 5实现单元测试,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。1. 忽略测试用例执行JUnit 4:@Test  @Ignore ...
    99+
    2023-06-16
  • 怎么在Java中利用JUnit实现一个单元测试功能
    怎么在Java中利用JUnit实现一个单元测试功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。单元测试是编写测试代码,应该准确、快速地保证程序基本模块的正确性...
    99+
    2023-05-31
    java junit ava
  • Vue中怎么利用case实现单元测试
    Vue中怎么利用case实现单元测试,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。测试关注点对于vue组件,单元测试测试主要关...
    99+
    2024-04-02
  • 怎么在Android中利用Activity实现单元测试
    这期内容当中小编将会给大家带来有关怎么在Android中利用Activity实现单元测试,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。对Acitivity的测试对于Activity,我们大致有两种测试需求...
    99+
    2023-05-30
    android activity
  • Android中使用Junit进行单元测试
      不管我们在学习还是在开发的时候,都会用到测试,在Android中进行的Junit单元工具测试需要创建一个类去继承于AndroidTestCase类,同时还需要在主配置文...
    99+
    2022-06-06
    单元 junit 单元测试 测试 Android
  • Android Studio中使用junit做单元测试
      单元测试(unit testing),是指对软件中的小可测试单元进行检查和验证。比如一个函数,一个方法等。关于单元测试要不要做,由谁来做这些问题暂时抛到一边。本文只是单...
    99+
    2022-06-06
    Android Studio studio 单元 junit 单元测试 测试 Android
  • 使用Spring Boot进行单元测试详情
    目录前言使用 Spring Boot 进行测试系列文章依赖项不要在单元测试中使用Spring创建一个可测试的类实例属性注入是不好的提供一个构造函数减少模板代码使用Mockito来模拟...
    99+
    2024-04-02
  • Spring使用RestTemplate和Junit单元测试的注意事项
    目录使用RestTemplate和Junit单元测试的注意事项springboot中的单元测试MockMVC和TestRestTemplate的使用与对比MockMVCRestTem...
    99+
    2024-04-02
  • Java Spring Boot实战练习之单元测试篇
        一、关于JUnit的一些东西   在我们开发Web应用时,经常会直接去观察结果进行测试。虽然也是一种方式,但是并不...
    99+
    2024-04-02
  • Android中如何使用JUnit进行单元测试
      在我们日常开发android app的时候,需要不断地进行测试,所以使用JUnit测试框架显得格外重要,学会JUnit可以加快应用的开发周期。   Android中建...
    99+
    2022-06-06
    单元 junit 单元测试 测试 Android
  • Node.js中怎么实现单元测试
    Node.js中怎么实现单元测试,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。为啥需要单元测试?所谓单元测试,就是对某个函数或者API进行正确性验证。来看个简单的例子add1....
    99+
    2023-06-17
  • Django中怎么实现单元测试
    在Django中,可以使用Django提供的TestCase类来编写单元测试。下面是一个示例: 创建一个测试类,并继承自djang...
    99+
    2024-03-06
    Django
  • 如何进行单元测试利器JUnit的实践与分析
    今天就跟大家聊聊有关如何进行单元测试利器JUnit的实践与分析,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。单元测试工具Junit是一个开源项目,昨天学习了一下这个东西,总结下心得。...
    99+
    2023-06-17
  • 如何Spring Boot中使用MockMvc对象进行单元测试
    这期内容当中小编将会给大家带来有关如何Spring Boot中使用MockMvc对象进行单元测试,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。Spring测试框架提供MockMvc对象,可以在不需要客户端...
    99+
    2023-05-31
    springboot mockmvc
  • 利用junit4怎么实现一个单元测试功能
    今天就跟大家聊聊有关利用junit4怎么实现一个单元测试功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。Junit单元测试框架是Java程序开发必备的测试利器,现在最常用的就是Ju...
    99+
    2023-05-31
    junit4
  • Java中怎么实现单元测试与集成测试
    Java中怎么实现单元测试与集成测试,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。Maven测试代码结构的组织我们知道在Maven工程结构中“src/test”目录是专门用...
    99+
    2023-06-16
  • python中怎么实现unittest单元测试
    python中怎么实现unittest单元测试,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。说明导入unittest模块。导入被测对象。创建测试类unittest.TestCa...
    99+
    2023-06-20
  • GO中的单元测试怎么实现
    这篇“GO中的单元测试怎么实现”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“GO中的单元测试怎么实现”文章吧。  ...
    99+
    2023-07-04
  • Hibernate单元测试怎么实现
    这篇文章主要介绍“Hibernate单元测试怎么实现”,在日常操作中,相信很多人在Hibernate单元测试怎么实现问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Hibernate单元测试怎么实现”的疑惑有所...
    99+
    2023-06-17
  • android单元测试怎么实现
    Android单元测试可以通过使用JUnit框架和Android Testing Support Library来实现。以下是实现A...
    99+
    2023-08-29
    android
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作