今日不肯埋头,明日何以抬头!每日一句努力自己的话哈哈~哈喽,今天我将给大家带来一篇《为什么我们倾向使用 Golang 接口来模拟方法》,主要内容是讲解等等,感兴趣的朋友可以收藏或者有更好的建议在评论提出,我都会认真看的!大家一起进步,一起学习!
问题内容我是 golang 新手,一直在探索但不清楚单元测试中的模拟。谁能解释一下以下具体问题?
问题1:在 golang 中编写单元测试时,为什么我们需要模拟方法的接口,为什么不仅仅需要 struct ?
问题2:为什么我们在struct中注入接口(我们调用外部方法的地方)
带有结构 -
type globaldata struct {}
var (
globalobj = globaldata{}
)
func (g globaldata) getglobaldata(a string) string{
return a
}
有接口定义-
type GlobalInterface interface {
GetGlobalData(a string) string
}
type GlobalData struct {}
var (
GlobalObj = GlobalData{}
)
func (g GlobalData) GetGlobalData(a string) string{
return a
}
谢谢
解决方案
问题1:在golang中编写单元测试时,为什么我们需要有模拟方法的接口,为什么不仅仅是struct?
回答:不是强制性的
问题2:为什么我们在struct中注入接口(我们调用外部方法的地方)
答案:因为,它可以帮助您替换实际的函数调用(作为单元测试的一部分,这可能会触发一些超出范围的操作,例如数据库调用、某些api调用 等)通过注入 mockstruct
(它将实现与实际代码中相同的 interface
)。用简单的话来说多态性。
因此,您创建一个 mockstruct
并为其定义自己的 mockmethods
。作为多态性,您的单元测试选择 mockstruct
而不会抱怨。调用实际的数据库或 http
端点不属于单元测试。
仅供参考,我可以向您指出我的 github 代码库之一,其中我为 a file 编写了 small test case。如您所见,我嘲笑了:
GuestCartHandler
interface,这让我无法拨打 actual implementation- 使用
“github.com/data-dog/go-sqlmock”
包模拟sql
connection。这帮助我避免建立实际的db client
(因此,单元测试时不依赖数据库)
如果您从概念上理解了这个想法,或者您是否需要更多说明,请告诉我。
如果您对包 user 中的类型有方法,例如。 包用户
type user struct {
name string
}
func (u *user) getuserprofile() userprofile{}
现在导入目录包:
package catalog
import user
func getusercatalog(user user.user) []catalog {
user.getuserprofile()
}
现在测试 getusercatalog 方法有两种方法:
1. var getuserprofilefunc = user.getuserprofile
使用这种方法模拟可以在测试运行时轻松通过,例如:
getuserprofile = func() userprofile {
return fakeuserprofile
}
这是最简单的测试方法。
现在还有另一种使用接口的方法,在包中用户添加一个接口,例如
type userinterface interface {
getuserprofile() userprofile
}
如果用户包是一个您无法控制的库,则创建您自己的界面,输入并使用它。
在这种情况下,目录包中的测试将变得像:
因为现在方法将从 userinterface 类型而不是 usertype 调用,因此在测试时:
userinterface = fakeuserstruct
并按照以下步骤操作
//1. define type of func to return
type typegetuserprofile func() userprofile
//2. create a var to return
var mockedgetuserprofile typegetuserprofile
//3. create a type
type fakeuser struct{}
//4. implement method interface
func (user *fakeuserstruct) getuserprofile() userprofile{
return mockedgetuserprofile
}
现在运行测试时:
mockerGetUserProfile = func() UserProfile {
return fakeUserProfile
}
有一个模拟库可以帮助创建用于模拟的样板代码。检查这个https://github.com/stretchr/testify
还有很多其他的模拟库,但我用过这个,这真的很酷。
我希望这会有所帮助。
如果没有,请告诉我,我会提供一些示例代码并将其推送到 github。
另请查看https://levelup.gitconnected.com/utilizing-the-power-of-interfaces-when-mocking-and-testing-external-apis-in-golang-1178b0db5a32
今天带大家了解了的相关知识,希望对你有所帮助;关于Golang的技术知识我们会一点点深入介绍,欢迎大家关注编程网公众号,一起学习编程~