You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
3.1 KiB
136 lines
3.1 KiB
package binding
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
|
|
kratoserror "github.com/go-kratos/kratos/v2/errors"
|
|
)
|
|
|
|
type (
|
|
TestBind struct {
|
|
Name string `json:"name"`
|
|
URL string `json:"url"`
|
|
}
|
|
TestBind2 struct {
|
|
Age int `json:"age"`
|
|
}
|
|
)
|
|
|
|
func TestBindQuery(t *testing.T) {
|
|
type args struct {
|
|
vars url.Values
|
|
target interface{}
|
|
}
|
|
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
err error
|
|
want interface{}
|
|
}{
|
|
{
|
|
name: "test",
|
|
args: args{
|
|
vars: map[string][]string{"name": {"kratos"}, "url": {"https://go-kratos.dev/"}},
|
|
target: &TestBind{},
|
|
},
|
|
err: nil,
|
|
want: &TestBind{"kratos", "https://go-kratos.dev/"},
|
|
},
|
|
{
|
|
name: "test1",
|
|
args: args{
|
|
vars: map[string][]string{"age": {"kratos"}, "url": {"https://go-kratos.dev/"}},
|
|
target: &TestBind2{},
|
|
},
|
|
err: kratoserror.BadRequest("CODEC", "Field Namespace:age ERROR:Invalid Integer Value 'kratos' Type 'int' Namespace 'age'"),
|
|
},
|
|
{
|
|
name: "test2",
|
|
args: args{
|
|
vars: map[string][]string{"age": {"1"}, "url": {"https://go-kratos.dev/"}},
|
|
target: &TestBind2{},
|
|
},
|
|
err: nil,
|
|
want: &TestBind2{Age: 1},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
err := BindQuery(tt.args.vars, tt.args.target)
|
|
if !kratoserror.Is(err, tt.err) {
|
|
t.Fatalf("BindQuery() error = %v, err %v", err, tt.err)
|
|
}
|
|
if err == nil && !reflect.DeepEqual(tt.args.target, tt.want) {
|
|
t.Errorf("BindQuery() target = %v, want %v", tt.args.target, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestBindForm(t *testing.T) {
|
|
type args struct {
|
|
req *http.Request
|
|
target interface{}
|
|
}
|
|
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
err error
|
|
want *TestBind
|
|
}{
|
|
{
|
|
name: "error not nil",
|
|
args: args{
|
|
req: &http.Request{Method: http.MethodPost},
|
|
target: &TestBind{},
|
|
},
|
|
err: errors.New("missing form body"),
|
|
want: nil,
|
|
},
|
|
{
|
|
name: "error is nil",
|
|
args: args{
|
|
req: &http.Request{
|
|
Method: http.MethodPost,
|
|
Header: http.Header{"Content-Type": {"application/x-www-form-urlencoded; param=value"}},
|
|
Body: io.NopCloser(strings.NewReader("name=kratos&url=https://go-kratos.dev/")),
|
|
},
|
|
target: &TestBind{},
|
|
},
|
|
err: nil,
|
|
want: &TestBind{"kratos", "https://go-kratos.dev/"},
|
|
},
|
|
{
|
|
name: "error BadRequest",
|
|
args: args{
|
|
req: &http.Request{
|
|
Method: http.MethodPost,
|
|
Header: http.Header{"Content-Type": {"application/x-www-form-urlencoded; param=value"}},
|
|
Body: io.NopCloser(strings.NewReader("age=a")),
|
|
},
|
|
target: &TestBind2{},
|
|
},
|
|
err: kratoserror.BadRequest("CODEC", "Field Namespace:age ERROR:Invalid Integer Value 'a' Type 'int' Namespace 'age'"),
|
|
want: nil,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
err := BindForm(tt.args.req, tt.args.target)
|
|
if !reflect.DeepEqual(err, tt.err) {
|
|
t.Fatalf("BindForm() error = %v, err %v", err, tt.err)
|
|
}
|
|
if err == nil && !reflect.DeepEqual(tt.args.target, tt.want) {
|
|
t.Errorf("BindForm() target = %v, want %v", tt.args.target, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|