withdraw_test.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/growup/model"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func Test_GetWithdraw(t *testing.T) {
  9. var (
  10. dateVersion = "2018-04"
  11. offset, limit = 0, 10
  12. )
  13. Convey("GetWithdraw", t, WithService(func(s *Service) {
  14. _, res, err := s.GetWithdraw(context.Background(), dateVersion, offset, limit)
  15. So(err, ShouldBeNil)
  16. So(len(res), ShouldBeGreaterThan, 0)
  17. }))
  18. }
  19. func Test_UpWithdraw(t *testing.T) {
  20. var (
  21. dateVersion = "2018-04"
  22. offset, limit = 0, 10
  23. )
  24. Convey("UpWithdraw", t, WithService(func(s *Service) {
  25. _, res, err := s.UpWithdraw(context.Background(), dateVersion, offset, limit)
  26. So(err, ShouldBeNil)
  27. So(len(res), ShouldBeGreaterThan, 0)
  28. }))
  29. }
  30. func Test_InsertUpWithdrawRecord(t *testing.T) {
  31. var (
  32. a = &model.UpIncomeWithdraw{MID: int64(1001), WithdrawIncome: 10, DateVersion: "2018-05", State: 1}
  33. )
  34. Convey("Test_InsertUpWithdrawRecord", t, WithService(func(s *Service) {
  35. err := s.InsertUpWithdrawRecord(context.Background(), a)
  36. So(err, ShouldBeNil)
  37. }))
  38. }
  39. func Test_WithdrawSuccess(t *testing.T) {
  40. var (
  41. orderNo int64 = 10
  42. tradeStatus = 10
  43. )
  44. Convey("WithdrawSuccess", t, WithService(func(s *Service) {
  45. err := s.WithdrawSuccess(context.Background(), orderNo, tradeStatus)
  46. So(err, ShouldBeNil)
  47. }))
  48. }
  49. func Test_WithdrawDetail(t *testing.T) {
  50. var (
  51. mid int64 = 10
  52. )
  53. Convey("WithdrawDetail", t, WithService(func(s *Service) {
  54. res, err := s.WithdrawDetail(context.Background(), mid)
  55. So(err, ShouldBeNil)
  56. So(len(res), ShouldBeGreaterThan, 0)
  57. }))
  58. }