首頁 > 軟體

SpringBoot測試設定屬性與web啟動環境超詳細圖解

2022-10-23 18:01:35

載入測試專用的屬性

點開@SpringBootTest原始碼中檢視

可以在之後加入臨時設定, 也可以使用命令列args引數設定。設定的測試專用引數會覆蓋組態檔中的。

package com;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest(args = {properties = {"test.properties=1234"})
public class TestProperties {
    @Value("${test.properties}")
    private String ps;
    @Test
    public void test(){
        System.out.println(ps);
    }
}

執行結果

也可以使用命令列引數

args = {"--test.properties=4321"},

命令列引數的優先順序比組態檔的高,所以當兩者共存的時候,以命令列的為主

@SpringBootTest(args = {"--test.properties=4321"},properties = {"test.properties=1234"})

這個測試類設定的屬性只對當前測試有效,影響小

使用外部bean對測試

package com.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration//說明當前為設定類
public class TestBean {
    @Bean//建立bean
    public String mess(){
        return "this bean run ";
    }
}

在測試類下,使用@Import註解載入當前測試設定

package com.test;
import com.config.TestBean;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Import;
@SpringBootTest
@Import({TestBean.class})
public class TestBeanNow {
    @Autowired//注入bean物件
    public String mess;
    @Test
    public void test(){
        System.out.println(mess);
    }
}

執行結果

測速類啟動web環境

在測試類中執行一般是不會啟動伺服器的,如下圖。都是顯示執行成功或失敗的資訊

我們Ctrl+b點進@SpringBootTest原始碼中檢視,有一個關於web的

預設值是MOCK,mock:預設提供一個模擬的web環境,不會啟動內嵌的伺服器

我們在測試類中

第一個是以你組態檔指定的埠啟動,如果沒有就預設以8080啟動

第二個mock:預設提供一個模擬的web環境,不會啟動內嵌的伺服器

第三個是不啟動伺服器

第四個是隨機埠啟動

我們測試隨機埠啟動

package com;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class WebTest {
    @Test
    public void test(){
    }
}

執行結果

執行了兩次看埠結果,都是隨機的

到此這篇關於SpringBoot測試設定屬性與web啟動環境超詳細圖解的文章就介紹到這了,更多相關SpringBoot測試設定屬性內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com