文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Junit如何在SpringBoot Web项目中使用

2023-05-31 10:06

关注

这篇文章将为大家详细讲解有关Junit如何在SpringBoot Web项目中使用,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

1、SpringBoot Web项目中中如何使用Junit

创建一个普通的Java类,在Junit4中不再需要继承TestCase类了。

因为我们是Web项目,所以在创建的Java类中添加注解:

@RunWith(SpringJUnit4ClassRunner.class) // SpringJUnit支持,由此引入Spring-Test框架支持! @SpringApplicationConfiguration(classes = SpringBootSampleApplication.class) // 指定我们SpringBoot工程的Application启动类@WebAppConfiguration // 由于是Web项目,Junit需要模拟ServletContext,因此我们需要给我们的测试类加上@WebAppConfiguration。

接下来就可以编写测试方法了,测试方法使用@Test注解标注即可。

在该类中我们可以像平常开发一样,直接@Autowired来注入我们要测试的类实例。

下面是完整代码:

package org.springboot.sample;import static org.junit.Assert.assertArrayEquals;import org.junit.Test;import org.junit.runner.RunWith;import org.springboot.sample.service.StudentService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.SpringApplicationConfiguration;import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;import org.springframework.test.context.web.WebAppConfiguration;@RunWith(SpringJUnit4ClassRunner.class)@SpringApplicationConfiguration(classes = SpringBootSampleApplication.class)@WebAppConfigurationpublic class StudentTest {  @Autowired  private StudentService studentService;  @Test  public void likeName() {    assertArrayEquals(        new Object[]{            studentService.likeName("小明2").size() > 0,            studentService.likeName("坏").size() > 0,            studentService.likeName("莉莉").size() > 0          },         new Object[]{            true,            false,            true          }    );//   assertTrue(studentService.likeName("小明2").size() > 0);  }}

接下来,你需要新增无数个测试类,编写无数个测试方法来保障我们开发完的程序的有效性。

2、Junit基本注解介绍

//在所有测试方法前执行一次,一般在其中写上整体初始化的代码 @BeforeClass//在所有测试方法后执行一次,一般在其中写上销毁和释放资源的代码 @AfterClass//在每个测试方法前执行,一般用来初始化方法(比如我们在测试别的方法时,类中与其他测试方法共享的值已经被改变,为了保证测试结果的有效性,我们会在@Before注解的方法中重置数据) @Before//在每个测试方法后执行,在方法执行完成后要做的事情 @After// 测试方法执行超过1000毫秒后算超时,测试将失败 @Test(timeout = 1000)// 测试方法期望得到的异常类,如果方法执行没有抛出指定的异常,则测试失败 @Test(expected = Exception.class)// 执行测试时将忽略掉此方法,如果用于修饰类,则忽略整个类 @Ignore(“not ready yet”) @Test@RunWith

在JUnit中有很多个Runner,他们负责调用你的测试代码,每一个Runner都有各自的特殊功能,你要根据需要选择不同的Runner来运行你的测试代码。

如果我们只是简单的做普通Java测试,不涉及spring Web项目,你可以省略@RunWith注解,这样系统会自动使用默认Runner来运行你的代码。

3、参数化测试

Junit为我们提供的参数化测试需要使用 @RunWith(Parameterized.class)

然而因为Junit 使用@RunWith指定一个Runner,在我们更多情况下需要使用@RunWith(SpringJUnit4ClassRunner.class)来测试我们的Spring工程方法,所以我们使用assertArrayEquals 来对方法进行多种可能性测试便可。

下面是关于参数化测试的一个简单例子:

package org.springboot.sample;import static org.junit.Assert.assertTrue;import java.util.Arrays;import java.util.Collection;import org.junit.Test;import org.junit.runner.RunWith;import org.junit.runners.Parameterized;import org.junit.runners.Parameterized.Parameters;@RunWith(Parameterized.class)public class ParameterTest {  private String name;  private boolean result;    public ParameterTest(String name, boolean result) {    super();    this.name = name;    this.result = result;  }  @Test  public void test() {    assertTrue(name.contains("小") == result);  }    @Parameters  public static Collection<?> data(){    // Object 数组中值的顺序注意要和上面的构造方法ParameterTest的参数对应    return Arrays.asList(new Object[][]{      {"小明2", true},      {"坏", false},      {"莉莉", false},    });  }}

4、打包测试

正常情况下我们写了5个测试类,我们需要一个一个执行。

打包测试,就是新增一个类,然后将我们写好的其他测试类配置在一起,然后直接运行这个类就达到同时运行其他几个测试的目的。

代码如下:

@RunWith(Suite.class) @SuiteClasses({ATest.class, BTest.class, CTest.class}) public class ABCSuite {  // 类中不需要编写代码}

5、使用Junit测试HTTP的API接口

我们可以直接使用这个来测试我们的Rest API,如果内部单元测试要求不是很严格,我们保证对外的API进行完全测试即可,因为API会调用内部的很多方法,姑且把它当做是整合测试吧。

下面是一个简单的例子:

package org.springboot.sample;import static org.junit.Assert.assertNotNull;import static org.junit.Assert.assertThat;import static org.junit.Assert.assertTrue;import java.util.regex.Matcher;import java.util.regex.Pattern;import org.hamcrest.Matchers;import org.junit.After;import org.junit.AfterClass;import org.junit.Before;import org.junit.BeforeClass;import org.junit.Ignore;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Value;import org.springframework.boot.test.SpringApplicationConfiguration;import org.springframework.boot.test.TestRestTemplate;import org.springframework.boot.test.WebIntegrationTest;import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;import org.springframework.util.LinkedMultiValueMap;import org.springframework.util.MultiValueMap;import org.springframework.web.client.RestTemplate;@RunWith(SpringJUnit4ClassRunner.class)@SpringApplicationConfiguration(classes = SpringBootSampleApplication.class)//@WebAppConfiguration // 使用@WebIntegrationTest注解需要将@WebAppConfiguration注释掉@WebIntegrationTest("server.port:0")// 使用0表示端口号随机,也可以具体指定如8888这样的固定端口public class HelloControllerTest {  private String dateReg;  private Pattern pattern;  private RestTemplate template = new TestRestTemplate();  @Value("${local.server.port}")// 注入端口号  private int port;  @Test  public void test3(){    String url = "http://localhost:"+port+"/myspringboot/hello/info";    MultiValueMap<String, Object> map = new LinkedMultiValueMap<String, Object>();     map.add("name", "Tom");     map.add("name1", "Lily");    String result = template.postForObject(url, map, String.class);    System.out.println(result);    assertNotNull(result);    assertThat(result, Matchers.containsString("Tom"));  }}

捕获输出

使用 OutputCapture 来捕获指定方法开始执行以后的所有输出,包括System.out输出和Log日志。

OutputCapture 需要使用@Rule注解,并且实例化的对象需要使用public修饰,如下代码:

@RunWith(SpringJUnit4ClassRunner.class)@SpringApplicationConfiguration(classes = SpringBootSampleApplication.class)//@WebAppConfiguration // 使用@WebIntegrationTest注解需要将@WebAppConfiguration注释掉@WebIntegrationTest("server.port:0")// 使用0表示端口号随机,也可以具体指定如8888这样的固定端口public class HelloControllerTest {  @Value("${local.server.port}")// 注入端口号  private int port;  private static final Logger logger = LoggerFactory.getLogger(StudentController.class);  @Rule  // 这里注意,使用@Rule注解必须要用public  public OutputCapture capture = new OutputCapture();  @Test  public void test4(){    System.out.println("HelloWorld");    logger.info("logo日志也会被capture捕获测试输出");    assertThat(capture.toString(), Matchers.containsString("World"));  }}

关于Assert类中的一些断言方法,都很简单,本文不再赘述。

但是在新版的Junit中,assertEquals 方法已经被废弃,它建议我们使用assertArrayEquals,旨在让我们测试一个方法的时候多传几种参数进行多种可能性测试。

关于Junit如何在SpringBoot Web项目中使用就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯