service_test.go 966 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package up
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. "go-common/app/interface/main/creative/service"
  10. . "github.com/smartystreets/goconvey/convey"
  11. )
  12. var (
  13. s *Service
  14. )
  15. func init() {
  16. dir, _ := filepath.Abs("../../cmd/creative.toml")
  17. flag.Set("conf", dir)
  18. conf.Init()
  19. rpcdaos := service.NewRPCDaos(conf.Conf)
  20. s = New(conf.Conf, rpcdaos)
  21. time.Sleep(time.Second)
  22. }
  23. func WithService(f func(s *Service)) func() {
  24. return func() {
  25. Reset(func() {})
  26. f(s)
  27. }
  28. }
  29. func Test_UpSwitch(t *testing.T) {
  30. var (
  31. mid int64 = 27515244
  32. c = context.Background()
  33. )
  34. Convey("UpSwitch", t, WithService(func(s *Service) {
  35. res, err := s.UpSwitch(c, mid, "")
  36. So(err, ShouldBeNil)
  37. So(res, ShouldNotBeNil)
  38. }))
  39. }
  40. func TestService_ShowStaff(t *testing.T) {
  41. var c = context.Background()
  42. Convey("ShowStaff", t, func(ctx C) {
  43. _, err := s.ShowStaff(c, 27515244)
  44. So(err, ShouldBeNil)
  45. })
  46. }