mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
Merge branch 'master' into fix/4193-2
This commit is contained in:
commit
15bbcc8f53
@ -151,8 +151,13 @@ func (r *Request) IsExited() bool {
|
||||
}
|
||||
|
||||
// GetHeader retrieves and returns the header value with given `key`.
|
||||
func (r *Request) GetHeader(key string) string {
|
||||
return r.Header.Get(key)
|
||||
// It returns the optional `def` parameter if the header does not exist.
|
||||
func (r *Request) GetHeader(key string, def ...string) string {
|
||||
value := r.Header.Get(key)
|
||||
if value == "" && len(def) > 0 {
|
||||
value = def[0]
|
||||
}
|
||||
return value
|
||||
}
|
||||
|
||||
// GetHost returns current request host name, which might be a domain or an IP without port.
|
||||
|
@ -363,7 +363,11 @@ func Test_Params_Basic(t *testing.T) {
|
||||
func Test_Params_Header(t *testing.T) {
|
||||
s := g.Server(guid.S())
|
||||
s.BindHandler("/header", func(r *ghttp.Request) {
|
||||
r.Response.Write(r.GetHeader("test"))
|
||||
r.Response.Write(map[string]interface{}{
|
||||
"without-def": r.GetHeader("no-header"),
|
||||
"with-def": r.GetHeader("no-header", "my-default"),
|
||||
"x-custom-with": r.GetHeader("x-custom", "my-default"),
|
||||
})
|
||||
})
|
||||
s.SetDumpRouterMap(false)
|
||||
s.Start()
|
||||
@ -374,8 +378,14 @@ func Test_Params_Header(t *testing.T) {
|
||||
prefix := fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort())
|
||||
client := g.Client()
|
||||
client.SetPrefix(prefix)
|
||||
client.SetHeader("x-custom", "custom-value")
|
||||
|
||||
t.Assert(client.Header(g.MapStrStr{"test": "123456"}).GetContent(ctx, "/header"), "123456")
|
||||
resp := client.GetContent(ctx, "/header")
|
||||
t.Assert(gjson.New(resp).Map(), g.Map{
|
||||
"without-def": "",
|
||||
"with-def": "my-default",
|
||||
"x-custom-with": "custom-value",
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user