文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Go Fiber 框架之测试应用

2024-12-02 19:42

关注

大家好,我是 polarisxu。

实际项目中,大家经常不会对 Web API 写单元测试。Go 标准库不仅有 testing 包支持普通单元测试,还有 net/http/httptest 包支持 HTTP 的测试。

本文虽然是测试 Fiber 应用程序,但对其他的框架也适用。

01 如何测试

Web API 的单元测试如何进行?

本节介绍的测试方法主要是验证请求返回的 HTTP 状态码是否符合预期。

如果返回的状态码是 200 OK,那么表示这个测试用例成功(Pass),如果返回的状态码是 404 Not Found,那么表示这个测试用例失败(Fail)。所以,要求请求返回正确的状态码。

02 VSCode 生成测试

VSCode 安装了 Go Team 的 Go 插件后,可以一键生成单元测试。

在某个函数上右键,出现的菜单中会有 Generate Unit Tests For Function:

点击它会自动创建 main_test.go 文件,并生成类似下面的代码:

  1. package main 
  2.  
  3. import "testing" 
  4.  
  5. func Test_main(t *testing.T) { 
  6.  tests := []struct { 
  7.   name string 
  8.  }{ 
  9.   // TODO: Add test cases. 
  10.  } 
  11.  for _, tt := range tests { 
  12.   t.Run(tt.name, func(t *testing.T) { 
  13.    main() 
  14.   }) 
  15.  } 

03 动手写单元测试

动手之前,需要先介绍下 Fiber 中专门针对测试提供的方法:

  1. // Test is used for internal debugging by passing a *http.Request. 
  2. // Timeout is optional and defaults to 1s, -1 will disable it completely. 
  3. func (app *App) Test(req *http.Request, msTimeout ...int) (resp *http.Response, err error) 

该方法接收一个 *http.Request,返回 *http.Response,通过这个 Response 可以获得 HTTP StatusCode。

待测试的程序如下:

  1. // main.go 
  2. package main 
  3.  
  4. import ( 
  5.  "github.com/gofiber/fiber/v2" 
  6.  
  7. func setupRoutes(app *fiber.App) { 
  8.  app.Get("/hello", func(ctx *fiber.Ctx) error { 
  9.   return ctx.SendString("Hello World!"
  10.  }) 
  11.  
  12. func main() { 
  13.  app := fiber.New() 
  14.  setupRoutes(app) 
  15.  app.Listen(":3000"

测试程序如下:

  1. package main 
  2.  
  3. import ( 
  4.  "net/http/httptest" 
  5.  "testing" 
  6.  
  7.  "github.com/gofiber/fiber/v2" 
  8.  "github.com/stretchr/testify/assert" 
  9.  
  10. func TestHelloRoute(t *testing.T) { 
  11.  tests := []struct { 
  12.   description  string 
  13.   route        string // route path to test 
  14.   expectedCode int    // expected HTTP status code 
  15.  }{ 
  16.   { 
  17.    description:  "get HTTP status 200"
  18.    route:        "/hello"
  19.    expectedCode: 200, 
  20.   }, 
  21.   { 
  22.    description:  "get HTTP status 404, when route is not exists"
  23.    route:        "/notfound"
  24.    expectedCode: 404, 
  25.   }, 
  26.  } 
  27.  
  28.  app := fiber.New() 
  29.  
  30.  setupRoutes(app) 
  31.  
  32.  for _, test := range tests { 
  33.   // 利用 httptest 包生成 request 
  34.   req := httptest.NewRequest("GET", test.route, nil) 
  35.   resp, _ := app.Test(req, 1) 
  36.   assert.Equalf(t, test.expectedCode, resp.StatusCode, test.description) 
  37.  } 

我们还用了 github.com/stretchr/testify 库,这是一个辅助测试的库,assert 是它的子包,用于进行断言。

然后运行如下命令测试:

  1. $ go test -v . 
  2. === RUN   TestHelloRoute 
  3. --- PASS: TestHelloRoute (0.00s) 
  4. PASS 
  5. ok   github.com/polaris1119/fiber-example 

04 总结

 

本文从 HTTP 状态码的维度测试 Web API,保证 API 大的逻辑正确,但不包括业务逻辑相关的测试。

本文转载自微信公众号「polarisxu」,可以通过以下二维码关注。转载本文请联系polarisxu公众号。

 

来源:polarisxu 内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯