要測試涉及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中文網其他相關文章!