go-common/app/job/main/videoup/dao/manager/dao_test.go

40 lines
567 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package manager
import (
"context"
"flag"
"path/filepath"
"testing"
. "github.com/smartystreets/goconvey/convey"
"go-common/app/job/main/videoup/conf"
)
var (
d *Dao
)
func init() {
dir, _ := filepath.Abs("../../cmd/videoup-job-test.toml")
flag.Set("conf", dir)
conf.Init()
d = New(conf.Conf)
}
func WithDao(f func(d *Dao)) func() {
return func() {
f(d)
}
}
func Test_Uppers(t *testing.T) {
var (
c = context.TODO()
)
Convey("Uppers", t, WithDao(func(d *Dao) {
um, err := d.Uppers(c)
So(err, ShouldBeNil)
So(um, ShouldNotBeNil)
}))
}