首頁  >  文章  >  後端開發  >  儘管使用了“-parallel 1”,為什麼在 Go 中跨多個套件運行時測試會失敗?

儘管使用了“-parallel 1”,為什麼在 Go 中跨多個套件運行時測試會失敗?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-11-04 05:53:29621瀏覽

Why Do Tests Fail When Running Across Multiple Packages in Go Despite Using `-parallel 1`?

在Go 中跨多個包運行測試時會出現並發問題

使用存儲在src/ 目錄中的子目錄下的多個包時,單獨為每個套件執行測試使用go test 通常會成功。然而,當嘗試使用 go test ./... 一起執行所有測試時,就會出現問題。

測試會執行,但由於測試之間的爭用,最終在對本地資料庫伺服器進行操作時失敗。儘管設定 -parallel 1 來防止資料庫爭用,測試仍然失敗。這表示測試排序存在問題。

每個測試檔案包含兩個全域變數:

<code class="go">var session *mgo.Session
var db *mgo.Database</code>

此外,它還使用以下設定和拆卸函數:

<code class="go">func setUp() {
   s, err := cfg.GetDBSession()
   if err != nil {
       panic(err)
   }

   session = s

   db = cfg.GetDB(session)

   db.DropDatabase()
}

func tearDown() {
   db.DropDatabase()

   session.Close()
}</code>

每個測試都以setUp()開始並以tearDown()結束。 cfg 定義如下:

<code class="go">package cfg

import (
    "labix.org/v2/mgo"
)

func GetDBSession() (*mgo.Session, error) {
    session, err := mgo.Dial("localhost")

    return session, err
}

func GetDB(session *mgo.Session) *mgo.Database {
    return session.DB("test_db")
}</code>

修改 cfg 以使用隨機資料庫後,測試成功通過。此觀察結果意味著來自多個套件的測試在某種程度上是同時運行的。

可能的解決方案:

選項1(未記錄):

  • 利用未記錄的標誌go test -p 1,它會依序建置和測試所有套件。

選項 2(基於 Shell):

  • 模擬 go test ./... 的功能,同時使用 shell 強制執行順序測試。

Bash 指令:

<code class="bash">find . -name '*.go' -printf '%h\n' | sort -u | xargs -n1 -P1 go test</code>

函數別名(gotest):

<code class="bash">function gotest(){   find  -name '*.go' -printf '%h\n' | sort -u | xargs -n1 -P1 go test; }</code>
函數別名(gotest):

以上是儘管使用了“-parallel 1”,為什麼在 Go 中跨多個套件運行時測試會失敗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn