TestSaveUploadedCreateFailed() — gin Function Reference
Architecture documentation for the TestSaveUploadedCreateFailed() function in context_test.go from the gin codebase.
Entity Profile
Dependency Diagram
graph TD 009971eb_3cd5_7a9f_e74d_c6e217127912["TestSaveUploadedCreateFailed()"] ebe0ae48_a62b_a38f_5bac_5bbbd96fc508["context_test.go"] 009971eb_3cd5_7a9f_e74d_c6e217127912 -->|defined in| ebe0ae48_a62b_a38f_5bac_5bbbd96fc508 style 009971eb_3cd5_7a9f_e74d_c6e217127912 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
context_test.go lines 217–233
func TestSaveUploadedCreateFailed(t *testing.T) {
buf := new(bytes.Buffer)
mw := multipart.NewWriter(buf)
w, err := mw.CreateFormFile("file", "test")
require.NoError(t, err)
_, err = w.Write([]byte("test"))
require.NoError(t, err)
mw.Close()
c, _ := CreateTestContext(httptest.NewRecorder())
c.Request, _ = http.NewRequest(http.MethodPost, "/", buf)
c.Request.Header.Set("Content-Type", mw.FormDataContentType())
f, err := c.FormFile("file")
require.NoError(t, err)
assert.Equal(t, "test", f.Filename)
require.Error(t, c.SaveUploadedFile(f, "/"))
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does TestSaveUploadedCreateFailed() do?
TestSaveUploadedCreateFailed() is a function in the gin codebase, defined in context_test.go.
Where is TestSaveUploadedCreateFailed() defined?
TestSaveUploadedCreateFailed() is defined in context_test.go at line 217.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free