go-common/app/interface/main/app-channel/dao/relation/relation_test.go
2019-04-22 18:49:16 +08:00

38 lines
583 B
Go

package relation
import (
"context"
"flag"
"path/filepath"
"testing"
"time"
"go-common/app/interface/main/app-channel/conf"
. "github.com/smartystreets/goconvey/convey"
)
var (
d *Dao
)
func ctx() context.Context {
return context.Background()
}
func init() {
dir, _ := filepath.Abs("../../cmd/app-channel-test.toml")
flag.Set("conf", dir)
conf.Init()
d = New(conf.Conf)
time.Sleep(time.Second)
}
func TestStats(t *testing.T) {
Convey("get Stats all", t, func() {
res, err := d.Stats(ctx(), []int64{1})
So(res, ShouldNotBeEmpty)
So(err, ShouldBeNil)
})
}