首頁 > 後端開發 > Golang > 主體

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

Mary-Kate Olsen
發布: 2024-11-04 05:53:29
原創
684 人瀏覽過

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板