mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
66 lines
2.1 KiB
Go
66 lines
2.1 KiB
Go
// 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"
|
|
|
|
"github.com/gogf/gf/frame/g"
|
|
"github.com/gogf/gf/net/ghttp"
|
|
"github.com/gogf/gf/test/gtest"
|
|
)
|
|
|
|
func Test_Params_Xml_Request(t *testing.T) {
|
|
type User struct {
|
|
Id int
|
|
Name string
|
|
Time *time.Time
|
|
Pass1 string `p:"password1" v:"password1"`
|
|
Pass2 string `p:"password2" v:"required|length:2,20|password3|same:password1#||密码强度不足|两次密码不一致"`
|
|
}
|
|
p := ports.PopRand()
|
|
s := g.Server(p)
|
|
s.BindHandler("/get", func(r *ghttp.Request) {
|
|
r.Response.WriteExit(r.Get("id"), r.Get("name"))
|
|
})
|
|
s.BindHandler("/map", func(r *ghttp.Request) {
|
|
if m := r.GetMap(); len(m) > 0 {
|
|
r.Response.WriteExit(m["id"], m["name"], m["password1"], m["password2"])
|
|
}
|
|
})
|
|
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)
|
|
}
|
|
})
|
|
s.SetPort(p)
|
|
s.SetDumpRouterMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
gtest.Case(t, func() {
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
content1 := `<doc><id>1</id><name>john</name><password1>123Abc!@#</password1><password2>123Abc!@#</password2></doc>`
|
|
content2 := `<doc><id>1</id><name>john</name><password1>123Abc!@#</password1><password2>123</password2></doc>`
|
|
gtest.Assert(client.GetContent("/get", content1), `1john`)
|
|
gtest.Assert(client.PostContent("/get", content1), `1john`)
|
|
gtest.Assert(client.GetContent("/map", content1), `1john123Abc!@#123Abc!@#`)
|
|
gtest.Assert(client.PostContent("/map", content1), `1john123Abc!@#123Abc!@#`)
|
|
gtest.Assert(client.PostContent("/parse", content1), `1john123Abc!@#123Abc!@#`)
|
|
gtest.Assert(client.PostContent("/parse", content2), `密码强度不足; 两次密码不一致`)
|
|
})
|
|
}
|