Home / Function/ TestContextShouldBindPlain() — gin Function Reference

TestContextShouldBindPlain() — gin Function Reference

Architecture documentation for the TestContextShouldBindPlain() function in context_test.go from the gin codebase.

Entity Profile

Dependency Diagram

graph TD
  3eee6132_d71a_3772_fe85_38ef407427c4["TestContextShouldBindPlain()"]
  ebe0ae48_a62b_a38f_5bac_5bbbd96fc508["context_test.go"]
  3eee6132_d71a_3772_fe85_38ef407427c4 -->|defined in| ebe0ae48_a62b_a38f_5bac_5bbbd96fc508
  style 3eee6132_d71a_3772_fe85_38ef407427c4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

context_test.go lines 2361–2383

func TestContextShouldBindPlain(t *testing.T) {
	// string
	w := httptest.NewRecorder()
	c, _ := CreateTestContext(w)
	c.Request, _ = http.NewRequest(http.MethodPost, "/", bytes.NewBufferString(`test string`))
	c.Request.Header.Add("Content-Type", MIMEPlain)

	var s string

	require.NoError(t, c.ShouldBindPlain(&s))
	assert.Equal(t, "test string", s)
	assert.Equal(t, 0, w.Body.Len())
	// []byte

	c.Request, _ = http.NewRequest(http.MethodPost, "/", bytes.NewBufferString(`test []byte`))
	c.Request.Header.Add("Content-Type", MIMEPlain)

	var bs []byte

	require.NoError(t, c.ShouldBindPlain(&bs))
	assert.Equal(t, []byte("test []byte"), bs)
	assert.Equal(t, 0, w.Body.Len())
}

Domain

Subdomains

Defined In

Frequently Asked Questions

What does TestContextShouldBindPlain() do?
TestContextShouldBindPlain() is a function in the gin codebase, defined in context_test.go.
Where is TestContextShouldBindPlain() defined?
TestContextShouldBindPlain() is defined in context_test.go at line 2361.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free