一文搞懂GO中的單元測試(unit testing)

2022-11-01 18:00:23

單元測試,是指對軟體中的最小可測試單元進行檢查和驗證

單元就是人為規定的最小的被測功能模組

一般來說,要根據實際情況去判定其具體含義,如 C 語言中單元指一個函數,Go 裡面也單元也是一個函數

單元測試是在軟體開發過程中要進行的最低階別的測試活動,軟體的獨立單元將在與程式的其他部分相隔離的情況下進行測試。

單元測試,咱們平時也叫它單測,平時開發的時候,也需要寫一些 demo 來測試我們的專案中的函數或者某個小功能【推薦:】

go test 單元測試

GO 語言裡面的單元測試,是使用標準庫 testing

有如下簡單規則:

  • 匯入 test 標準庫
  • 單測檔名,後面跟上_test
  • 單測檔案中的函數名為 Test開頭,且引數必須是 t *testing.T

簡單例子:

寫一個簡單的例子,新增字尾和字首

.├── cal.go
├── cal_test.go
├── lll
└── sub.go
登入後複製

cal.go

package mainfunc Addprefix(str string) string {

    return "hello_"+str}func Addsuffix(str string) string {

    return str+"_good"}
登入後複製

cal_test.go

package mainimport "testing"func TestAddprefix(t *testing.T) {
        Addprefix("xiaomotong")}func TestAddsuffix(t *testing.T) {
        Addsuffix("xiaomotong")}
登入後複製

sub.go

package mainfunc MyAdd(a int, b int) int  {

    if a+b > 10{
        return 10
    }

    return a+b}func MySub(one int, two int) int{

    if one - two < 0{
        return 1
    }

    return one - two}
登入後複製

sub_test.go

package mainimport "testing"import "fmt"func TestMyAdd(t *testing.T) {
    num := MyAdd(4 ,9)
    fmt.Println(num)

    num = MyAdd(4 ,2)
    fmt.Println(num)}
登入後複製

執行單元測試

go test -v
登入後複製
  • -v

-v 是引數會顯示每個用例的測試結果,顯示執行的單測函數,是否通過以及單測的時候

執行結果如下

=== RUN   TestAddprefix
--- PASS: TestAddprefix (0.00s)=== RUN   TestAddsuffix
--- PASS: TestAddsuffix (0.00s)=== RUN   TestMyAdd
10
6
--- PASS: TestMyAdd (0.00s)PASS
ok      my_new_first/golang_study/later_learning/gotest 0.002s
登入後複製

在包目錄下執行 go test ,會執行包裡面所有的單元測試檔案

只執行指定的單測函數

咱們可以這樣用:

go test -run TestMyAdd -v

結果如下:

=== RUN   TestMyAdd
10
6
--- PASS: TestMyAdd (0.00s)PASS
ok      my_new_first/golang_study/later_learning/gotest 0.002s
登入後複製

子測試

就是在我們寫的單測函數中,呼叫 testing 包裡的 Run 方法,跑子測試

咱們改造一下上述的 sub_test.go

package mainimport "testing"import "fmt"func TestMyAdd(t *testing.T) {
    num := MyAdd(4 ,9)
    fmt.Println(num)

    num = MyAdd(4 ,2)
    fmt.Println(num)}func TestMySub(t *testing.T) {
        t.Run("one", func(t *testing.T) {
                if MySub(2, 3) != 1 {
                        t.Fatal("cal error")
                }

        })
        t.Run("two", func(t *testing.T) {
                if MySub(3, 1) != 2 {
                        t.Fatal(" error ")
                }
        })}
登入後複製

單獨呼叫子測試函數,執行 go test -run TestMySub/one -v

=== RUN   TestMySub=== RUN   TestMySub/one
--- PASS: TestMySub (0.00s)
    --- PASS: TestMySub/one (0.00s)PASS
ok      my_new_first/golang_study/later_learning/gotest 0.003s
登入後複製

生成報告,計算覆蓋率

  • 生成覆蓋率報告檔案

go test -v -covermode=count -coverprofile=cover.out

  • 使用 go tool 轉成 html 格式

go tool cover -html=cover.out -o cover.html

在瀏覽器中開啟 html 檔案,可以檢視到如下報告

2e1bd185286b365a755a6dbc1d04775.jpg

UNI-APP開發(仿餓了麼)開發課程:進入學習

圖中綠色的部分是已覆蓋,紅色的部分是未覆蓋,咱們的例子已經全部覆蓋具體的函數功能

go test 後面的指令,咱們也可以看幫助檔案

37f2dfac2aef41280b15a7d0b7fc0cd.jpg

很多公司都開始搞效能了,單測,自動化測試,CI/CD 都是要趕緊搞起來的,最好是做成一鍵釋出一鍵回滾的。羨慕這些基礎設定都非常完善的地方,哈哈哈~

以上就是一文搞懂GO中的單元測試(unit testing)的詳細內容,更多請關注TW511.COM其它相關文章!