vip_test.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package vip
  2. import (
  3. "context"
  4. "flag"
  5. "testing"
  6. "go-common/app/interface/main/account/conf"
  7. "go-common/app/interface/main/account/model"
  8. vipmod "go-common/app/service/main/vip/model"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. s *Service
  13. )
  14. func init() {
  15. flag.Set("conf", "../../cmd/account-interface-example.toml")
  16. var err error
  17. if err = conf.Init(); err != nil {
  18. panic(err)
  19. }
  20. s = New(conf.Conf)
  21. }
  22. func TestService_CodeOpen(t *testing.T) {
  23. Convey("code open", t, func() {
  24. codeInfo, err := s.CodeOpen(context.TODO(), 123, "7b6e2263b8355928", "fd09f95433ed4c579f03ca7112b843ab", "45tn")
  25. t.Logf("%v", codeInfo)
  26. So(err, ShouldBeNil)
  27. })
  28. }
  29. func TestService_CodeVerify(t *testing.T) {
  30. Convey("code verify", t, func() {
  31. _, err := s.CodeVerify(context.TODO())
  32. So(err, ShouldBeNil)
  33. })
  34. }
  35. // go test -test.v -test.run TestServiceTips
  36. func TestServiceTips(t *testing.T) {
  37. Convey("TestServiceTips", t, func() {
  38. req := &model.TipsReq{
  39. Version: int64(6000),
  40. Platform: "ios",
  41. }
  42. res, err := s.Tips(context.TODO(), req)
  43. t.Logf("data(+%v)", res)
  44. So(err, ShouldBeNil)
  45. })
  46. }
  47. func TestService_CodeOpeneds(t *testing.T) {
  48. Convey("test service code opened", t, func() {
  49. arg := new(model.CodeInfoReq)
  50. resp, err := s.CodeOpeneds(context.TODO(), arg, "127.0.0.1")
  51. t.Logf("data(%+v)", resp)
  52. So(err, ShouldBeNil)
  53. })
  54. }
  55. func TestService_Unfrozen(t *testing.T) {
  56. Convey("test unfrozen", t, func() {
  57. err := s.Unfrozen(context.TODO(), 10001)
  58. So(err, ShouldBeNil)
  59. })
  60. }
  61. func TestService_FrozenTime(t *testing.T) {
  62. Convey("test frozen time", t, func() {
  63. ctime, err := s.FrozenTime(context.TODO(), 10001)
  64. t.Logf("%+v", ctime)
  65. So(err, ShouldBeNil)
  66. })
  67. }
  68. func TestService_checkIp(t *testing.T) {
  69. Convey("test check ip", t, func() {
  70. err := s.checkIP("b2cf4e9dbe9fd2e3", "111.203.12.97")
  71. So(err, ShouldBeNil)
  72. err = s.checkIP("b2cf4e9dbe9fd2e31", "111.203.12.97")
  73. So(err, ShouldNotBeNil)
  74. })
  75. }
  76. func TestService_OrderStatus(t *testing.T) {
  77. Convey("TestService_OrderStatus", t, func() {
  78. arg := &vipmod.ArgDialog{OrderNo: "1"}
  79. res, err := s.OrderStatus(context.Background(), arg)
  80. So(err, ShouldBeNil)
  81. So(res, ShouldNotBeNil)
  82. })
  83. }