单元测试辅助工具

在单元测试中,我们希望每个测试用例都是独立的。这时候就需要Stub, Mock, Fakes等工具来帮助我们进行用例和依赖之间的隔离。

同时通过对错误情况的 Mock 也可以帮我们检查代码多个分支结果,从而提高覆盖率。

以下工具已加入到 Kratos 框架 go modules,可以借助 testgen 代码生成器自动生成部分工具代码,请放心食用。更多使用方法还欢迎大家多多探索。

GoConvey

GoConvey是一套针对golang语言的BDD类型的测试框架。提供了良好的管理和执行测试用例的方式,包含丰富的断言函数,而且同时有测试执行和报告Web界面的支持。

使用特性

为了更好的使用 GoConvey 来编写和组织测试用例,需要注意以下几点特性:

  1. Convey方法和So方法的使用
    • Convey方法声明了一种规格的组织,每个组织内包含一句描述和一个方法。在方法内也可以嵌套其他Convey语句和So语句。 ```Go // 顶层Convey方法,需引入testing.T对象 Convey(description string, t testing.T, action func())

// 其他嵌套Convey方法,无需引入*testing.T对象 Convey(description string, action func())

  1. 注:同一Scope下的Convey语句描述不可以相同!
  2. > - So方法是断言方法,用于对执行结果进行比对。GoConvey官方提供了大量断言,同时也可以自定义自己的断言([戳这里了解官方文档](https://github.com/smartystreets/goconvey/wiki/Assertions))
  3. ```Go
  4. // A=B断言
  5. So(A, ShouldEqual, B)
  6. // A不为空断言
  7. So(A, ShouldNotBeNil)
  1. 执行次序

    假设有以下Convey伪代码,执行次序将为A1B2A1C3。将Convey方法类比树的结点的话,整体执行类似树的遍历操作。
    所以Convey A部分可在组织测试用例时,充当“Setup”的方法。用于初始化等一些操作。

    1. Convey伪代码
    2. Convey A
    3. So 1
    4. Convey B
    5. So 2
    6. Convey C
    7. So 3
  2. Reset方法

    GoConvey提供了Reset方法来进行“Teardown”的操作。用于执行完测试用例后一些状态的回收,连接关闭等操作。Reset方法不可与顶层Convey语句在同层。

    1. // Reset
    2. Reset func(action func())

    假设有以下带有Reset方法的伪代码,同层Convey语句执行完后均会执行同层的Reset方法。执行次序为A1B2C3EA1D4E。

    1. Convey A
    2. So 1
    3. Convey B
    4. So 2
    5. Convey C
    6. So 3
    7. Convey D
    8. So 4
    9. Reset E
  3. 自然语言逻辑到测试用例的转换

    在了解了Convey方法的特性和执行次序后,我们可以通过这些性质把对一个方法的测试用例按照日常逻辑组织起来。尤其建议使用Given-When-Then的形式来组织

    • 比较直观的组织示例 ```Go Convey(“Top-level”, t, func() {

    // Setup 工作,在本层内每个Convey方法执行前都会执行的部分: db.Open() db.Initialize()

    Convey(“Test a query”, func() {

    1. db.Query()
    2. // TODO: assertions here

    })

    Convey(“Test inserts”, func() {

    1. db.Insert()
    2. // TODO: assertions here

    })

    Reset(func() {

    1. // Teardown工作,在本层内每个Convey方法执行完后都会执行的部分:
    2. db.Close()

    })

})

  1. > - 定义单独的包含SetupTeardown的帮助方法
  2. ```Go
  3. package main
  4. import (
  5. "database/sql"
  6. "testing"
  7. _ "github.com/lib/pq"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. // 帮助方法,将原先所需的处理方法以参数(f)形式传入
  11. func WithTransaction(db *sql.DB, f func(tx *sql.Tx)) func() {
  12. return func() {
  13. // Setup工作
  14. tx, err := db.Begin()
  15. So(err, ShouldBeNil)
  16. Reset(func() {
  17. // Teardown工作
  18. /* Verify that the transaction is alive by executing a command */
  19. _, err := tx.Exec("SELECT 1")
  20. So(err, ShouldBeNil)
  21. tx.Rollback()
  22. })
  23. // 调用传入的闭包做实际的事务处理
  24. f(tx)
  25. }
  26. }
  27. func TestUsers(t *testing.T) {
  28. db, err := sql.Open("postgres", "postgres://localhost?sslmode=disable")
  29. if err != nil {
  30. panic(err)
  31. }
  32. Convey("Given a user in the database", t, WithTransaction(db, func(tx *sql.Tx) {
  33. _, err := tx.Exec(`INSERT INTO "Users" ("id", "name") VALUES (1, 'Test User')`)
  34. So(err, ShouldBeNil)
  35. Convey("Attempting to retrieve the user should return the user", func() {
  36. var name string
  37. data := tx.QueryRow(`SELECT "name" FROM "Users" WHERE "id" = 1`)
  38. err = data.Scan(&name)
  39. So(err, ShouldBeNil)
  40. So(name, ShouldEqual, "Test User")
  41. })
  42. }))
  43. }

使用建议

强烈建议使用 testgen 进行测试用例的生成,生成后每个方法将包含一个符合以下规范的正向用例。

用例规范:

  1. 每个方法至少包含一个测试方法(命名为Test[PackageName][FunctionName])
  2. 每个测试方法包含一个顶层Convey语句,仅在此引入admin *testing.T类型的对象,在该层进行变量声明。
  3. 每个测试方法不同的用例用Convey方法组织
  4. 每个测试用例的一组断言用一个Convey方法组织
  5. 使用convey.C保持上下文一致

MonkeyPatching

特性和使用条件

  1. Patch()对任何无接收者的方法均有效
  2. PatchInstanceMethod()对有接收者的包内/私有方法无法工作(因使用到了反射机制)。可以采用给私有方法的下一级打补丁,或改为无接收者的方法,或将方法转为公有

适用场景(建议)

项目代码中上层对下层包依赖时,下层包方法Mock(例如service层对dao层方法依赖时) 基础库(MySql, Memcache, Redis)错误Mock 其他标准库,基础库以及第三方包方法Mock

使用示例

  1. 上层包对下层包依赖示例 Service层对Dao层依赖:
  1. // 原方法
  2. func (s *Service) realnameAlipayApply(c context.Context, mid int64) (info *model.RealnameAlipayApply, err error) {
  3. if info, err = s.mbDao.RealnameAlipayApply(c, mid); err != nil {
  4. return
  5. }
  6. ...
  7. return
  8. }
  9. // 测试方法
  10. func TestServicerealnameAlipayApply(t *testing.T) {
  11. convey.Convey("realnameAlipayApply", t, func(ctx convey.C) {
  12. ...
  13. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  14. guard := monkey.PatchInstanceMethod(reflect.TypeOf(s.mbDao), "RealnameAlipayApply", func(_ *dao.Dao, _ context.Context, _ int64) (*model.RealnameAlipayApply, error) {
  15. return nil, nil
  16. })
  17. defer guard.Unpatch()
  18. info, err := s.realnameAlipayApply(c, mid)
  19. ctx.Convey("Then err should be nil,info should not be nil", func(ctx convey.C) {
  20. ctx.So(info, convey.ShouldNotBeNil)
  21. ctx.So(err, convey.ShouldBeNil)
  22. })
  23. })
  24. })
  25. }
  1. 基础库错误Mock示例
  1. // 原方法(部分)
  2. func (d *Dao) BaseInfoCache(c context.Context, mid int64) (info *model.BaseInfo, err error) {
  3. ...
  4. conn := d.mc.Get(c)
  5. defer conn.Close()
  6. item, err := conn.Get(key)
  7. if err != nil {
  8. log.Error("conn.Get(%s) error(%v)", key, err)
  9. return
  10. }
  11. ...
  12. return
  13. }
  14. // 测试方法(错误Mock部分)
  15. func TestDaoBaseInfoCache(t *testing.T) {
  16. convey.Convey("BaseInfoCache", t, func(ctx convey.C) {
  17. ...
  18. Convey("When conn.Get gets error", func(ctx convey.C) {
  19. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  20. return memcache.MockWith(memcache.ErrItemObject)
  21. })
  22. defer guard.Unpatch()
  23. _, err := d.BaseInfoCache(c, mid)
  24. ctx.Convey("Error should be equal to memcache.ErrItemObject", func(ctx convey.C) {
  25. ctx.So(err, convey.ShouldEqual, memcache.ErrItemObject)
  26. })
  27. })
  28. })
  29. }

注意事项

  • Monkey非线程安全
  • Monkey无法针对Inline方法打补丁,在测试时可以使用go test -gcflags=-l来关闭inline编译的模式(一些简单的go inline介绍戳这里)
  • Monkey在一些面向安全不允许内存页写和执行同时进行的操作系统上无法工作
  • 更多详情请戳:https://github.com/bouk/monkey

Gock——HTTP请求Mock工具

特性和使用条件

工作原理

  1. 截获任意通过 http.DefaultTransport或者自定义http.Transport对外的http.Client请求
  2. 以“先进先出”原则将对外需求和预定义好的HTTP Mock池中进行匹配
  3. 如果至少一个Mock被匹配,将按照2中顺序原则组成Mock的HTTP返回
  4. 如果没有Mock被匹配,若实际的网络可用,将进行实际的HTTP请求。否则将返回错误

特性

  • 内建帮助工具实现JSON/XML简单Mock
  • 支持持久的、易失的和TTL限制的Mock
  • 支持HTTP Mock请求完整的正则表达式匹配
  • 可通过HTTP方法,URL参数,请求头和请求体匹配
  • 可扩展和可插件化的HTTP匹配规则
  • 具备在Mock和实际网络模式之间切换的能力
  • 具备过滤和映射HTTP请求到正确的Mock匹配的能力
  • 支持映射和过滤可以更简单的掌控Mock
  • 通过使用http.RoundTripper接口广泛兼容HTTP拦截器
  • 可以在任意net/http兼容的Client上工作
  • 网络延迟模拟(beta版本)
  • 无其他依赖

适用场景(建议)

任何需要进行HTTP请求的操作,建议全部用Gock进行Mock,以减少对环境的依赖。

使用示例:

  1. net/http 标准库 HTTP 请求Mock
  1. import gock "gopkg.in/h2non/gock.v1"
  2. // 原方法
  3. func (d *Dao) Upload(c context.Context, fileName, fileType string, expire int64, body io.Reader) (location string, err error) {
  4. ...
  5. resp, err = d.bfsClient.Do(req) //d.bfsClient类型为*http.client
  6. ...
  7. if resp.StatusCode != http.StatusOK {
  8. ...
  9. }
  10. header = resp.Header
  11. code = header.Get("Code")
  12. if code != strconv.Itoa(http.StatusOK) {
  13. ...
  14. }
  15. ...
  16. return
  17. }
  18. // 测试方法
  19. func TestDaoUpload(t *testing.T) {
  20. convey.Convey("Upload", t, func(ctx convey.C) {
  21. ...
  22. // d.client 类型为 *http.client 根据Gock包描述需要设置http.Client的Transport情况。也可在TestMain中全局设置,则所有的HTTP请求均通过Gock来解决
  23. d.client.Transport = gock.DefaultTransport // !注意:进行httpMock前需要对http 请求进行拦截,否则Mock失败
  24. // HTTP请求状态和Header都正确的Mock
  25. ctx.Convey("When everything is correct", func(ctx convey.C) {
  26. httpMock("PUT", url).Reply(200).SetHeaders(map[string]string{
  27. "Code": "200",
  28. "Location": "SomePlace",
  29. })
  30. location, err := d.Upload(c, fileName, fileType, expire, body)
  31. ctx.Convey("Then err should be nil.location should not be nil.", func(ctx convey.C) {
  32. ctx.So(err, convey.ShouldBeNil)
  33. ctx.So(location, convey.ShouldNotBeNil)
  34. })
  35. })
  36. ...
  37. // HTTP请求状态错误Mock
  38. ctx.Convey("When http request status != 200", func(ctx convey.C) {
  39. d.client.Transport = gock.DefaultTransport
  40. httpMock("PUT", url).Reply(404)
  41. _, err := d.Upload(c, fileName, fileType, expire, body)
  42. ctx.Convey("Then err should not be nil", func(ctx convey.C) {
  43. ctx.So(err, convey.ShouldNotBeNil)
  44. })
  45. })
  46. // HTTP请求Header中Code值错误Mock
  47. ctx.Convey("When http request Code in header != 200", func(ctx convey.C) {
  48. d.client.Transport = gock.DefaultTransport
  49. httpMock("PUT", url).Reply(404).SetHeaders(map[string]string{
  50. "Code": "404",
  51. "Location": "SomePlace",
  52. })
  53. _, err := d.Upload(c, fileName, fileType, expire, body)
  54. ctx.Convey("Then err should not be nil", func(ctx convey.C) {
  55. ctx.So(err, convey.ShouldNotBeNil)
  56. })
  57. })
  58. // 由于同包内有其他进行实际HTTP请求的测试。所以再每次用例结束后,进行现场恢复(关闭Gock设置默认的Transport)
  59. ctx.Reset(func() {
  60. gock.OffAll()
  61. d.client.Transport = http.DefaultClient.Transport
  62. })
  63. })
  64. }
  65. func httpMock(method, url string) *gock.Request {
  66. r := gock.New(url)
  67. r.Method = strings.ToUpper(method)
  68. return r
  69. }
  1. blademaster库HTTP请求Mock
  1. // 原方法
  2. func (d *Dao) SendWechatToGroup(c context.Context, chatid, msg string) (err error) {
  3. ...
  4. if err = d.client.Do(c, req, &res); err != nil {
  5. ...
  6. }
  7. if res.Code != 0 {
  8. ...
  9. }
  10. return
  11. }
  12. // 测试方法
  13. func TestDaoSendWechatToGroup(t *testing.T) {
  14. convey.Convey("SendWechatToGroup", t, func(ctx convey.C) {
  15. ...
  16. // 根据Gock包描述需要设置bm.Client的Transport情况。也可在TestMain中全局设置,则所有的HTTP请求均通过Gock来解决。
  17. // d.client 类型为 *bm.client
  18. d.client.SetTransport(gock.DefaultTransport) // !注意:进行httpMock前需要对http 请求进行拦截,否则Mock失败
  19. // HTTP请求状态和返回内容正常Mock
  20. ctx.Convey("When everything gose postive", func(ctx convey.C) {
  21. httpMock("POST", _sagaWechatURL+"/appchat/send").Reply(200).JSON(`{"code":0,"message":"0"}`)
  22. err := d.SendWechatToGroup(c, d.c.WeChat.ChatID, msg)
  23. ...
  24. })
  25. // HTTP请求状态错误Mock
  26. ctx.Convey("When http status != 200", func(ctx convey.C) {
  27. httpMock("POST", _sagaWechatURL+"/appchat/send").Reply(404)
  28. err := d.SendWechatToGroup(c, d.c.WeChat.ChatID, msg)
  29. ...
  30. })
  31. // HTTP请求返回值错误Mock
  32. ctx.Convey("When http response code != 0", func(ctx convey.C) {
  33. httpMock("POST", _sagaWechatURL+"/appchat/send").Reply(200).JSON(`{"code":-401,"message":"0"}`)
  34. err := d.SendWechatToGroup(c, d.c.WeChat.ChatID, msg)
  35. ...
  36. })
  37. // 由于同包内有其他进行实际HTTP请求的测试。所以再每次用例结束后,进行现场恢复(关闭Gock设置默认的Transport)。
  38. ctx.Reset(func() {
  39. gock.OffAll()
  40. d.client.SetTransport(http.DefaultClient.Transport)
  41. })
  42. })
  43. }
  44. func httpMock(method, url string) *gock.Request {
  45. r := gock.New(url)
  46. r.Method = strings.ToUpper(method)
  47. return r
  48. }

注意事项

  • Gock不是完全线程安全的
  • 如果执行并发代码,在配置Gock和解释定制的HTTP clients时,要确保Mock已经事先声明好了来避免不需要的竞争机制
  • 更多详情请戳:https://github.com/h2non/gock

GoMock

使用条件

只能对公有接口(interface)定义的代码进行Mock,并仅能在测试过程中进行

使用方法

  • 官方安装使用步骤 ```shell

    获取GoMock包和自动生成Mock代码工具mockgen

    go get github.com/golang/mock/gomock go install github.com/golang/mock/mockgen

生成mock文件

方法1:生成对应文件下所有interface

mockgen -source=path/to/your/interface/file.go

方法2:生成对应包内指定多个interface,并用逗号隔开

mockgen database/sql/driver Conn,Driver

示例:

mockgen -destination=$GOPATH/kratos/app/xxx/dao/dao_mock.go -package=dao kratos/app/xxx/dao DaoInterface

  1. - testgen 使用步骤(GoMock生成功能已集成在Creater工具中,无需额外安装步骤即可直接使用)
  2. ```shell
  3. ## 直接给出含有接口类型定义的包路径,生成Mock文件将放在包目录下一级mock/pkgName_mock.go中
  4. ./creater --m mock absolute/path/to/your/pkg
  • 测试代码内使用方法
  1. // 测试用例内直接使用
  2. // 需引入的包
  3. import (
  4. ...
  5. "github.com/otokaze/mock/gomock"
  6. ...
  7. )
  8. func TestPkgFoo(t *testing.T) {
  9. convey.Convey("Foo", t, func(ctx convey.C) {
  10. ...
  11. ctx.Convey("Mock Interface to test", func(ctx convey.C) {
  12. // 1. 使用gomock.NewController新增一个控制器
  13. mockCtrl := gomock.NewController(t)
  14. // 2. 测试完成后关闭控制器
  15. defer mockCtrl.Finish()
  16. // 3. 以控制器为参数生成Mock对象
  17. yourMock := mock.NewMockYourClient(mockCtrl)
  18. // 4. 使用Mock对象替代原代码中的对象
  19. yourClient = yourMock
  20. // 5. 使用EXPECT().方法名(方法参数).Return(返回值)来构造所需输入/输出
  21. yourMock.EXPECT().YourMethod(gomock.Any()).Return(nil)
  22. res:= Foo(params)
  23. ...
  24. })
  25. ...
  26. })
  27. }
  28. // 可以利用Convey执行顺序方式适当调整以简化代码
  29. func TestPkgFoo(t *testing.T) {
  30. convey.Convey("Foo", t, func(ctx convey.C) {
  31. ...
  32. mockCtrl := gomock.NewController(t)
  33. yourMock := mock.NewMockYourClient(mockCtrl)
  34. ctx.Convey("Mock Interface to test1", func(ctx convey.C) {
  35. yourMock.EXPECT().YourMethod(gomock.Any()).Return(nil)
  36. ...
  37. })
  38. ctx.Convey("Mock Interface to test2", func(ctx convey.C) {
  39. yourMock.EXPECT().YourMethod(args).Return(res)
  40. ...
  41. })
  42. ...
  43. ctx.Reset(func(){
  44. mockCtrl.Finish()
  45. })
  46. })
  47. }

适用场景(建议)

  1. gRPC中的Client接口
  2. 也可改造现有代码构造Interface后使用(具体可配合Creater的功能进行Interface和Mock的生成)
  3. 任何对接口中定义方法依赖的场景

注意事项

  • 如有Mock文件在包内,在执行单元测试时Mock代码会被识别进行测试。请注意Mock文件的放置。
  • 更多详情请戳:https://github.com/golang/mock