coupon_test.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package coupon
  2. import (
  3. "context"
  4. "flag"
  5. "fmt"
  6. "testing"
  7. "go-common/app/interface/main/account/conf"
  8. v1 "go-common/app/service/main/coupon/api"
  9. "go-common/app/service/main/coupon/model"
  10. . "github.com/smartystreets/goconvey/convey"
  11. )
  12. var (
  13. s *Service
  14. )
  15. func init() {
  16. flag.Set("conf", "../../cmd/account-interface-example.toml")
  17. var err error
  18. if err = conf.Init(); err != nil {
  19. panic(err)
  20. }
  21. s = New(conf.Conf)
  22. }
  23. // go test -test.v -test.run TestServiceAllowanceList
  24. func TestServiceAllowanceList(t *testing.T) {
  25. Convey("TestServiceAllowanceList", t, func() {
  26. res, err := s.AllowanceList(context.TODO(), int64(1), int8(0))
  27. t.Logf("%v", res)
  28. So(err, ShouldBeNil)
  29. })
  30. }
  31. // go test -test.v -test.run TestCouponPage
  32. // func TestCouponPage(t *testing.T) {
  33. // Convey("TestCouponPage", t, func() {
  34. // res, err := s.CouponPage(context.TODO(), 1, int8(0), 1, 10)
  35. // t.Logf("%v", res)
  36. // So(err, ShouldBeNil)
  37. // })
  38. // }
  39. // // go test -test.v -test.run TestCouponCartoonPage
  40. // func TestCouponCartoonPage(t *testing.T) {
  41. // Convey("TestCouponCartoonPage", t, func() {
  42. // res, err := s.CouponCartoonPage(context.TODO(), 1, int8(0), 1, 10)
  43. // t.Logf("%v", res)
  44. // So(err, ShouldBeNil)
  45. // })
  46. // }
  47. // go test -test.v -test.run TestServiceCaptchaToken
  48. func TestServiceCaptchaToken(t *testing.T) {
  49. Convey("TestServiceCaptchaToken", t, func() {
  50. res, err := s.CaptchaToken(context.Background(), &v1.CaptchaTokenReq{Ip: ""})
  51. fmt.Println("res:", res)
  52. So(err, ShouldBeNil)
  53. })
  54. }
  55. // go test -test.v -test.run TestServiceUseCouponCode
  56. func TestServiceUseCouponCode(t *testing.T) {
  57. Convey("TestServiceUseCouponCode", t, func() {
  58. res, err := s.UseCouponCode(context.Background(), &model.ArgUseCouponCode{
  59. IP: "",
  60. Token: "927a6ea6e9d64e929beadfba6d2bd491",
  61. Code: "sasazxcvfdsa",
  62. Verify: "e8z90",
  63. Mid: 1,
  64. })
  65. fmt.Println("res:", res)
  66. So(err, ShouldBeNil)
  67. })
  68. }