web_info_test.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package member
  2. import (
  3. "context"
  4. . "github.com/smartystreets/goconvey/convey"
  5. "go-common/app/interface/main/account/model"
  6. "testing"
  7. "time"
  8. )
  9. func TestService_SettingsInfo(t *testing.T) {
  10. Convey("get settingsInfo info", t, func() {
  11. Convey("when not timeout", func() {
  12. time.Sleep(time.Second * 2)
  13. res, err := s.SettingsInfo(context.TODO(), 110001260)
  14. So(err, ShouldBeNil)
  15. So(res, ShouldNotBeEmpty)
  16. })
  17. })
  18. }
  19. func TestService_LogLogin(t *testing.T) {
  20. Convey("get settingsInfo info", t, func() {
  21. Convey("when not timeout", func() {
  22. time.Sleep(time.Second * 2)
  23. res, err := s.LogLogin(context.TODO(), 110001260)
  24. So(err, ShouldBeNil)
  25. So(res, ShouldNotBeEmpty)
  26. })
  27. })
  28. }
  29. func TestService_LogCoin(t *testing.T) {
  30. Convey("get settingsInfo info", t, func() {
  31. Convey("when not timeout", func() {
  32. time.Sleep(time.Second * 2)
  33. res, err := s.LogCoin(context.TODO(), 1)
  34. So(err, ShouldBeNil)
  35. So(res, ShouldNotBeEmpty)
  36. })
  37. })
  38. }
  39. func TestService_LogExp(t *testing.T) {
  40. Convey("get settingsInfo info", t, func() {
  41. Convey("when not timeout", func() {
  42. time.Sleep(time.Second * 2)
  43. res, err := s.LogExp(context.TODO(), 110001260)
  44. So(err, ShouldBeNil)
  45. So(res, ShouldNotBeEmpty)
  46. })
  47. })
  48. }
  49. func TestService_LogMoral(t *testing.T) {
  50. Convey("get settingsInfo info", t, func() {
  51. Convey("when not timeout", func() {
  52. time.Sleep(time.Second * 2)
  53. res, err := s.LogMoral(context.TODO(), 110001260)
  54. So(err, ShouldBeNil)
  55. So(res, ShouldNotBeEmpty)
  56. })
  57. })
  58. }
  59. func TestService_Coin(t *testing.T) {
  60. Convey("get settingsInfo info", t, func() {
  61. Convey("when not timeout", func() {
  62. time.Sleep(time.Second * 2)
  63. res, err := s.Coin(context.TODO(), 1)
  64. So(err, ShouldBeNil)
  65. So(res, ShouldNotBeEmpty)
  66. })
  67. })
  68. }
  69. func TestService_UpdateSettings(t *testing.T) {
  70. Convey("get settingsInfo info", t, func() {
  71. Convey("when not timeout", func() {
  72. time.Sleep(time.Second * 2)
  73. err := s.UpdateSettings(context.TODO(), 110000092, &model.Settings{Uname: "test", Sex: "男"})
  74. So(err, ShouldBeNil)
  75. })
  76. })
  77. }
  78. func TestService_Reward(t *testing.T) {
  79. Convey("reward info", t, func() {
  80. Convey("when not timeout", func() {
  81. time.Sleep(time.Second * 2)
  82. res, err := s.Reward(context.TODO(), 2)
  83. So(err, ShouldBeNil)
  84. So(res, ShouldNotBeEmpty)
  85. })
  86. })
  87. }