Home / Function/ TestLoadHTMLFSUsingTLS() — gin Function Reference

TestLoadHTMLFSUsingTLS() — gin Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  7d2e6b3a_18cd_82fe_320b_2f4ca2c0211c["TestLoadHTMLFSUsingTLS()"]
  936be97e_cadf_7cb7_50da_f99734bf8011["setupHTMLFiles()"]
  7d2e6b3a_18cd_82fe_320b_2f4ca2c0211c -->|calls| 936be97e_cadf_7cb7_50da_f99734bf8011
  style 7d2e6b3a_18cd_82fe_320b_2f4ca2c0211c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

gin_test.go lines 390–415

func TestLoadHTMLFSUsingTLS(t *testing.T) {
	ts := setupHTMLFiles(
		t,
		TestMode,
		true,
		func(router *Engine) {
			router.LoadHTMLFS(tmplFS, "hello.tmpl", "raw.tmpl")
		},
	)
	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 TestLoadHTMLFSUsingTLS() do?
TestLoadHTMLFSUsingTLS() is a function in the gin codebase.
What does TestLoadHTMLFSUsingTLS() call?
TestLoadHTMLFSUsingTLS() 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