-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(net/goai): change default value of RequestBody.Required from true to false, add required tag support for RequestBody (gogf#3796) * fix(database/gdb): support OrderRandom feature in different databases (gogf#3794) * up * fix issue 3800 --------- Co-authored-by: oldme <45782393+oldme-git@users.noreply.github.com>
- Loading branch information
Showing
21 changed files
with
432 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// 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 oracle | ||
|
||
// OrderRandomFunction returns the SQL function for random ordering. | ||
func (d *Driver) OrderRandomFunction() string { | ||
return "DBMS_RANDOM.VALUE()" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// 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 pgsql | ||
|
||
// OrderRandomFunction returns the SQL function for random ordering. | ||
func (d *Driver) OrderRandomFunction() string { | ||
return "RANDOM()" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// 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 sqlite | ||
|
||
// OrderRandomFunction returns the SQL function for random ordering. | ||
func (d *Driver) OrderRandomFunction() string { | ||
return "RANDOM()" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// 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 goai_test | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"testing" | ||
"time" | ||
|
||
"github.com/gogf/gf/v2/encoding/gjson" | ||
"github.com/gogf/gf/v2/frame/g" | ||
"github.com/gogf/gf/v2/net/ghttp" | ||
"github.com/gogf/gf/v2/test/gtest" | ||
) | ||
|
||
var ctx = context.Background() | ||
|
||
type Issue3664DefaultReq struct { | ||
g.Meta `path:"/default" method:"post"` | ||
Name string | ||
} | ||
type Issue3664DefaultRes struct{} | ||
|
||
type Issue3664RequiredTagReq struct { | ||
g.Meta `path:"/required-tag" required:"true" method:"post"` | ||
Name string | ||
} | ||
type Issue3664RequiredTagRes struct{} | ||
|
||
type Issue3664 struct{} | ||
|
||
func (Issue3664) Default(ctx context.Context, req *Issue3664DefaultReq) (res *Issue3664DefaultRes, err error) { | ||
res = &Issue3664DefaultRes{} | ||
return | ||
} | ||
|
||
func (Issue3664) RequiredTag(ctx context.Context, req *Issue3664RequiredTagReq) (res *Issue3664RequiredTagRes, err error) { | ||
res = &Issue3664RequiredTagRes{} | ||
return | ||
} | ||
|
||
// https://github.com/gogf/gf/issues/3664 | ||
func Test_Issue3664(t *testing.T) { | ||
gtest.C(t, func(t *gtest.T) { | ||
s := g.Server() | ||
s.Use(ghttp.MiddlewareHandlerResponse) | ||
s.Group("/", func(group *ghttp.RouterGroup) { | ||
group.Bind( | ||
new(Issue3664), | ||
) | ||
}) | ||
s.SetLogger(nil) | ||
s.SetOpenApiPath("/api.json") | ||
s.SetDumpRouterMap(false) | ||
s.Start() | ||
defer s.Shutdown() | ||
time.Sleep(100 * time.Millisecond) | ||
|
||
c := g.Client() | ||
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort())) | ||
apiContent := c.GetContent(ctx, "/api.json") | ||
j, err := gjson.LoadJson(apiContent) | ||
t.AssertNil(err) | ||
t.Assert(j.Get(`paths./default.post.requestBody.required`).String(), "") | ||
t.Assert(j.Get(`paths./required-tag.post.requestBody.required`).String(), "true") | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.