在 Golang 中制作模拟 gin.Context
来源:Golang技术栈
时间:2023-04-21 13:05:32 276浏览 收藏
大家好,我们又见面了啊~本文《在 Golang 中制作模拟 gin.Context》的内容中将会涉及到golang等等。如果你正在学习Golang相关知识,欢迎关注我,以后会给大家带来更多Golang相关文章,希望我们能一起进步!下面就开始本文的正式内容~
问题内容
我正在使用 Gin 框架编写一个 REST API。但是我在测试我的控制器和研究 TDD 和 Mock 时遇到了麻烦。我试图将 TDD 和 Mock 应用于我的代码,但我做不到。
我创建了一个非常精简的测试环境并尝试创建一个控制器测试。如何为 Gin.Context 创建 Mock?
这是我的示例代码:
package main import ( "strconv" "github.com/gin-gonic/gin" ) // MODELS type Users []User type User struct { Name string `json"name"` } func main() { r := gin.Default() r.GET("/users", GetUsers) r.GET("/users/:id", GetUser) r.Run(":8080") } // ROUTES func GetUsers(c *gin.Context) { repo := UserRepository{} ctrl := UserController{} ctrl.GetAll(c, repo) } func GetUser(c *gin.Context) { repo := UserRepository{} ctrl := UserController{} ctrl.Get(c, repo) } // CONTROLLER type UserController struct{} func (ctrl UserController) GetAll(c *gin.Context, repository UserRepositoryIterface) { c.JSON(200, repository.GetAll()) } func (ctrl UserController) Get(c *gin.Context, repository UserRepositoryIterface) { id := c.Param("id") idConv, _ := strconv.Atoi(id) c.JSON(200, repository.Get(idConv)) } // REPOSITORY type UserRepository struct{} type UserRepositoryIterface interface { GetAll() Users Get(id int) User } func (r UserRepository) GetAll() Users { users := Users{ {Name : "Wilson"}, {Name : "Panda"}, } return users } func (r UserRepository) Get(id int) User { users := Users{ {Name : "Wilson"}, {Name : "Panda"}, } return users[id-1] }
我的测试示例:
package main import( "testing" _ "github.com/gin-gonic/gin" ) type UserRepositoryMock struct{} func (r UserRepositoryMock) GetAll() Users { users := Users{ {Name : "Wilson"}, {Name : "Panda"}, } return users } func (r UserRepositoryMock) Get(id int) User { users := Users{ {Name : "Wilson"}, {Name : "Panda"}, } return users[id-1] } // TESTING REPOSITORY FUNCTIONS func TestRepoGetAll(t *testing.T) { userRepo := UserRepository{} amountUsers := len(userRepo.GetAll()) if amountUsers != 2 { t.Errorf("Esperado %d, recebido %d", 2, amountUsers) } } func TestRepoGet(t *testing.T) { expectedUser := struct{ Name string }{ "Wilson", } userRepo := UserRepository{} user := userRepo.Get(1) if user.Name != expectedUser.Name { t.Errorf("Esperado %s, recebido %s", expectedUser.Name, user.Name) } } /* HOW TO TEST CONTROLLER? func TestControllerGetAll(t *testing.T) { gin.SetMode(gin.TestMode) c := &gin.Context{} c.Status(200) repo := UserRepositoryMock{} ctrl := UserController{} ctrl.GetAll(c, repo) } */
正确答案
如果将问题简化为“如何为函数参数创建模拟?” 答案是:使用接口而不是具体类型。
type Context struct
是一个具体的类型文字,而 Gin
没有提供适当的接口。但是你可以自己声明。由于您只使用JSON
来自您的方法,Context
因此您可以声明非常简单的接口:
type JSONer interface { JSON(code int, obj interface{}) }
并使用JSONer
type 代替Context
输入所有期望Context
作为参数的函数:
/* Note, you can't declare argument as a pointer to interface type, but when you call it you can pass pointer to type which implements the interface.*/ func GetUsers(c JSONer) { repo := UserRepository{} ctrl := UserController{} ctrl.GetAll(c, repo) } func GetUser(c JSONer) { repo := UserRepository{} ctrl := UserController{} ctrl.Get(c, repo) } func (ctrl UserController) GetAll(c JSONer, repository UserRepositoryIterface) { c.JSON(200, repository.GetAll()) } func (ctrl UserController) Get(c JSONer, repository UserRepositoryIterface) { id := c.Param("id") idConv, _ := strconv.Atoi(id) c.JSON(200, repository.Get(idConv)) }
现在很容易测试
type ContextMock struct { JSONCalled bool } func (c *ContextMock) JSON(code int, obj interface{}){ c.JSONCalled = true } func TestControllerGetAll(t *testing.T) { gin.SetMode(gin.TestMode) c := &ContextMock{false} c.Status(200) repo := UserRepositoryMock{} ctrl := UserController{} ctrl.GetAll(c, repo) if c.JSONCalled == false { t.Fail() } }
示例尽可能简单。
到这里,我们也就讲完了《在 Golang 中制作模拟 gin.Context》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于golang的知识点!
声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
439 收藏
-
262 收藏
-
193 收藏
-
188 收藏
-
500 收藏
最新阅读
更多>
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习