2019-07-12 20:56:45 +08:00
|
|
|
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
// If a copy of the MIT was not distributed with this file,
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
|
|
|
|
package ghttp_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2019-07-29 21:01:19 +08:00
|
|
|
"github.com/gogf/gf/util/gvalid"
|
2019-07-12 20:56:45 +08:00
|
|
|
|
2019-07-29 21:01:19 +08:00
|
|
|
"github.com/gogf/gf/frame/g"
|
|
|
|
"github.com/gogf/gf/net/ghttp"
|
|
|
|
"github.com/gogf/gf/test/gtest"
|
2019-07-12 20:56:45 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test_Params_Struct(t *testing.T) {
|
|
|
|
type User struct {
|
|
|
|
Id int
|
|
|
|
Name string
|
2019-11-21 21:49:00 +08:00
|
|
|
Time *time.Time
|
2020-01-01 14:18:00 +08:00
|
|
|
Pass1 string `p:"password1"`
|
|
|
|
Pass2 string `p:"password2" v:"passwd1 @required|length:2,20|password3#||密码强度不足"`
|
2019-07-12 20:56:45 +08:00
|
|
|
}
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2019-07-12 20:56:45 +08:00
|
|
|
s := g.Server(p)
|
|
|
|
s.BindHandler("/struct1", func(r *ghttp.Request) {
|
|
|
|
if m := r.GetMap(); len(m) > 0 {
|
|
|
|
user := new(User)
|
2020-01-01 14:18:00 +08:00
|
|
|
if err := r.GetStruct(user); err != nil {
|
|
|
|
r.Response.WriteExit(err)
|
|
|
|
}
|
|
|
|
r.Response.WriteExit(user.Id, user.Name, user.Pass1, user.Pass2)
|
2019-07-12 20:56:45 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
s.BindHandler("/struct2", func(r *ghttp.Request) {
|
|
|
|
if m := r.GetMap(); len(m) > 0 {
|
|
|
|
user := (*User)(nil)
|
2020-01-01 14:18:00 +08:00
|
|
|
if err := r.GetStruct(&user); err != nil {
|
|
|
|
r.Response.WriteExit(err)
|
|
|
|
}
|
2019-08-26 23:51:01 +08:00
|
|
|
if user != nil {
|
2020-01-01 14:18:00 +08:00
|
|
|
r.Response.WriteExit(user.Id, user.Name, user.Pass1, user.Pass2)
|
2019-08-26 23:51:01 +08:00
|
|
|
}
|
2019-07-12 20:56:45 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
s.BindHandler("/struct-valid", func(r *ghttp.Request) {
|
|
|
|
if m := r.GetMap(); len(m) > 0 {
|
|
|
|
user := new(User)
|
2020-01-01 14:18:00 +08:00
|
|
|
if err := r.GetStruct(user); err != nil {
|
|
|
|
r.Response.WriteExit(err)
|
|
|
|
}
|
|
|
|
if err := gvalid.CheckStruct(user, nil); err != nil {
|
|
|
|
r.Response.WriteExit(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
s.BindHandler("/parse", func(r *ghttp.Request) {
|
|
|
|
if m := r.GetMap(); len(m) > 0 {
|
|
|
|
var user *User
|
|
|
|
if err := r.Parse(&user); err != nil {
|
|
|
|
r.Response.WriteExit(err)
|
|
|
|
}
|
|
|
|
r.Response.WriteExit(user.Id, user.Name, user.Pass1, user.Pass2)
|
2019-07-12 20:56:45 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
s.SetPort(p)
|
2019-12-04 13:55:08 +08:00
|
|
|
s.SetDumpRouterMap(false)
|
2019-07-12 20:56:45 +08:00
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
|
|
|
|
2019-10-09 00:33:58 +08:00
|
|
|
time.Sleep(100 * time.Millisecond)
|
2020-03-19 22:56:12 +08:00
|
|
|
gtest.C(t, func(t *gtest.T) {
|
2019-07-12 20:56:45 +08:00
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/struct1", `id=1&name=john&password1=123&password2=456`), `1john123456`)
|
|
|
|
t.Assert(client.PostContent("/struct1", `id=1&name=john&password1=123&password2=456`), `1john123456`)
|
|
|
|
t.Assert(client.PostContent("/struct2", `id=1&name=john&password1=123&password2=456`), `1john123456`)
|
|
|
|
t.Assert(client.PostContent("/struct2", ``), ``)
|
|
|
|
t.Assert(client.PostContent("/struct-valid", `id=1&name=john&password1=123&password2=0`), `字段长度为2到20个字符; 密码强度不足`)
|
|
|
|
t.Assert(client.PostContent("/parse", `id=1&name=john&password1=123&password2=0`), `字段长度为2到20个字符; 密码强度不足`)
|
|
|
|
t.Assert(client.GetContent("/parse", `id=1&name=john&password1=123&password2=456`), `密码强度不足`)
|
|
|
|
t.Assert(client.GetContent("/parse", `id=1&name=john&password1=123Abc!@#&password2=123Abc!@#`), `1john123Abc!@#123Abc!@#`)
|
|
|
|
t.Assert(client.PostContent("/parse", `{"id":1,"name":"john","password1":"123Abc!@#","password2":"123Abc!@#"}`), `1john123Abc!@#123Abc!@#`)
|
2019-07-12 20:56:45 +08:00
|
|
|
})
|
|
|
|
}
|