首頁 > 後端開發 > Golang > 如何有效模擬 Go 中的函數?

如何有效模擬 Go 中的函數?

Linda Hamilton
發布: 2024-12-06 21:23:14
原創
446 人瀏覽過

How Can I Effectively Mock Functions in Go?

Golang 中的模擬函數

簡介

在Go 中,模擬在具體類型上宣告的函數,例如func F() {}而func (T) M() {} 是不可能的。然而,還有其他方法可以實現類似的功能。

模擬函數值

Go 允許模擬函數值,無論它們是儲存在變數中、作為結構體上的欄位或作為傳遞給其他函數的參數。例如,考慮以下內容:

var Fn = func() { ... }

type S struct {
    Fn func()
}

func F(Fn func())
登入後複製

在所有三種情況下,Fn 都是可模擬的。

模擬介面

Go 中較優選的模擬方法是使用介面。例如:

type ProductRepository interface {
    GetProductById(DB *sql.DB, ID int) (p Product, err error)
}

// The real implementer
type ProductStore struct{}

func (ProductStore) GetProductById(DB *sql.DB, ID int) (p Product, err error) {
    q := "SELECT * FROM product WHERE id = ?"
    // ...
}

// The mock implementer
type ProductRepositoryMock struct{}

func (ProductRepositoryMock) GetProductById(DB *sql.DB, ID int) (p Product, err error) {
    // ...
}
登入後複製

任何依賴 ProductRepository 的程式碼現在都可以在正常場景中使用 ProductStore,並在測試期間使用 ProductRepositoryMock。

*sql.DB 的模擬介面

另一個允許保留現有函數宣告的模擬選項是定義一個模仿 *sql.DB 方法的介面並使用它 反而。例如:

type DBIface interface {
    Query(query string, args ...interface{}) (*sql.Rows, error)
    // Only declare methods that are actually used.
}

type DBMock struct{}

func (DBMock) Query(query string, args ...interface{}) (*sql.Rows, error) {
    // ...
}

func GetProductByName(DB DBIface, name string) (p Product, err error) {
    ...
}
登入後複製

透過這個方法,GetProductByName 的 DB 參數變得可模擬。

以上是如何有效模擬 Go 中的函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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