2019-02-02 16:18:25 +08:00
|
|
|
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
2018-12-31 00:22:18 +08:00
|
|
|
//
|
|
|
|
// 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,
|
2019-02-02 16:18:25 +08:00
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-12-31 00:22:18 +08:00
|
|
|
|
|
|
|
package ghttp_test
|
|
|
|
|
|
|
|
import (
|
2019-06-19 09:06:52 +08:00
|
|
|
"fmt"
|
2019-07-03 22:09:35 +08:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
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"
|
2018-12-31 00:22:18 +08:00
|
|
|
)
|
|
|
|
|
2019-02-27 21:17:56 +08:00
|
|
|
func Test_Params_Basic(t *testing.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
type User struct {
|
|
|
|
Id int
|
|
|
|
Name string
|
|
|
|
Pass1 string `params:"password1"`
|
|
|
|
Pass2 string `params:"password2"`
|
|
|
|
}
|
|
|
|
p := ports.PopRand()
|
|
|
|
s := g.Server(p)
|
2019-10-01 09:06:35 +08:00
|
|
|
// GET
|
2019-06-19 09:06:52 +08:00
|
|
|
s.BindHandler("/get", func(r *ghttp.Request) {
|
2019-09-19 20:19:07 +08:00
|
|
|
if r.GetQuery("array") != nil {
|
|
|
|
r.Response.Write(r.GetQuery("array"))
|
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
if r.GetQuery("slice") != nil {
|
|
|
|
r.Response.Write(r.GetQuery("slice"))
|
|
|
|
}
|
|
|
|
if r.GetQuery("bool") != nil {
|
|
|
|
r.Response.Write(r.GetQueryBool("bool"))
|
|
|
|
}
|
|
|
|
if r.GetQuery("float32") != nil {
|
|
|
|
r.Response.Write(r.GetQueryFloat32("float32"))
|
|
|
|
}
|
|
|
|
if r.GetQuery("float64") != nil {
|
|
|
|
r.Response.Write(r.GetQueryFloat64("float64"))
|
|
|
|
}
|
|
|
|
if r.GetQuery("int") != nil {
|
|
|
|
r.Response.Write(r.GetQueryInt("int"))
|
|
|
|
}
|
|
|
|
if r.GetQuery("uint") != nil {
|
|
|
|
r.Response.Write(r.GetQueryUint("uint"))
|
|
|
|
}
|
|
|
|
if r.GetQuery("string") != nil {
|
|
|
|
r.Response.Write(r.GetQueryString("string"))
|
|
|
|
}
|
2019-09-19 23:23:41 +08:00
|
|
|
if r.GetQuery("map") != nil {
|
|
|
|
r.Response.Write(r.GetQueryMap()["map"].(map[string]interface{})["b"])
|
|
|
|
}
|
|
|
|
if r.GetQuery("a") != nil {
|
|
|
|
r.Response.Write(r.GetQueryMapStrStr()["a"])
|
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-10-01 09:06:35 +08:00
|
|
|
// PUT
|
2019-09-18 23:20:45 +08:00
|
|
|
s.BindHandler("/put", func(r *ghttp.Request) {
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("array") != nil {
|
|
|
|
r.Response.Write(r.Get("array"))
|
2019-09-19 20:19:07 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("slice") != nil {
|
|
|
|
r.Response.Write(r.Get("slice"))
|
2019-09-18 23:20:45 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("bool") != nil {
|
|
|
|
r.Response.Write(r.GetBool("bool"))
|
2019-09-18 23:20:45 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("float32") != nil {
|
|
|
|
r.Response.Write(r.GetFloat32("float32"))
|
2019-09-18 23:20:45 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("float64") != nil {
|
|
|
|
r.Response.Write(r.GetFloat64("float64"))
|
2019-09-18 23:20:45 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("int") != nil {
|
|
|
|
r.Response.Write(r.GetInt("int"))
|
2019-09-18 23:20:45 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("uint") != nil {
|
|
|
|
r.Response.Write(r.GetUint("uint"))
|
2019-09-18 23:20:45 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("string") != nil {
|
|
|
|
r.Response.Write(r.GetString("string"))
|
2019-09-18 23:20:45 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("map") != nil {
|
|
|
|
r.Response.Write(r.GetMap()["map"].(map[string]interface{})["b"])
|
2019-09-18 23:20:45 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("a") != nil {
|
|
|
|
r.Response.Write(r.GetMapStrStr()["a"])
|
2019-09-19 23:23:41 +08:00
|
|
|
}
|
2019-09-18 23:20:45 +08:00
|
|
|
})
|
2019-10-01 09:06:35 +08:00
|
|
|
// POST
|
2019-06-19 09:06:52 +08:00
|
|
|
s.BindHandler("/post", func(r *ghttp.Request) {
|
2019-09-19 20:19:07 +08:00
|
|
|
if r.GetPost("array") != nil {
|
|
|
|
r.Response.Write(r.GetPost("array"))
|
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
if r.GetPost("slice") != nil {
|
|
|
|
r.Response.Write(r.GetPost("slice"))
|
|
|
|
}
|
|
|
|
if r.GetPost("bool") != nil {
|
|
|
|
r.Response.Write(r.GetPostBool("bool"))
|
|
|
|
}
|
|
|
|
if r.GetPost("float32") != nil {
|
|
|
|
r.Response.Write(r.GetPostFloat32("float32"))
|
|
|
|
}
|
|
|
|
if r.GetPost("float64") != nil {
|
|
|
|
r.Response.Write(r.GetPostFloat64("float64"))
|
|
|
|
}
|
|
|
|
if r.GetPost("int") != nil {
|
|
|
|
r.Response.Write(r.GetPostInt("int"))
|
|
|
|
}
|
|
|
|
if r.GetPost("uint") != nil {
|
|
|
|
r.Response.Write(r.GetPostUint("uint"))
|
|
|
|
}
|
|
|
|
if r.GetPost("string") != nil {
|
|
|
|
r.Response.Write(r.GetPostString("string"))
|
|
|
|
}
|
2019-09-18 23:20:45 +08:00
|
|
|
if r.GetPost("map") != nil {
|
|
|
|
r.Response.Write(r.GetPostMap()["map"].(map[string]interface{})["b"])
|
|
|
|
}
|
2019-09-19 23:23:41 +08:00
|
|
|
if r.GetPost("a") != nil {
|
|
|
|
r.Response.Write(r.GetPostMapStrStr()["a"])
|
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-10-01 09:06:35 +08:00
|
|
|
// DELETE
|
|
|
|
s.BindHandler("/delete", func(r *ghttp.Request) {
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("array") != nil {
|
|
|
|
r.Response.Write(r.Get("array"))
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("slice") != nil {
|
|
|
|
r.Response.Write(r.Get("slice"))
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("bool") != nil {
|
|
|
|
r.Response.Write(r.GetBool("bool"))
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("float32") != nil {
|
|
|
|
r.Response.Write(r.GetFloat32("float32"))
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("float64") != nil {
|
|
|
|
r.Response.Write(r.GetFloat64("float64"))
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("int") != nil {
|
|
|
|
r.Response.Write(r.GetInt("int"))
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("uint") != nil {
|
|
|
|
r.Response.Write(r.GetUint("uint"))
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("string") != nil {
|
|
|
|
r.Response.Write(r.GetString("string"))
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("map") != nil {
|
|
|
|
r.Response.Write(r.GetMap()["map"].(map[string]interface{})["b"])
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
2019-11-29 22:02:19 +08:00
|
|
|
if r.Get("a") != nil {
|
|
|
|
r.Response.Write(r.GetMapStrStr()["a"])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
// PATCH
|
|
|
|
s.BindHandler("/patch", func(r *ghttp.Request) {
|
|
|
|
if r.Get("array") != nil {
|
|
|
|
r.Response.Write(r.Get("array"))
|
|
|
|
}
|
|
|
|
if r.Get("slice") != nil {
|
|
|
|
r.Response.Write(r.Get("slice"))
|
|
|
|
}
|
|
|
|
if r.Get("bool") != nil {
|
|
|
|
r.Response.Write(r.GetBool("bool"))
|
|
|
|
}
|
|
|
|
if r.Get("float32") != nil {
|
|
|
|
r.Response.Write(r.GetFloat32("float32"))
|
|
|
|
}
|
|
|
|
if r.Get("float64") != nil {
|
|
|
|
r.Response.Write(r.GetFloat64("float64"))
|
|
|
|
}
|
|
|
|
if r.Get("int") != nil {
|
|
|
|
r.Response.Write(r.GetInt("int"))
|
|
|
|
}
|
|
|
|
if r.Get("uint") != nil {
|
|
|
|
r.Response.Write(r.GetUint("uint"))
|
|
|
|
}
|
|
|
|
if r.Get("string") != nil {
|
|
|
|
r.Response.Write(r.GetString("string"))
|
|
|
|
}
|
|
|
|
if r.Get("map") != nil {
|
|
|
|
r.Response.Write(r.GetMap()["map"].(map[string]interface{})["b"])
|
|
|
|
}
|
|
|
|
if r.Get("a") != nil {
|
|
|
|
r.Response.Write(r.GetMapStrStr()["a"])
|
2019-10-01 09:06:35 +08:00
|
|
|
}
|
|
|
|
})
|
2019-11-30 09:42:07 +08:00
|
|
|
// Form
|
|
|
|
s.BindHandler("/form", func(r *ghttp.Request) {
|
|
|
|
if r.Get("array") != nil {
|
|
|
|
r.Response.Write(r.GetForm("array"))
|
|
|
|
}
|
|
|
|
if r.Get("slice") != nil {
|
|
|
|
r.Response.Write(r.GetForm("slice"))
|
|
|
|
}
|
|
|
|
if r.Get("bool") != nil {
|
|
|
|
r.Response.Write(r.GetFormBool("bool"))
|
|
|
|
}
|
|
|
|
if r.Get("float32") != nil {
|
|
|
|
r.Response.Write(r.GetFormFloat32("float32"))
|
|
|
|
}
|
|
|
|
if r.Get("float64") != nil {
|
|
|
|
r.Response.Write(r.GetFormFloat64("float64"))
|
|
|
|
}
|
|
|
|
if r.Get("int") != nil {
|
|
|
|
r.Response.Write(r.GetFormInt("int"))
|
|
|
|
}
|
|
|
|
if r.Get("uint") != nil {
|
|
|
|
r.Response.Write(r.GetFormUint("uint"))
|
|
|
|
}
|
|
|
|
if r.Get("string") != nil {
|
|
|
|
r.Response.Write(r.GetFormString("string"))
|
|
|
|
}
|
|
|
|
if r.Get("map") != nil {
|
|
|
|
r.Response.Write(r.GetFormMap()["map"].(map[string]interface{})["b"])
|
|
|
|
}
|
|
|
|
if r.Get("a") != nil {
|
|
|
|
r.Response.Write(r.GetFormMapStrStr()["a"])
|
|
|
|
}
|
|
|
|
})
|
2019-06-19 09:06:52 +08:00
|
|
|
s.BindHandler("/map", func(r *ghttp.Request) {
|
|
|
|
if m := r.GetQueryMap(); len(m) > 0 {
|
|
|
|
r.Response.Write(m["name"])
|
2019-11-29 22:02:19 +08:00
|
|
|
return
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
if m := r.GetPostMap(); len(m) > 0 {
|
|
|
|
r.Response.Write(m["name"])
|
2019-11-29 22:02:19 +08:00
|
|
|
return
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
s.BindHandler("/raw", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write(r.GetRaw())
|
|
|
|
})
|
|
|
|
s.BindHandler("/json", func(r *ghttp.Request) {
|
2019-09-24 20:39:00 +08:00
|
|
|
j, err := r.GetJson()
|
|
|
|
if err != nil {
|
|
|
|
r.Response.Write(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Response.Write(j.Get("name"))
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
|
|
|
s.BindHandler("/struct", func(r *ghttp.Request) {
|
|
|
|
if m := r.GetQueryMap(); len(m) > 0 {
|
|
|
|
user := new(User)
|
|
|
|
r.GetQueryToStruct(user)
|
|
|
|
r.Response.Write(user.Id, user.Name, user.Pass1, user.Pass2)
|
2019-11-29 22:02:19 +08:00
|
|
|
return
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
if m := r.GetPostMap(); len(m) > 0 {
|
|
|
|
user := new(User)
|
|
|
|
r.GetPostToStruct(user)
|
|
|
|
r.Response.Write(user.Id, user.Name, user.Pass1, user.Pass2)
|
2019-11-29 22:02:19 +08:00
|
|
|
return
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
})
|
2019-10-01 09:33:26 +08:00
|
|
|
s.BindHandler("/struct-with-nil", func(r *ghttp.Request) {
|
|
|
|
user := (*User)(nil)
|
|
|
|
err := r.GetPostToStruct(&user)
|
|
|
|
r.Response.Write(err)
|
|
|
|
})
|
2019-07-03 22:09:35 +08:00
|
|
|
s.BindHandler("/struct-with-base", func(r *ghttp.Request) {
|
|
|
|
type Base struct {
|
|
|
|
Pass1 string `params:"password1"`
|
|
|
|
Pass2 string `params:"password2"`
|
|
|
|
}
|
|
|
|
type UserWithBase1 struct {
|
|
|
|
Id int
|
|
|
|
Name string
|
|
|
|
Base
|
|
|
|
}
|
|
|
|
type UserWithBase2 struct {
|
|
|
|
Id int
|
|
|
|
Name string
|
|
|
|
Pass Base
|
|
|
|
}
|
|
|
|
if m := r.GetPostMap(); len(m) > 0 {
|
|
|
|
user1 := new(UserWithBase1)
|
|
|
|
user2 := new(UserWithBase2)
|
|
|
|
r.GetToStruct(user1)
|
|
|
|
r.GetToStruct(user2)
|
|
|
|
r.Response.Write(user1.Id, user1.Name, user1.Pass1, user1.Pass2)
|
|
|
|
r.Response.Write(user2.Id, user2.Name, user2.Pass.Pass1, user2.Pass.Pass2)
|
|
|
|
}
|
|
|
|
})
|
2019-06-19 09:06:52 +08:00
|
|
|
s.SetPort(p)
|
|
|
|
s.SetDumpRouteMap(false)
|
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
2019-02-28 23:57:20 +08:00
|
|
|
|
2019-10-09 00:33:58 +08:00
|
|
|
time.Sleep(100 * time.Millisecond)
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Case(t, func() {
|
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
// GET
|
2019-09-19 20:19:07 +08:00
|
|
|
gtest.Assert(client.GetContent("/get", "array[]=1&array[]=2"), `["1","2"]`)
|
2019-09-18 23:20:45 +08:00
|
|
|
gtest.Assert(client.GetContent("/get", "slice=1&slice=2"), `2`)
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Assert(client.GetContent("/get", "bool=1"), `true`)
|
|
|
|
gtest.Assert(client.GetContent("/get", "bool=0"), `false`)
|
|
|
|
gtest.Assert(client.GetContent("/get", "float32=0.11"), `0.11`)
|
|
|
|
gtest.Assert(client.GetContent("/get", "float64=0.22"), `0.22`)
|
|
|
|
gtest.Assert(client.GetContent("/get", "int=-10000"), `-10000`)
|
|
|
|
gtest.Assert(client.GetContent("/get", "int=10000"), `10000`)
|
|
|
|
gtest.Assert(client.GetContent("/get", "uint=10000"), `10000`)
|
|
|
|
gtest.Assert(client.GetContent("/get", "uint=9"), `9`)
|
|
|
|
gtest.Assert(client.GetContent("/get", "string=key"), `key`)
|
2019-09-19 23:23:41 +08:00
|
|
|
gtest.Assert(client.GetContent("/get", "map[a]=1&map[b]=2"), `2`)
|
|
|
|
gtest.Assert(client.GetContent("/get", "a=1&b=2"), `1`)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
2019-09-18 23:20:45 +08:00
|
|
|
// PUT
|
2019-09-19 20:19:07 +08:00
|
|
|
gtest.Assert(client.PutContent("/put", "array[]=1&array[]=2"), `["1","2"]`)
|
2019-09-18 23:20:45 +08:00
|
|
|
gtest.Assert(client.PutContent("/put", "slice=1&slice=2"), `2`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "bool=1"), `true`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "bool=0"), `false`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "float32=0.11"), `0.11`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "float64=0.22"), `0.22`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "int=-10000"), `-10000`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "int=10000"), `10000`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "uint=10000"), `10000`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "uint=9"), `9`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "string=key"), `key`)
|
|
|
|
gtest.Assert(client.PutContent("/put", "map[a]=1&map[b]=2"), `2`)
|
2019-09-19 23:23:41 +08:00
|
|
|
gtest.Assert(client.PutContent("/put", "a=1&b=2"), `1`)
|
2019-09-18 23:20:45 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
// POST
|
2019-09-19 20:19:07 +08:00
|
|
|
gtest.Assert(client.PostContent("/post", "array[]=1&array[]=2"), `["1","2"]`)
|
2019-09-18 23:20:45 +08:00
|
|
|
gtest.Assert(client.PostContent("/post", "slice=1&slice=2"), `2`)
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Assert(client.PostContent("/post", "bool=1"), `true`)
|
|
|
|
gtest.Assert(client.PostContent("/post", "bool=0"), `false`)
|
|
|
|
gtest.Assert(client.PostContent("/post", "float32=0.11"), `0.11`)
|
|
|
|
gtest.Assert(client.PostContent("/post", "float64=0.22"), `0.22`)
|
|
|
|
gtest.Assert(client.PostContent("/post", "int=-10000"), `-10000`)
|
|
|
|
gtest.Assert(client.PostContent("/post", "int=10000"), `10000`)
|
|
|
|
gtest.Assert(client.PostContent("/post", "uint=10000"), `10000`)
|
|
|
|
gtest.Assert(client.PostContent("/post", "uint=9"), `9`)
|
|
|
|
gtest.Assert(client.PostContent("/post", "string=key"), `key`)
|
2019-09-18 23:20:45 +08:00
|
|
|
gtest.Assert(client.PostContent("/post", "map[a]=1&map[b]=2"), `2`)
|
2019-09-19 23:23:41 +08:00
|
|
|
gtest.Assert(client.PostContent("/post", "a=1&b=2"), `1`)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
2019-10-01 09:06:35 +08:00
|
|
|
// DELETE
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "array[]=1&array[]=2"), `["1","2"]`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "slice=1&slice=2"), `2`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "bool=1"), `true`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "bool=0"), `false`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "float32=0.11"), `0.11`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "float64=0.22"), `0.22`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "int=-10000"), `-10000`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "int=10000"), `10000`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "uint=10000"), `10000`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "uint=9"), `9`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "string=key"), `key`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "map[a]=1&map[b]=2"), `2`)
|
|
|
|
gtest.Assert(client.DeleteContent("/delete", "a=1&b=2"), `1`)
|
|
|
|
|
2019-11-29 22:02:19 +08:00
|
|
|
// PATCH
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "array[]=1&array[]=2"), `["1","2"]`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "slice=1&slice=2"), `2`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "bool=1"), `true`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "bool=0"), `false`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "float32=0.11"), `0.11`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "float64=0.22"), `0.22`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "int=-10000"), `-10000`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "int=10000"), `10000`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "uint=10000"), `10000`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "uint=9"), `9`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "string=key"), `key`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "map[a]=1&map[b]=2"), `2`)
|
|
|
|
gtest.Assert(client.PatchContent("/patch", "a=1&b=2"), `1`)
|
|
|
|
|
2019-11-30 09:42:07 +08:00
|
|
|
// Form
|
|
|
|
gtest.Assert(client.PostContent("/form", "array[]=1&array[]=2"), `["1","2"]`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "slice=1&slice=2"), `2`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "bool=1"), `true`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "bool=0"), `false`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "float32=0.11"), `0.11`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "float64=0.22"), `0.22`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "int=-10000"), `-10000`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "int=10000"), `10000`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "uint=10000"), `10000`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "uint=9"), `9`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "string=key"), `key`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "map[a]=1&map[b]=2"), `2`)
|
|
|
|
gtest.Assert(client.PostContent("/form", "a=1&b=2"), `1`)
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
// Map
|
|
|
|
gtest.Assert(client.GetContent("/map", "id=1&name=john"), `john`)
|
|
|
|
gtest.Assert(client.PostContent("/map", "id=1&name=john"), `john`)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
// Raw
|
|
|
|
gtest.Assert(client.PutContent("/raw", "id=1&name=john"), `id=1&name=john`)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
// Json
|
|
|
|
gtest.Assert(client.PostContent("/json", `{"id":1, "name":"john"}`), `john`)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
// Struct
|
|
|
|
gtest.Assert(client.GetContent("/struct", `id=1&name=john&password1=123&password2=456`), `1john123456`)
|
|
|
|
gtest.Assert(client.PostContent("/struct", `id=1&name=john&password1=123&password2=456`), `1john123456`)
|
2019-10-01 09:33:26 +08:00
|
|
|
gtest.Assert(client.PostContent("/struct-with-nil", ``), ``)
|
2019-07-03 22:09:35 +08:00
|
|
|
gtest.Assert(client.PostContent("/struct-with-base", `id=1&name=john&password1=123&password2=456`), "1john1234561john123456")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2018-12-31 00:22:18 +08:00
|
|
|
}
|
2019-12-01 14:07:36 +08:00
|
|
|
|
|
|
|
func Test_Params_Priority(t *testing.T) {
|
|
|
|
p := ports.PopRand()
|
|
|
|
s := g.Server(p)
|
|
|
|
s.BindHandler("/query", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write(r.GetQuery("a"))
|
|
|
|
})
|
|
|
|
s.BindHandler("/post", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write(r.GetPost("a"))
|
|
|
|
})
|
|
|
|
s.BindHandler("/form", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write(r.GetForm("a"))
|
|
|
|
})
|
|
|
|
s.BindHandler("/request", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write(r.Get("a"))
|
|
|
|
})
|
|
|
|
s.BindHandler("/request-map", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write(r.GetMap(g.Map{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2,
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
s.SetPort(p)
|
|
|
|
s.SetDumpRouteMap(false)
|
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
|
|
|
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
gtest.Case(t, func() {
|
|
|
|
prefix := fmt.Sprintf("http://127.0.0.1:%d", p)
|
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(prefix)
|
|
|
|
|
2019-12-01 21:41:29 +08:00
|
|
|
gtest.Assert(client.GetContent("/query?a=1", "a=100"), "1")
|
2019-12-01 14:07:36 +08:00
|
|
|
gtest.Assert(client.PostContent("/post?a=1", "a=100"), "100")
|
|
|
|
gtest.Assert(client.PostContent("/form?a=1", "a=100"), "100")
|
|
|
|
gtest.Assert(client.PutContent("/form?a=1", "a=100"), "100")
|
|
|
|
gtest.Assert(client.GetContent("/request?a=1", "a=100"), "100")
|
|
|
|
gtest.Assert(client.GetContent("/request-map?a=1&b=2&c=3", "a=100&b=200&c=300"), `{"a":"100","b":"200"}`)
|
|
|
|
})
|
|
|
|
}
|