Create & Init Project...
This commit is contained in:
37
app/interface/main/app-resource/dao/sidebar/sidebar_test.go
Normal file
37
app/interface/main/app-resource/dao/sidebar/sidebar_test.go
Normal file
@ -0,0 +1,37 @@
|
||||
package sidebar
|
||||
|
||||
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 TestSideBar(t *testing.T) {
|
||||
Convey("get SideBar all", t, func() {
|
||||
res, _, err := d.SideBar(ctx(), time.Now())
|
||||
So(err, ShouldBeNil)
|
||||
So(res, ShouldNotBeEmpty)
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user