app_info_test.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package member
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestService_Account(t *testing.T) {
  9. Convey("get account info", t, func() {
  10. Convey("when not timeout", func() {
  11. time.Sleep(time.Second * 2)
  12. res, err := s.Account(context.TODO(), 1, "127.0.0.1")
  13. So(err, ShouldBeNil)
  14. So(res, ShouldNotBeNil)
  15. })
  16. })
  17. }
  18. func TestService_UpdateUname(t *testing.T) {
  19. Convey("update uname", t, func() {
  20. Convey("when not timeout", func() {
  21. time.Sleep(time.Second * 2)
  22. err := s.UpdateName(context.TODO(), 110001353, "127.0.0.1", "127.0.0.1")
  23. So(err, ShouldBeNil)
  24. })
  25. })
  26. }
  27. func TestService_NickFree(t *testing.T) {
  28. Convey("update uname", t, func() {
  29. Convey("when not timeout", func() {
  30. time.Sleep(time.Second * 2)
  31. nick, err := s.NickFree(context.TODO(), 110001353)
  32. So(err, ShouldBeNil)
  33. So(nick, ShouldNotBeEmpty)
  34. })
  35. })
  36. }
  37. func TestService_UpdateSign(t *testing.T) {
  38. Convey("update sign", t, func() {
  39. Convey("when not timeout", func() {
  40. err := s.UpdateSign(context.TODO(), 61, "1989-09-19")
  41. So(err, ShouldBeNil)
  42. })
  43. })
  44. }
  45. func TestService_UpdateSex(t *testing.T) {
  46. Convey("update sex", t, func() {
  47. Convey("when not timeout", func() {
  48. err := s.UpdateSex(context.TODO(), 110001353, 1)
  49. So(err, ShouldBeNil)
  50. })
  51. })
  52. }
  53. func TestService_UpdateBirthday(t *testing.T) {
  54. Convey("update sex", t, func() {
  55. Convey("when not timeout", func() {
  56. err := s.UpdateBirthday(context.TODO(), 61, "1989-09-19")
  57. So(err, ShouldBeNil)
  58. })
  59. })
  60. }