TestLoadHTMLGlobUsingTLS() — gin Function Reference
Architecture documentation for the TestLoadHTMLGlobUsingTLS() function in gin_test.go from the gin codebase.
Entity Profile
Dependency Diagram
graph TD 1d6b8797_b791_6851_bb5d_5af2693a72a3["TestLoadHTMLGlobUsingTLS()"] 5d6e7276_feeb_b8e2_30e8_0ae0827740a5["gin_test.go"] 1d6b8797_b791_6851_bb5d_5af2693a72a3 -->|defined in| 5d6e7276_feeb_b8e2_30e8_0ae0827740a5 41c3ab2e_fa1a_0295_1f40_856802537a58["setupHTMLFiles()"] 1d6b8797_b791_6851_bb5d_5af2693a72a3 -->|calls| 41c3ab2e_fa1a_0295_1f40_856802537a58 style 1d6b8797_b791_6851_bb5d_5af2693a72a3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
gin_test.go lines 163–188
func TestLoadHTMLGlobUsingTLS(t *testing.T) {
ts := setupHTMLFiles(
t,
DebugMode,
true,
func(router *Engine) {
router.LoadHTMLGlob("./testdata/template/*")
},
)
defer ts.Close()
// Use InsecureSkipVerify for avoiding `x509: certificate signed by unknown authority` error
tr := &http.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
},
}
client := &http.Client{Transport: tr}
res, err := client.Get(ts.URL + "/test")
if err != nil {
t.Error(err)
}
resp, _ := io.ReadAll(res.Body)
assert.Equal(t, "<h1>Hello world</h1>", string(resp))
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does TestLoadHTMLGlobUsingTLS() do?
TestLoadHTMLGlobUsingTLS() is a function in the gin codebase, defined in gin_test.go.
Where is TestLoadHTMLGlobUsingTLS() defined?
TestLoadHTMLGlobUsingTLS() is defined in gin_test.go at line 163.
What does TestLoadHTMLGlobUsingTLS() call?
TestLoadHTMLGlobUsingTLS() calls 1 function(s): setupHTMLFiles.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free