package location import ( "context" "flag" "path/filepath" "testing" "time" "go-common/app/interface/main/app-resource/conf" . "github.com/smartystreets/goconvey/convey" ) var ( d *Dao ) func ctx() context.Context { return context.Background() } func init() { dir, _ := filepath.Abs("../../cmd/app-resource-test.toml") flag.Set("conf", dir) conf.Init() d = New(conf.Conf) time.Sleep(time.Second) } func TestInfo(t *testing.T) { Convey("get Info", t, func() { res, err := d.Info(ctx(), "127.0.0.1") So(res, ShouldNotBeEmpty) So(err, ShouldBeNil) }) } func TestAuthPIDs(t *testing.T) { Convey("get AuthPIDs", t, func() { _, err := d.AuthPIDs(ctx(), "417,1521", "127.0.0.0") So(err, ShouldBeNil) }) }