Springboot上集成Junit5单元测试

Springboot上集成Junit5单元测试_第1张图片

一、添加依赖

需要在pom.xml添加依赖和插件,给出的是试验成功过的,可能不是最小集

依赖:

      
          org.springframework.boot
          spring-boot-starter-test
          test
      
      
          org.springframework.restdocs
          spring-restdocs-mockmvc
          test
      
      
          org.springframework.security
          spring-security-test
          test
      
      
      
      
          junit
          junit
          ${junit.version}
          test
      
      
          org.junit.jupiter
          junit-jupiter-engine
          5.0.2
          test
      
      
          org.junit.vintage
          junit-vintage-engine
          ${junit.version}.0
          test
      
      
          org.junit.platform
          junit-platform-runner
          1.0.2
          test
      
      
          org.junit.platform
          junit-platform-surefire-provider
          1.0.0
      

插件: 

        
            maven-compiler-plugin
            3.1
            
                ${java.version}
                ${java.version}
            
        
        
            maven-surefire-plugin
            2.19
        

二、创建测试类

对要测试的类创建响应的测试类,用于编写测试代码。

可以自己创建,但是推荐鼠标点在类名上,ALT+ENTER快捷键创建。

Springboot上集成Junit5单元测试_第2张图片

然后弹出下面的创建测试类界面,默认JUnit5,可以选要创建的方法,然后确认。

 Springboot上集成Junit5单元测试_第3张图片

 然后就在test目录下与原文件对应的目录结构下创建了测试类文件。

 Springboot上集成Junit5单元测试_第4张图片

Springboot上集成Junit5单元测试_第5张图片

三、编写测试类 

 这里的自由度很大,你得明白自己要测试什么。

Springboot上集成Junit5单元测试_第6张图片

我这里就测试原文件这个方法的返回值的数据库数据条数,是不是我预测的数量。

所以编写测试类如下:

public class TestControllerTest {
    @Autowired
    TestController testController;

    @Test
    public void testTestOpenJdbc() {
        List result = (List)testController.testOpenJdbc();
        Assert.assertEquals(result.size(),5);
    }
}

 另外,还需要在测试类名上加如下注解:

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@RunWith(SpringRunner.class)

这里面是要将TestController这个bean从Spring容器取到,然后调用它的testOpenJdbc()方法的,所以用到了@Autowired注解。

由于运行单元测试的时候,Spring默认不会创建web容器环境,因此,对于javaweb后台类型的项目,需要在@SpringBootTest后添加(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) 来启动随机端口的容器运行环境

并且需要用到断言,去判断数据是否是预期的,所以用到的Assert

四、运行测试类

点击测试类或者具体测试方法上的启动按钮,运行测试

Springboot上集成Junit5单元测试_第7张图片

 正常执行完成,方法返回值与预期的一致为5,测试通过。

如果把5改为3,则会出现测试失败,运行结果会打个叉叉。

Springboot上集成Junit5单元测试_第8张图片

注意点:

1、依赖引入要注意springboot的版本号与springtest是否有冲突,我的spring-boot 2.1.6.RELEASE

2、不要引入其他多余的内容,比如我引入了 spring-boot-test-autoconfigure,就会一直运行出错 

中间配置的过程中出现的一些错误,首先要考虑是否依赖引入问题,版本号不对,包冲突等

例如:

java.lang.NoSuchMethodError: org.springframework.util.ReflectionUtils$MethodFilter.and(Lorg/springframework/util/ReflectionUtils$MethodFilter;)Lorg/springframework/util/ReflectionUtils$MethodFilter;

 原因:包引入错误,调整

java.lang.NoClassDefFoundError:org/springframework/test/content/TestContesxtAnnotationUtils

原因:包引入错误,spring test相关版本不一致

处理:注释掉spring-boot-autoconfigure

nested exception is java.lang.IllegalStateException: javax.websocket.server.ServerContainer not available

原因:

这是因为在启动单元测试时,SpringBootTest不会启动服务器,WebSocket自然也就没有启动,但是在代码里又配置了WebSocket,就会出错

解决办法:

启动类加上注解

@RunWith(SpringRunner.class)

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)

 

你可能感兴趣的:(Java,spring,boot,单元测试,junit)