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
853 B
45 lines
853 B
package service |
|
|
|
import ( |
|
"context" |
|
"flag" |
|
"path/filepath" |
|
"testing" |
|
"time" |
|
|
|
"go-common/app/job/main/push/conf" |
|
pushmdl "go-common/app/service/main/push/model" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
var srv *Service |
|
|
|
func init() { |
|
dir, _ := filepath.Abs("../cmd/push-job-test.toml") |
|
flag.Set("conf", dir) |
|
conf.Init() |
|
srv = New(conf.Conf) |
|
time.Sleep(time.Second) |
|
} |
|
|
|
func WithService(f func(s *Service)) func() { |
|
return func() { |
|
f(srv) |
|
} |
|
} |
|
|
|
func Test_Ping(t *testing.T) { |
|
Convey("ping", t, WithService(func(s *Service) { |
|
err := s.Ping(context.TODO()) |
|
So(err, ShouldBeNil) |
|
})) |
|
} |
|
|
|
func Test_TxCond(t *testing.T) { |
|
Convey("query conditon by tx", t, WithService(func(s *Service) { |
|
cond, err := s.txCond(pushmdl.DpCondStatusPrepared, pushmdl.DpCondStatusSubmitting) |
|
So(err, ShouldBeNil) |
|
t.Logf("cond(%+v)", cond) |
|
})) |
|
}
|
|
|