BindJSON에 대해 Gin.Context를 모의하는 방법
Gin 프레임워크를 사용하고 BindJSON에 대해 gin.Context를 모의해야 하는 Go 코드를 테스트하는 경우 기능을 보장하는 것이 중요합니다. that:
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)) }
콘텐츠 인수는 마샬링 가능한 데이터 구조 또는 맵일 수 있습니다.
예:
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!