offer_test.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package offer
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/app-wall/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. s *Service
  13. )
  14. func init() {
  15. dir, _ := filepath.Abs("../../cmd/app-wall-test.toml")
  16. flag.Set("conf", dir)
  17. conf.Init()
  18. s = New(conf.Conf)
  19. }
  20. func WithService(f func(s *Service)) func() {
  21. return func() {
  22. f(s)
  23. }
  24. }
  25. func TestTelecomPay(t *testing.T) {
  26. Convey("TelecomPay", t, WithService(func(s *Service) {
  27. err := s.Click(context.TODO(), 1, "", "", "", "", time.Now())
  28. So(err, ShouldBeNil)
  29. }))
  30. }
  31. func TestANClick(t *testing.T) {
  32. Convey("ANClick", t, WithService(func(s *Service) {
  33. err := s.ANClick(context.TODO(), "", "", "", "", "", 1, time.Now())
  34. So(err, ShouldBeNil)
  35. }))
  36. }
  37. func TestANActive(t *testing.T) {
  38. Convey("ANActive", t, WithService(func(s *Service) {
  39. err := s.ANActive(context.TODO(), "", "", "", time.Now())
  40. So(err, ShouldBeNil)
  41. }))
  42. }
  43. func TestActive(t *testing.T) {
  44. Convey("Active", t, WithService(func(s *Service) {
  45. err := s.Active(context.TODO(), 1, "", "", "", "", "", time.Now())
  46. So(err, ShouldBeNil)
  47. }))
  48. }