You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

45 lines
924 B

package search
import (
"context"
"flag"
"path/filepath"
"testing"
"time"
"go-common/app/interface/main/app-intl/conf"
. "github.com/smartystreets/goconvey/convey"
)
var (
s *Service
)
func init() {
dir, _ := filepath.Abs("../cmd/app-intl-test.toml")
flag.Set("conf", dir)
conf.Init()
s = New(conf.Conf)
time.Sleep(time.Second)
}
func WithService(f func(s *Service)) func() {
return func() {
f(s)
}
}
func Test_Search(t *testing.T) {
Convey("get app banner", t, WithService(func(s *Service) {
_, err := s.Search(context.Background(), 1, 2, "", "", "", "", "", "", "", "", "", "", "", 3, 4, 5, 6, 7, 8, time.Now())
So(err, ShouldBeNil)
}))
}
func Test_SearchByType(t *testing.T) {
Convey("get app banner", t, WithService(func(s *Service) {
_, err := s.SearchByType(context.Background(), 1, 2, "", "", "", "", "", "", "", "", 3, 4, 5, 6, 7, 8, 8, 8, time.Now())
So(err, ShouldBeNil)
}))
}