登录
首页 >  Golang >  Go问答

测试用途的 Golang 接口

来源:stackoverflow

时间:2024-02-20 22:03:23 490浏览 收藏

来到golang学习网的大家,相信都是编程学习爱好者,希望在这里学习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 接口》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>