gf/net/ghttp/ghttp_unit_client_test.go

271 lines
6.7 KiB
Go
Raw Normal View History

// 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 (
2020-03-25 17:13:05 +08:00
"context"
"fmt"
"testing"
"time"
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/net/ghttp"
"github.com/gogf/gf/test/gtest"
)
func Test_Client_Basic(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
s := g.Server(p)
s.BindHandler("/hello", func(r *ghttp.Request) {
r.Response.Write("hello")
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
url := fmt.Sprintf("http://127.0.0.1:%d", p)
client := ghttp.NewClient()
client.SetPrefix(url)
2020-03-19 22:56:12 +08:00
t.Assert(ghttp.GetContent(""), ``)
t.Assert(client.GetContent("/hello"), `hello`)
_, err := ghttp.Post("")
2020-03-19 22:56:12 +08:00
t.AssertNE(err, nil)
})
}
func Test_Client_BasicAuth(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
s := g.Server(p)
s.BindHandler("/auth", func(r *ghttp.Request) {
if r.BasicAuth("admin", "admin") {
r.Response.Write("1")
} else {
r.Response.Write("0")
}
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := g.Client()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(c.BasicAuth("admin", "123").GetContent("/auth"), "0")
t.Assert(c.BasicAuth("admin", "admin").GetContent("/auth"), "1")
})
}
2020-03-19 22:56:12 +08:00
func Test_Client_Cookie(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2020-03-19 22:56:12 +08:00
s := g.Server(p)
s.BindHandler("/cookie", func(r *ghttp.Request) {
r.Response.Write(r.Cookie.Get("test"))
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := ghttp.NewClient()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
c.SetCookie("test", "0123456789")
t.Assert(c.PostContent("/cookie"), "0123456789")
})
}
func Test_Client_MapParam(t *testing.T) {
p, _ := ports.PopRand()
s := g.Server(p)
s.BindHandler("/map", func(r *ghttp.Request) {
r.Response.Write(r.Get("test"))
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := ghttp.NewClient()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(c.GetContent("/map", g.Map{"test": "1234567890"}), "1234567890")
})
}
2020-03-19 22:56:12 +08:00
func Test_Client_Cookies(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2020-03-19 22:56:12 +08:00
s := g.Server(p)
s.BindHandler("/cookie", func(r *ghttp.Request) {
r.Cookie.Set("test1", "1")
r.Cookie.Set("test2", "2")
r.Response.Write("ok")
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := ghttp.NewClient()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
resp, err := c.Get("/cookie")
t.Assert(err, nil)
defer resp.Close()
t.AssertNE(resp.Header.Get("Set-Cookie"), "")
m := resp.GetCookieMap()
t.Assert(len(m), 2)
t.Assert(m["test1"], 1)
t.Assert(m["test2"], 2)
t.Assert(resp.GetCookie("test1"), 1)
t.Assert(resp.GetCookie("test2"), 2)
})
}
2020-03-25 17:13:05 +08:00
func Test_Client_Chain_Header(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2020-03-25 17:13:05 +08:00
s := g.Server(p)
s.BindHandler("/header1", func(r *ghttp.Request) {
r.Response.Write(r.Header.Get("test1"))
})
s.BindHandler("/header2", func(r *ghttp.Request) {
r.Response.Write(r.Header.Get("test2"))
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := ghttp.NewClient()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(c.Header(g.MapStrStr{"test1": "1234567890"}).GetContent("/header1"), "1234567890")
t.Assert(c.HeaderRaw("test1: 1234567890\ntest2: abcdefg").GetContent("/header1"), "1234567890")
t.Assert(c.HeaderRaw("test1: 1234567890\ntest2: abcdefg").GetContent("/header2"), "abcdefg")
})
}
func Test_Client_Chain_Context(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2020-03-25 17:13:05 +08:00
s := g.Server(p)
s.BindHandler("/context", func(r *ghttp.Request) {
time.Sleep(1 * time.Second)
r.Response.Write("ok")
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := ghttp.NewClient()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
ctx, _ := context.WithTimeout(context.Background(), 100*time.Millisecond)
t.Assert(c.Ctx(ctx).GetContent("/context"), "")
ctx, _ = context.WithTimeout(context.Background(), 2000*time.Millisecond)
t.Assert(c.Ctx(ctx).GetContent("/context"), "ok")
})
}
func Test_Client_Chain_Timeout(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2020-03-25 17:13:05 +08:00
s := g.Server(p)
s.BindHandler("/timeout", func(r *ghttp.Request) {
time.Sleep(1 * time.Second)
r.Response.Write("ok")
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := ghttp.NewClient()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(c.Timeout(100*time.Millisecond).GetContent("/timeout"), "")
t.Assert(c.Timeout(2000*time.Millisecond).GetContent("/timeout"), "ok")
})
}
func Test_Client_Chain_ContentJson(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2020-03-25 17:13:05 +08:00
s := g.Server(p)
s.BindHandler("/json", func(r *ghttp.Request) {
r.Response.Write(r.Get("name"), r.Get("score"))
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := ghttp.NewClient()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(c.ContentJson().PostContent("/json", g.Map{
"name": "john",
"score": 100,
}), "john100")
t.Assert(c.ContentJson().PostContent("/json", `{"name":"john", "score":100}`), "john100")
type User struct {
Name string `json:"name"`
Score int `json:"score"`
}
t.Assert(c.ContentJson().PostContent("/json", User{"john", 100}), "john100")
})
}
func Test_Client_Chain_ContentXml(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2020-03-25 17:13:05 +08:00
s := g.Server(p)
s.BindHandler("/xml", func(r *ghttp.Request) {
r.Response.Write(r.Get("name"), r.Get("score"))
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := ghttp.NewClient()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(c.ContentXml().PostContent("/xml", g.Map{
"name": "john",
"score": 100,
}), "john100")
t.Assert(c.ContentXml().PostContent("/xml", `{"name":"john", "score":100}`), "john100")
type User struct {
Name string `json:"name"`
Score int `json:"score"`
}
t.Assert(c.ContentXml().PostContent("/xml", User{"john", 100}), "john100")
})
}