service_test.go 998 B

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