mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
108 lines
3.1 KiB
Go
108 lines
3.1 KiB
Go
// Copyright GoFrame Author(https://goframe.org). 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"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
"github.com/gogf/gf/v2/net/gtcp"
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
)
|
|
|
|
func Test_Cookie(t *testing.T) {
|
|
p, _ := gtcp.GetFreePort()
|
|
s := g.Server(p)
|
|
s.BindHandler("/set", func(r *ghttp.Request) {
|
|
r.Cookie.Set(r.Get("k").String(), r.Get("v").String())
|
|
})
|
|
s.BindHandler("/get", func(r *ghttp.Request) {
|
|
r.Response.Write(r.Cookie.Get(r.Get("k").String()))
|
|
})
|
|
s.BindHandler("/remove", func(r *ghttp.Request) {
|
|
r.Cookie.Remove(r.Get("k").String())
|
|
})
|
|
s.SetPort(p)
|
|
s.SetDumpRouterMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
gtest.C(t, func(t *gtest.T) {
|
|
client := g.Client()
|
|
client.SetBrowserMode(true)
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
r1, e1 := client.Get(ctx, "/set?k=key1&v=100")
|
|
if r1 != nil {
|
|
defer r1.Close()
|
|
}
|
|
|
|
t.Assert(e1, nil)
|
|
t.Assert(r1.ReadAllString(), "")
|
|
|
|
t.Assert(client.GetContent(ctx, "/set?k=key2&v=200"), "")
|
|
|
|
t.Assert(client.GetContent(ctx, "/get?k=key1"), "100")
|
|
t.Assert(client.GetContent(ctx, "/get?k=key2"), "200")
|
|
t.Assert(client.GetContent(ctx, "/get?k=key3"), "")
|
|
t.Assert(client.GetContent(ctx, "/remove?k=key1"), "")
|
|
t.Assert(client.GetContent(ctx, "/remove?k=key3"), "")
|
|
t.Assert(client.GetContent(ctx, "/remove?k=key4"), "")
|
|
t.Assert(client.GetContent(ctx, "/get?k=key1"), "")
|
|
t.Assert(client.GetContent(ctx, "/get?k=key2"), "200")
|
|
})
|
|
}
|
|
|
|
func Test_SetHttpCookie(t *testing.T) {
|
|
p, _ := gtcp.GetFreePort()
|
|
s := g.Server(p)
|
|
s.BindHandler("/set", func(r *ghttp.Request) {
|
|
r.Cookie.SetHttpCookie(&http.Cookie{
|
|
Name: r.Get("k").String(),
|
|
Value: r.Get("v").String(),
|
|
})
|
|
})
|
|
s.BindHandler("/get", func(r *ghttp.Request) {
|
|
r.Response.Write(r.Cookie.Get(r.Get("k").String()))
|
|
})
|
|
s.BindHandler("/remove", func(r *ghttp.Request) {
|
|
r.Cookie.Remove(r.Get("k").String())
|
|
})
|
|
s.SetPort(p)
|
|
s.SetDumpRouterMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
gtest.C(t, func(t *gtest.T) {
|
|
client := g.Client()
|
|
client.SetBrowserMode(true)
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
r1, e1 := client.Get(ctx, "/set?k=key1&v=100")
|
|
if r1 != nil {
|
|
defer r1.Close()
|
|
}
|
|
t.Assert(e1, nil)
|
|
t.Assert(r1.ReadAllString(), "")
|
|
|
|
t.Assert(client.GetContent(ctx, "/set?k=key2&v=200"), "")
|
|
|
|
t.Assert(client.GetContent(ctx, "/get?k=key1"), "100")
|
|
//t.Assert(client.GetContent(ctx, "/get?k=key2"), "200")
|
|
//t.Assert(client.GetContent(ctx, "/get?k=key3"), "")
|
|
//t.Assert(client.GetContent(ctx, "/remove?k=key1"), "")
|
|
//t.Assert(client.GetContent(ctx, "/remove?k=key3"), "")
|
|
//t.Assert(client.GetContent(ctx, "/remove?k=key4"), "")
|
|
//t.Assert(client.GetContent(ctx, "/get?k=key1"), "")
|
|
//t.Assert(client.GetContent(ctx, "/get?k=key2"), "200")
|
|
})
|
|
}
|