mirror of https://github.com/gin-gonic/gin.git
Merge branch 'bind_test' of https://github.com/honteng/gin into honteng-bind_test
This commit is contained in:
commit
a6ce7dd84a
|
@ -139,6 +139,28 @@ func TestValidationDisabled(t *testing.T) {
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestExistsSucceeds(t *testing.T) {
|
||||||
|
type HogeStruct struct {
|
||||||
|
Hoge *int `json:"hoge" binding:"exists"`
|
||||||
|
}
|
||||||
|
|
||||||
|
var obj HogeStruct
|
||||||
|
req := requestWithBody("POST", "/", `{"hoge": 0}`)
|
||||||
|
err := JSON.Bind(req, &obj)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestExistsFails(t *testing.T) {
|
||||||
|
type HogeStruct struct {
|
||||||
|
Hoge *int `json:"foo" binding:"exists"`
|
||||||
|
}
|
||||||
|
|
||||||
|
var obj HogeStruct
|
||||||
|
req := requestWithBody("POST", "/", `{"boen": 0}`)
|
||||||
|
err := JSON.Bind(req, &obj)
|
||||||
|
assert.Error(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
func testFormBinding(t *testing.T, method, path, badPath, body, badBody string) {
|
func testFormBinding(t *testing.T, method, path, badPath, body, badBody string) {
|
||||||
b := Form
|
b := Form
|
||||||
assert.Equal(t, b.Name(), "form")
|
assert.Equal(t, b.Name(), "form")
|
||||||
|
|
Loading…
Reference in New Issue