service_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package whitelist
  2. import (
  3. "flag"
  4. "go-common/app/interface/main/creative/conf"
  5. accmdl "go-common/app/interface/main/creative/model/account"
  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_whitelist(t *testing.T) {
  30. mf := &accmdl.MyInfo{}
  31. var (
  32. uploadinfo map[string]interface{}
  33. white int
  34. )
  35. Convey("UploadInfoForMainApp", t, WithService(func(s *Service) {
  36. uploadinfo, white = s.UploadInfoForMainApp(mf, "ios", 111)
  37. So(uploadinfo, ShouldNotBeNil)
  38. So(white, ShouldNotBeNil)
  39. }))
  40. Convey("UploadInfoForCreator", t, WithService(func(s *Service) {
  41. uploadinfo = s.UploadInfoForCreator(mf, 111)
  42. So(s.Creator, ShouldNotBeNil)
  43. }))
  44. Convey("Viewinfo", t, WithService(func(s *Service) {
  45. s.Viewinfo(mf)
  46. So(uploadinfo, ShouldNotBeNil)
  47. }))
  48. }