fusenapi/server/home-user-auth/home-user-auth_test.go

37 lines
779 B
Go
Raw Normal View History

2023-06-06 04:24:19 +00:00
package main
2023-06-08 07:41:49 +00:00
import (
2023-06-12 07:17:42 +00:00
"flag"
"fmt"
"fusenapi/server/home-user-auth/internal/config"
"fusenapi/server/home-user-auth/internal/handler"
"fusenapi/server/home-user-auth/internal/svc"
2023-06-08 07:41:49 +00:00
"testing"
2023-06-12 07:17:42 +00:00
"github.com/zeromicro/go-zero/core/conf"
"github.com/zeromicro/go-zero/rest"
2023-06-08 07:41:49 +00:00
)
2023-06-12 07:17:42 +00:00
// var configFile = flag.String("f", "etc/home-user-auth.yaml", "the config file")
func GetTestServer() *rest.Server {
flag.Parse()
var c config.Config
conf.MustLoad(*configFile, &c)
server := rest.MustNewServer(c.RestConf)
defer server.Stop()
ctx := svc.NewServiceContext(c)
handler.RegisterHandlers(server, ctx)
fmt.Printf("Starting server at %s:%d...\n", c.Host, c.Port)
return server
2023-06-08 07:41:49 +00:00
}
2023-06-06 04:24:19 +00:00
func TestMain(t *testing.T) {
2023-06-08 07:41:49 +00:00
// log.Println(model.RawFieldNames[FsCanteenType]())
2023-06-06 04:24:19 +00:00
main()
}