Junit如何在SpringBootWeb項目中使用

這篇文章將為大家詳細講解有關(guān)Junit如何在SpringBoot Web項目中使用,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

創(chuàng)新互聯(lián)專注于紅寺堡網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供紅寺堡營銷型網(wǎng)站建設(shè),紅寺堡網(wǎng)站制作、紅寺堡網(wǎng)頁設(shè)計、紅寺堡網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造紅寺堡網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供紅寺堡網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

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

創(chuàng)建一個普通的Java類,在Junit4中不再需要繼承TestCase類了。

因為我們是Web項目,所以在創(chuàng)建的Java類中添加注解:

@RunWith(SpringJUnit4ClassRunner.class) // SpringJUnit支持,由此引入Spring-Test框架支持! 
@SpringApplicationConfiguration(classes = SpringBootSampleApplication.class) // 指定我們SpringBoot工程的Application啟動類
@WebAppConfiguration // 由于是Web項目,Junit需要模擬ServletContext,因此我們需要給我們的測試類加上@WebAppConfiguration。

接下來就可以編寫測試方法了,測試方法使用@Test注解標(biāo)注即可。

在該類中我們可以像平常開發(fā)一樣,直接@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;

/**
 *
 * @author  單紅宇(365384722)
 * @create  2016年2月23日
 */
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = SpringBootSampleApplication.class)
@WebAppConfiguration
public 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);
  }

}

接下來,你需要新增無數(shù)個測試類,編寫無數(shù)個測試方法來保障我們開發(fā)完的程序的有效性。

2、Junit基本注解介紹

//在所有測試方法前執(zhí)行一次,一般在其中寫上整體初始化的代碼 
@BeforeClass

//在所有測試方法后執(zhí)行一次,一般在其中寫上銷毀和釋放資源的代碼 
@AfterClass

//在每個測試方法前執(zhí)行,一般用來初始化方法(比如我們在測試別的方法時,類中與其他測試方法共享的值已經(jīng)被改變,為了保證測試結(jié)果的有效性,我們會在@Before注解的方法中重置數(shù)據(jù)) 
@Before

//在每個測試方法后執(zhí)行,在方法執(zhí)行完成后要做的事情 
@After

// 測試方法執(zhí)行超過1000毫秒后算超時,測試將失敗 
@Test(timeout = 1000)

// 測試方法期望得到的異常類,如果方法執(zhí)行沒有拋出指定的異常,則測試失敗 
@Test(expected = Exception.class)

// 執(zhí)行測試時將忽略掉此方法,如果用于修飾類,則忽略整個類 
@Ignore(“not ready yet”) 
@Test

@RunWith

在JUnit中有很多個Runner,他們負責(zé)調(diào)用你的測試代碼,每一個Runner都有各自的特殊功能,你要根據(jù)需要選擇不同的Runner來運行你的測試代碼。

如果我們只是簡單的做普通Java測試,不涉及spring Web項目,你可以省略@RunWith注解,這樣系統(tǒng)會自動使用默認Runner來運行你的代碼。

3、參數(shù)化測試

Junit為我們提供的參數(shù)化測試需要使用 @RunWith(Parameterized.class)

然而因為Junit 使用@RunWith指定一個Runner,在我們更多情況下需要使用@RunWith(SpringJUnit4ClassRunner.class)來測試我們的Spring工程方法,所以我們使用assertArrayEquals 來對方法進行多種可能性測試便可。

下面是關(guān)于參數(shù)化測試的一個簡單例子:

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;

  /**
   * 該構(gòu)造方法的參數(shù)與下面@Parameters注解的方法中的Object數(shù)組中值的順序?qū)?yīng)
   * @param name
   * @param result
   */
  public ParameterTest(String name, boolean result) {
    super();
    this.name = name;
    this.result = result;
  }

  @Test
  public void test() {
    assertTrue(name.contains("小") == result);
  }

  /**
   * 該方法返回Collection
   *
   * @return
   * @author SHANHY
   * @create 2016年2月26日
   */
  @Parameters
  public static Collection<?> data(){
    // Object 數(shù)組中值的順序注意要和上面的構(gòu)造方法ParameterTest的參數(shù)對應(yīng)
    return Arrays.asList(new Object[][]{
      {"小明2", true},
      {"壞", false},
      {"莉莉", false},
    });
  }
}

4、打包測試

正常情況下我們寫了5個測試類,我們需要一個一個執(zhí)行。

打包測試,就是新增一個類,然后將我們寫好的其他測試類配置在一起,然后直接運行這個類就達到同時運行其他幾個測試的目的。

代碼如下:

@RunWith(Suite.class) 
@SuiteClasses({ATest.class, BTest.class, CTest.class}) 
public class ABCSuite {
  // 類中不需要編寫代碼
}

5、使用Junit測試HTTP的API接口

我們可以直接使用這個來測試我們的Rest API,如果內(nèi)部單元測試要求不是很嚴格,我們保證對外的API進行完全測試即可,因為API會調(diào)用內(nèi)部的很多方法,姑且把它當(dāng)做是整合測試吧。

下面是一個簡單的例子:

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;

/**
 *
 * @author  單紅宇(365384722)
 * @create  2016年2月23日
 */
@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"));
  }

}

6、捕獲輸出

使用 OutputCapture 來捕獲指定方法開始執(zhí)行以后的所有輸出,包括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"));
  }
}

關(guān)于Assert類中的一些斷言方法,都很簡單,本文不再贅述。

但是在新版的Junit中,assertEquals 方法已經(jīng)被廢棄,它建議我們使用assertArrayEquals,旨在讓我們測試一個方法的時候多傳幾種參數(shù)進行多種可能性測試。

關(guān)于Junit如何在SpringBoot Web項目中使用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

文章名稱:Junit如何在SpringBootWeb項目中使用
本文路徑:http://muchs.cn/article20/iidejo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)網(wǎng)站制作、網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計公司、小程序開發(fā)網(wǎng)站設(shè)計

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站網(wǎng)頁設(shè)計