要测试涉及 Gin 中 HTTP 请求的操作,请初始化 *http .Request 并将其设置为 Gin 上下文。专门用于测试 c.BindQuery,初始化请求的 URL 和 URL.RawQuery:
import ( "net/http/httptest" "github.com/gin-gonic/gin" ) func mockGin() (*gin.Context, *httptest.ResponseRecorder) { w := httptest.NewRecorder() c, _ := gin.CreateTestContext(w) // Test request req := &http.Request{ URL: &url.URL{}, Header: make(http.Header), } // Test query testQuery := weldprogs.QueryParam{/* init fields */} q := req.URL.Query() for _, s := range testQuery.Basematgroup_id { q.Add("basematgroup_id", s) } // Set URL.RawQuery req.URL.RawQuery = q.Encode() // Set request to Gin context c.Request = req return c, w }
请参阅此资源以获取有关模拟 JSON 绑定的指南。
服务如services.WeldprogService.GetMaterialByFilter(&queryParam) 无法按原样进行测试。要使它们可测试:
接口和上下文值方法:
type services interface { GetMaterialByFilter(*weldprogs.QueryParam) (*weldprogs.MaterialByFilter, error) } func mockWeldprogService(service services) { return func(c *gin.Context) { c.Set("svc_context_key", service) } } func TestGetMaterialByFilter(t *testing.T) { w := httptest.NewRecorder() c, _ := gin.CreateTestContext(w) c.Use(mockWeldprogService(&mockSvc{})) GetMaterialByFilter(c) // ... }
以上是如何使用模拟有效地对 Gin 处理程序功能进行单元测试?的详细内容。更多信息请关注PHP中文网其他相关文章!