1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package http
- import (
- "context"
- "flag"
- "os"
- "strings"
- "testing"
- "go-common/app/admin/main/aegis/conf"
- "github.com/smartystreets/goconvey/convey"
- "gopkg.in/h2non/gock.v1"
- )
- var (
- d *Dao
- cntx context.Context
- )
- func TestMain(m *testing.M) {
- if os.Getenv("DEPLOY_ENV") != "" {
- flag.Set("app_id", "main.archive.aegis-admin")
- flag.Set("conf_token", "cad913269be022e1eb8c45a8d5408d78")
- flag.Set("tree_id", "60977")
- flag.Set("conf_version", "1")
- flag.Set("deploy_env", "uat")
- flag.Set("conf_host", "config.bilibili.co")
- flag.Set("conf_path", "/tmp")
- flag.Set("region", "sh")
- flag.Set("zone", "sh001")
- } else {
- flag.Set("conf", "../../cmd/aegis-admin.toml")
- }
- flag.Parse()
- if err := conf.Init(); err != nil {
- panic(err)
- }
- d = New(conf.Conf)
- cntx = context.Background()
- os.Exit(m.Run())
- }
- func httpMock(method, url string) *gock.Request {
- r := gock.New(url)
- d.clientR.SetTransport(gock.DefaultTransport)
- d.clientW.SetTransport(gock.DefaultTransport)
- r.Method = strings.ToUpper(method)
- return r
- }
- func TestHttpPing(t *testing.T) {
- convey.Convey("Ping", t, func(ctx convey.C) {
- ctx.Convey("Ping", func(ctx convey.C) {
- err := d.Ping(cntx)
- ctx.Convey("Then err should not be nil", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
|