bws_test.go 748 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package bws
  2. import (
  3. "flag"
  4. "path/filepath"
  5. "testing"
  6. "time"
  7. "go-common/app/interface/main/activity/conf"
  8. "context"
  9. "go-common/app/interface/main/activity/model/bws"
  10. . "github.com/smartystreets/goconvey/convey"
  11. )
  12. var svf *Service
  13. func WithService(f func(s *Service)) func() {
  14. return func() {
  15. dir, _ := filepath.Abs("../../cmd/activity-test.toml")
  16. flag.Set("conf", dir)
  17. conf.Init()
  18. if svf == nil {
  19. svf = New(conf.Conf)
  20. }
  21. time.Sleep(2 * time.Second)
  22. f(svf)
  23. }
  24. }
  25. func TestService_Binding(t *testing.T) {
  26. Convey("test binding", t, WithService(func(s *Service) {
  27. logMid := int64(1)
  28. p := &bws.ParamBinding{
  29. Bid: 1,
  30. Key: "",
  31. }
  32. err := s.Binding(context.Background(), logMid, p)
  33. So(err, ShouldBeNil)
  34. }))
  35. }