1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
This commit is contained in:
John Guo 2025-03-26 21:32:56 +08:00
parent 59941167ea
commit a9953a4729
2 changed files with 32 additions and 0 deletions

View File

@ -726,3 +726,33 @@ func Test_Issue4093(t *testing.T) {
t.Assert(client.PostContent(ctx, "/test"), `{"page":1,"pageSize":10,"pagination":true,"name":"john","number":1}`)
})
}
// https://github.com/gogf/gf/issues/4193
func Test_Issue4193(t *testing.T) {
type Req struct {
g.Meta `method:"post" mime:"multipart/form-data"`
File *ghttp.UploadFile `v:"required" type:"file"` // File is required
}
type Res struct{}
s := g.Server(guid.S())
s.BindMiddlewareDefault(ghttp.MiddlewareHandlerResponse)
s.BindHandler("/upload", func(ctx context.Context, req *Req) (res *Res, err error) {
return
})
s.SetDumpRouterMap(false)
s.SetAccessLogEnabled(false)
s.SetErrorLogEnabled(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
client := g.Client()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
content := client.PostContent(ctx, "/upload", g.Map{
"file": "",
})
t.Assert(content, `{"code":51,"message":"The File field is required","data":null}`)
})
}

View File

@ -125,6 +125,7 @@ func (c *Converter) doMapConvert(
if len(r) == 0 && mustMapReturn {
return map[string]any{}, nil
}
// if r is not empty, which means it fails converting to map.
return nil, nil
}
case []byte:
@ -137,6 +138,7 @@ func (c *Converter) doMapConvert(
if len(r) == 0 && mustMapReturn {
return map[string]any{}, nil
}
// if r is not empty, which means it fails converting to map.
return nil, nil
}
case map[interface{}]interface{}: