gf/net/ghttp/ghttp_z_unit_feature_cookie_test.go

107 lines
3.0 KiB
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// 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 (
2019-06-19 09:06:52 +08:00
"fmt"
"net/http"
2019-06-19 09:06:52 +08:00
"testing"
"time"
2019-07-29 21:01:19 +08:00
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/gogf/gf/v2/test/gtest"
)
func Test_Cookie(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2019-06-19 09:06:52 +08:00
s := g.Server(p)
s.BindHandler("/set", func(r *ghttp.Request) {
2021-09-27 21:27:24 +08:00
r.Cookie.Set(r.Get("k").String(), r.Get("v").String())
2019-06-19 09:06:52 +08:00
})
s.BindHandler("/get", func(r *ghttp.Request) {
2021-09-27 21:27:24 +08:00
r.Response.Write(r.Cookie.Get(r.Get("k").String()))
})
s.BindHandler("/remove", func(r *ghttp.Request) {
2021-09-27 21:27:24 +08:00
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) {
2020-11-25 16:40:45 +08:00
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, _ := ports.PopRand()
s := g.Server(p)
s.BindHandler("/set", func(r *ghttp.Request) {
r.Cookie.SetHttpCookie(&http.Cookie{
2021-09-27 21:27:24 +08:00
Name: r.Get("k").String(),
Value: r.Get("v").String(),
})
})
s.BindHandler("/get", func(r *ghttp.Request) {
2021-09-27 21:27:24 +08:00
r.Response.Write(r.Cookie.Get(r.Get("k").String()))
2019-06-19 09:06:52 +08:00
})
s.BindHandler("/remove", func(r *ghttp.Request) {
2021-09-27 21:27:24 +08:00
r.Cookie.Remove(r.Get("k").String())
2019-06-19 09:06:52 +08:00
})
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +08:00
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) {
2020-11-25 16:40:45 +08:00
client := g.Client()
2019-06-19 09:06:52 +08:00
client.SetBrowserMode(true)
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
r1, e1 := client.Get(ctx, "/set?k=key1&v=100")
2019-06-19 09:06:52 +08:00
if r1 != nil {
defer r1.Close()
}
2020-03-19 22:56:12 +08:00
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")
2019-06-19 09:06:52 +08:00
})
}