php小編草莓為您介紹一款用於測試的golang介面。在軟體開發過程中,測試是不可或缺的環節,而這款介面則提供了便利的測試功能。透過此接口,開發人員可以快速檢驗程式碼的正確性和穩定性,提高開發效率。無論是介面的功能測試、效能測試或壓力測試,該工具都能滿足需求。此外,該介面還提供了簡潔直覺的測試結果展示,讓開發人員更直觀地了解程式碼的運作情況。無論您是初學者還是資深開發人員,這款golang介面都能為您的開發工作帶來便利與效益。
我試圖在我的程式碼中創建一個資料庫模擬,然後我向我的程式碼引入接口,以創建模擬:
這是我的程式碼(我不知道這是否是正確的方法)
package interfaces type objectapi interface { findsomethingindatabase(ctx context.context, name string) (e.response, error) }
我的介面實作是:
package repositories func findsomethingindatabase(ctx context.context, name string) (e.response, error) { statement, err := db.sqlstatementwithctx(ctx, `select * from table where name = ? limit 1`) row := statement.queryrowcontext(ctx, name) if err != nil { return e.response{}, err } statement.close() return toresponse(row), nil //this method convert row database to e.response struct }
現在我需要從一種方法呼叫 findsomethingindatabase 的實現,然後我收到一個物件類型介面:
func CallImplementation(request *dto.XRequest, repo i.ObjectAPI) dto.XResponse{ result := repo.FindSomethingInDatabase(request.Ctx, request.Name) // more code }
但現在我不知道如何呼叫 callimplementation
` 來傳遞帶有實作的物件。
呼叫傳遞介面實作的方法
介面描述類型。由於您的 findsomethingindatabase
實作只是一個沒有接收器的 func,因此沒有實作介面 objectapi
的類型。
您可以將func(ctx context.context, name string) (e.response, error)
類型的值作為回調傳遞到callimplementation
中,並完全擺脫該介面。或者,保留接口,定義類型,並使該類型成為當前 findsomethingindatabase
實作的接收者。然後,您可以將該類型傳遞給 callimplementation
,因為它現在將實作 objectapi
介面。後者的一個範例(這將是我的可擴展性首選選項):
type database struct {} func (d *database) FindSomethingInDatabase(ctx context.Context, name string) (e.Response, error) { // ... } func CallImplementation(request *dto.XRequest, repo i.ObjectAPI) dto.XResponse{ result := repo.FindSomethingInDatabase(request.Ctx, request.Name) // more code } func main() { db := &database{} _ = Callimplementation(getRequest(), db) }
在這種情況下,您可能想要將 db
儲存為 database
的成員,而不是將其作為全域變數(現在看來就是這種情況)。
以上是用於測試的 golang 接口的詳細內容。更多資訊請關注PHP中文網其他相關文章!