telecom_test.go 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package telecom
  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 WithService(f func(s *Service)) func() {
  15. return func() {
  16. f(s)
  17. }
  18. }
  19. func init() {
  20. dir, _ := filepath.Abs("../../cmd/app-wall-test.toml")
  21. flag.Set("conf", dir)
  22. conf.Init()
  23. s = New(conf.Conf)
  24. time.Sleep(time.Second)
  25. }
  26. func TestTelecomPay(t *testing.T) {
  27. Convey("TelecomPay", t, WithService(func(s *Service) {
  28. res, _, err := s.TelecomPay(context.TODO(), 1, 1, 1, 1, 1, "")
  29. So(res, ShouldNotBeEmpty)
  30. So(err, ShouldBeNil)
  31. }))
  32. }
  33. func TestCancelRepeatOrder(t *testing.T) {
  34. Convey("CancelRepeatOrder", t, WithService(func(s *Service) {
  35. res, err := s.CancelRepeatOrder(context.TODO(), 1)
  36. So(res, ShouldNotBeEmpty)
  37. So(err, ShouldBeNil)
  38. }))
  39. }
  40. func TestOrderList(t *testing.T) {
  41. Convey("OrderList", t, WithService(func(s *Service) {
  42. res, _, err := s.OrderList(context.TODO(), 1, 1)
  43. So(res, ShouldNotBeEmpty)
  44. So(err, ShouldBeNil)
  45. }))
  46. }
  47. func TestPhoneFlow(t *testing.T) {
  48. Convey("PhoneFlow", t, WithService(func(s *Service) {
  49. res, _, err := s.PhoneFlow(context.TODO(), 1, 1)
  50. So(res, ShouldNotBeEmpty)
  51. So(err, ShouldBeNil)
  52. }))
  53. }
  54. func TestOrderConsent(t *testing.T) {
  55. Convey("OrderConsent", t, WithService(func(s *Service) {
  56. res, _, err := s.OrderConsent(context.TODO(), 1, 1, "")
  57. So(res, ShouldNotBeEmpty)
  58. So(err, ShouldBeNil)
  59. }))
  60. }
  61. func TestPhoneCode(t *testing.T) {
  62. Convey("PhoneCode", t, WithService(func(s *Service) {
  63. res, _, err := s.PhoneCode(context.TODO(), 1, "", time.Now())
  64. So(res, ShouldNotBeEmpty)
  65. So(err, ShouldBeNil)
  66. }))
  67. }
  68. func TestPhoneSendSMS(t *testing.T) {
  69. Convey("PhoneSendSMS", t, WithService(func(s *Service) {
  70. err := s.PhoneSendSMS(context.TODO(), 1)
  71. So(err, ShouldBeNil)
  72. }))
  73. }
  74. func TestOrderState(t *testing.T) {
  75. Convey("OrderState", t, WithService(func(s *Service) {
  76. res, _, err := s.OrderState(context.TODO(), 1)
  77. So(res, ShouldNotBeEmpty)
  78. So(err, ShouldBeNil)
  79. }))
  80. }