go-common/app/interface/main/app-resource/dao/white/white_test.go

38 lines
595 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package white
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 TestWhiteVerify(t *testing.T) {
Convey("get WhiteVerify all", t, func() {
res, err := d.WhiteVerify(ctx(), 1, "")
So(err, ShouldBeNil)
So(res, ShouldNotBeEmpty)
})
}