Home / Function/ TestLoadHTMLGlobUsingTLS() — gin Function Reference

TestLoadHTMLGlobUsingTLS() — gin Function Reference

Architecture documentation for the TestLoadHTMLGlobUsingTLS() function in gin_test.go from the gin codebase.

Entity Profile

Dependency Diagram

graph TD
  638ab488_1278_bd87_6042_e57a327793f7["TestLoadHTMLGlobUsingTLS()"]
  936be97e_cadf_7cb7_50da_f99734bf8011["setupHTMLFiles()"]
  638ab488_1278_bd87_6042_e57a327793f7 -->|calls| 936be97e_cadf_7cb7_50da_f99734bf8011
  style 638ab488_1278_bd87_6042_e57a327793f7 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

Frequently Asked Questions

What does TestLoadHTMLGlobUsingTLS() do?
TestLoadHTMLGlobUsingTLS() is a function in the gin codebase.
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