BindJSON の Gin.Context をモックする方法
Gin フレームワークを使用し、BindJSON の gin.Context をモックする必要がある Go コードをテストする場合機能性を確保することが不可欠ですそれ:
w := httptest.NewRecorder() c, _ := gin.CreateTestContext(w) c.Request = &http.Request{ Header: make(http.Header), }
func MockJsonPost(c *gin.Context, content interface{}) { c.Request.Method = "POST" c.Request.Header.Set("Content-Type", "application/json") jsonbytes, err := json.Marshal(content) if err != nil { panic(err) } c.Request.Body = io.NopCloser(bytes.NewBuffer(jsonbytes)) }
content 引数には、マーシャリング可能なデータ構造またはマップを指定できます。
例:
func TestPostImageToDBDao(t *testing.T) { w := httptest.NewRecorder() ctx, _ := gin.CreateTestContext(w) ctx.Request = &http.Request{ Header: make(http.Header), } MockJsonPost(ctx, map[string]interface{}{ "articleUUID": "bea1b24d-0627-4ea0-aa2b-8af4c6c2a41c", "imageNames": "b8119536-fad5-4ffa-ab71-2f96cca19697", }) PostImageToDBDao(ctx) assert.EqualValues(t, http.StatusOK, w.Code) }
関連リソース:
以上がGo 単体テストで gin.Context の BindJSON を効果的にモックする方法は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。