relation_test.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package relation
  2. import (
  3. "context"
  4. "sync"
  5. "testing"
  6. "go-common/app/interface/main/account/conf"
  7. mrl "go-common/app/service/main/relation/model"
  8. "go-common/library/log"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. once sync.Once
  13. //ip = "127.0.0.1"
  14. s *Service
  15. )
  16. func startService() {
  17. if err := conf.Init(); err != nil {
  18. panic(err)
  19. }
  20. log.Init(conf.Conf.Xlog)
  21. defer log.Close()
  22. s = New(conf.Conf)
  23. }
  24. func TestRelation(t *testing.T) {
  25. once.Do(startService)
  26. Convey("relation", t, func() {
  27. testBlacks(t)
  28. testFollowers(t)
  29. testFollowings(t)
  30. testRelation(t)
  31. testRelations(t)
  32. testStat(t)
  33. testWhispers(t)
  34. })
  35. }
  36. func testBlacks(t *testing.T) {
  37. res, _, total, err := s.Blacks(context.TODO(), 18552813, 0, 1, 100)
  38. if err != nil {
  39. t.Errorf("s.Black err(%v)", err)
  40. }
  41. t.Logf("black %v, total:%v", res, total)
  42. }
  43. func testRelation(t *testing.T) {
  44. res, err := s.Relation(context.TODO(), 500, 100)
  45. if err != nil {
  46. t.Errorf("s.Relation err(%v)", err)
  47. return
  48. }
  49. t.Logf("Relation res(%v)", res)
  50. }
  51. func testRelations(t *testing.T) {
  52. res, err := s.Relations(context.TODO(), 500, []int64{100, 200})
  53. if err != nil {
  54. t.Errorf("s.Relations err(%v)", err)
  55. return
  56. }
  57. t.Logf("Relations res(%v)", res)
  58. }
  59. func testWhispers(t *testing.T) {
  60. res, _, err := s.Whispers(context.TODO(), 500, 1, 100, 0)
  61. if err != nil {
  62. t.Errorf("s.Whispers err(%v)", err)
  63. return
  64. }
  65. t.Logf("Whispers res(%v)", res)
  66. }
  67. func testFollowers(t *testing.T) {
  68. res, _, _, err := s.Followers(context.TODO(), 500, 1, 10, 1, 0)
  69. if err != nil {
  70. t.Errorf("s.Followers err(%v)", err)
  71. return
  72. }
  73. t.Logf("Followers res(%v)", res)
  74. }
  75. func testFollowings(t *testing.T) {
  76. res, _, _, err := s.Followings(context.TODO(), 500, 1, 10, 1, 0, "asc")
  77. if err != nil {
  78. t.Errorf("s.Followings err(%v)", err)
  79. return
  80. }
  81. t.Logf("Followings res(%v)", res)
  82. }
  83. func testStat(t *testing.T) {
  84. res, err := s.Stat(context.TODO(), 500, true)
  85. if err != nil {
  86. t.Errorf("s.Stat err(%v)", err)
  87. return
  88. }
  89. t.Logf("Stat self res(%+v)", res)
  90. res, err = s.Stat(context.TODO(), 500, false)
  91. if err != nil {
  92. t.Errorf("s.Stat err(%v)", err)
  93. return
  94. }
  95. t.Logf("Stat res(%+v)", res)
  96. }
  97. func TestUnread(t *testing.T) {
  98. Convey("Unread", t, func() {
  99. _, err := s.Unread(context.TODO(), 1, false)
  100. So(err, ShouldBeNil)
  101. })
  102. }
  103. func TestUnreadCount(t *testing.T) {
  104. Convey("UnreadCount", t, func() {
  105. _, err := s.UnreadCount(context.TODO(), 1, false)
  106. So(err, ShouldBeNil)
  107. })
  108. }
  109. func TestSpecial(t *testing.T) {
  110. Convey("Special", t, func() {
  111. _, err := s.Special(context.TODO(), 1)
  112. So(err, ShouldBeNil)
  113. })
  114. }
  115. func TestDelSpecial(t *testing.T) {
  116. Convey("DelSpecial", t, func() {
  117. err := s.DelSpecial(context.TODO(), &mrl.ArgFollowing{Mid: 1})
  118. So(err, ShouldBeNil)
  119. })
  120. }
  121. func TestAddSpecial(t *testing.T) {
  122. Convey("AddSpecial", t, func() {
  123. err := s.AddSpecial(context.TODO(), &mrl.ArgFollowing{Mid: 1})
  124. So(err, ShouldBeNil)
  125. })
  126. }
  127. func TestClosePrompt(t *testing.T) {
  128. Convey("ClosePrompt", t, func() {
  129. err := s.ClosePrompt(context.TODO(), &mrl.ArgPrompt{Mid: 1})
  130. So(err, ShouldBeNil)
  131. })
  132. }
  133. func TestPrompt(t *testing.T) {
  134. Convey("Prompt", t, func() {
  135. _, err := s.Prompt(context.TODO(), &mrl.ArgPrompt{Mid: 1})
  136. So(err, ShouldBeNil)
  137. })
  138. }
  139. func TestTagsMoveUsers(t *testing.T) {
  140. Convey("TagsMoveUsers", t, func() {
  141. err := s.TagsMoveUsers(context.TODO(), 1, 1, "", "")
  142. So(err, ShouldBeNil)
  143. })
  144. }
  145. func TestTagsCopyUsers(t *testing.T) {
  146. Convey("TagsCopyUsers", t, func() {
  147. err := s.TagsCopyUsers(context.TODO(), 1, "", "")
  148. So(err, ShouldBeNil)
  149. })
  150. }