mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 09:00:20 +08:00
73906f996d
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
171 lines
3.3 KiB
Go
171 lines
3.3 KiB
Go
package rest
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/tal-tech/go-zero/core/conf"
|
|
)
|
|
|
|
func TestNewEngine(t *testing.T) {
|
|
yamls := []string{
|
|
`Name: foo
|
|
Port: 54321
|
|
`,
|
|
`Name: foo
|
|
Port: 54321
|
|
CpuThreshold: 500
|
|
`,
|
|
`Name: foo
|
|
Port: 54321
|
|
CpuThreshold: 500
|
|
Verbose: true
|
|
`,
|
|
}
|
|
|
|
routes := []featuredRoutes{
|
|
{
|
|
jwt: jwtSetting{},
|
|
signature: signatureSetting{},
|
|
routes: []Route{{
|
|
Method: http.MethodGet,
|
|
Path: "/",
|
|
Handler: func(w http.ResponseWriter, r *http.Request) {},
|
|
}},
|
|
},
|
|
{
|
|
priority: true,
|
|
jwt: jwtSetting{},
|
|
signature: signatureSetting{},
|
|
routes: []Route{{
|
|
Method: http.MethodGet,
|
|
Path: "/",
|
|
Handler: func(w http.ResponseWriter, r *http.Request) {},
|
|
}},
|
|
},
|
|
{
|
|
priority: true,
|
|
jwt: jwtSetting{
|
|
enabled: true,
|
|
},
|
|
signature: signatureSetting{},
|
|
routes: []Route{{
|
|
Method: http.MethodGet,
|
|
Path: "/",
|
|
Handler: func(w http.ResponseWriter, r *http.Request) {},
|
|
}},
|
|
},
|
|
{
|
|
priority: true,
|
|
jwt: jwtSetting{
|
|
enabled: true,
|
|
prevSecret: "thesecret",
|
|
},
|
|
signature: signatureSetting{},
|
|
routes: []Route{{
|
|
Method: http.MethodGet,
|
|
Path: "/",
|
|
Handler: func(w http.ResponseWriter, r *http.Request) {},
|
|
}},
|
|
},
|
|
{
|
|
priority: true,
|
|
jwt: jwtSetting{
|
|
enabled: true,
|
|
},
|
|
signature: signatureSetting{},
|
|
routes: []Route{{
|
|
Method: http.MethodGet,
|
|
Path: "/",
|
|
Handler: func(w http.ResponseWriter, r *http.Request) {},
|
|
}},
|
|
},
|
|
{
|
|
priority: true,
|
|
jwt: jwtSetting{
|
|
enabled: true,
|
|
},
|
|
signature: signatureSetting{
|
|
enabled: true,
|
|
},
|
|
routes: []Route{{
|
|
Method: http.MethodGet,
|
|
Path: "/",
|
|
Handler: func(w http.ResponseWriter, r *http.Request) {},
|
|
}},
|
|
},
|
|
{
|
|
priority: true,
|
|
jwt: jwtSetting{
|
|
enabled: true,
|
|
},
|
|
signature: signatureSetting{
|
|
enabled: true,
|
|
SignatureConf: SignatureConf{
|
|
Strict: true,
|
|
},
|
|
},
|
|
routes: []Route{{
|
|
Method: http.MethodGet,
|
|
Path: "/",
|
|
Handler: func(w http.ResponseWriter, r *http.Request) {},
|
|
}},
|
|
},
|
|
{
|
|
priority: true,
|
|
jwt: jwtSetting{
|
|
enabled: true,
|
|
},
|
|
signature: signatureSetting{
|
|
enabled: true,
|
|
SignatureConf: SignatureConf{
|
|
Strict: true,
|
|
PrivateKeys: []PrivateKeyConf{
|
|
{
|
|
Fingerprint: "a",
|
|
KeyFile: "b",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
routes: []Route{{
|
|
Method: http.MethodGet,
|
|
Path: "/",
|
|
Handler: func(w http.ResponseWriter, r *http.Request) {},
|
|
}},
|
|
},
|
|
}
|
|
|
|
for _, yaml := range yamls {
|
|
for _, route := range routes {
|
|
var cnf RestConf
|
|
assert.Nil(t, conf.LoadConfigFromYamlBytes([]byte(yaml), &cnf))
|
|
ng := newEngine(cnf)
|
|
ng.AddRoutes(route)
|
|
ng.use(func(next http.HandlerFunc) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
next.ServeHTTP(w, r)
|
|
}
|
|
})
|
|
assert.NotNil(t, ng.StartWithRouter(mockedRouter{}))
|
|
}
|
|
}
|
|
}
|
|
|
|
type mockedRouter struct{}
|
|
|
|
func (m mockedRouter) ServeHTTP(writer http.ResponseWriter, request *http.Request) {
|
|
}
|
|
|
|
func (m mockedRouter) Handle(method, path string, handler http.Handler) error {
|
|
return errors.New("foo")
|
|
}
|
|
|
|
func (m mockedRouter) SetNotFoundHandler(handler http.Handler) {
|
|
}
|
|
|
|
func (m mockedRouter) SetNotAllowedHandler(handler http.Handler) {
|
|
}
|