TestContextRenderAttachment() — gin Function Reference
Architecture documentation for the TestContextRenderAttachment() function in context_test.go from the gin codebase.
Entity Profile
Dependency Diagram
graph TD a111edde_40d3_0297_c4e7_ea1f0e0051c4["TestContextRenderAttachment()"] ebe0ae48_a62b_a38f_5bac_5bbbd96fc508["context_test.go"] a111edde_40d3_0297_c4e7_ea1f0e0051c4 -->|defined in| ebe0ae48_a62b_a38f_5bac_5bbbd96fc508 style a111edde_40d3_0297_c4e7_ea1f0e0051c4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
context_test.go lines 1445–1456
func TestContextRenderAttachment(t *testing.T) {
w := httptest.NewRecorder()
c, _ := CreateTestContext(w)
newFilename := "new_filename.go"
c.Request, _ = http.NewRequest(http.MethodGet, "/", nil)
c.FileAttachment("./gin.go", newFilename)
assert.Equal(t, 200, w.Code)
assert.Contains(t, w.Body.String(), "func New(opts ...OptionFunc) *Engine {")
assert.Equal(t, fmt.Sprintf("attachment; filename=\"%s\"", newFilename), w.Header().Get("Content-Disposition"))
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does TestContextRenderAttachment() do?
TestContextRenderAttachment() is a function in the gin codebase, defined in context_test.go.
Where is TestContextRenderAttachment() defined?
TestContextRenderAttachment() is defined in context_test.go at line 1445.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free