live_test.go 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. package live
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "strings"
  7. "testing"
  8. "time"
  9. "go-common/app/interface/main/app-show/conf"
  10. . "github.com/smartystreets/goconvey/convey"
  11. gock "gopkg.in/h2non/gock.v1"
  12. )
  13. var (
  14. d *Dao
  15. )
  16. func ctx() context.Context {
  17. return context.Background()
  18. }
  19. func init() {
  20. if os.Getenv("DEPLOY_ENV") != "" {
  21. flag.Set("app_id", "main.app-svr.app-show")
  22. flag.Set("conf_token", "Pae4IDOeht4cHXCdOkay7sKeQwHxKOLA")
  23. flag.Set("tree_id", "2687")
  24. flag.Set("conf_version", "docker-1")
  25. flag.Set("deploy_env", "uat")
  26. flag.Set("conf_host", "config.bilibili.co")
  27. flag.Set("conf_path", "/tmp")
  28. flag.Set("region", "sh")
  29. flag.Set("zone", "sh001")
  30. }
  31. flag.Parse()
  32. if err := conf.Init(); err != nil {
  33. panic(err)
  34. }
  35. d = New(conf.Conf)
  36. time.Sleep(time.Second)
  37. }
  38. func httpMock(method, url string) *gock.Request {
  39. r := gock.New(url)
  40. r.Method = strings.ToUpper(method)
  41. return r
  42. }
  43. func TestFeed(t *testing.T) {
  44. Convey("Feed", t, func() {
  45. d.client.SetTransport(gock.DefaultTransport)
  46. httpMock("GET", d.live).Reply(200).JSON(`{"code":0,"count":1,"lives":[{"owner":{"face":"xxx","mid":1,"name":"xxxx"}}]}`)
  47. res, err := d.Feed(ctx(), 1, "", "", time.Now())
  48. So(res, ShouldNotBeEmpty)
  49. So(err, ShouldBeNil)
  50. })
  51. }
  52. func TestRecommend(t *testing.T) {
  53. Convey("Recommend", t, func() {
  54. d.clientAsyn.SetTransport(gock.DefaultTransport)
  55. httpMock("GET", d.rec).Reply(200).JSON(`{
  56. "code": 0,
  57. "data": {
  58. "count": 1,
  59. "lives": {
  60. "subject": [{
  61. "owner": {
  62. "face": "xxx",
  63. "mid": 1,
  64. "name": "xxxx"
  65. }
  66. }],
  67. "hot": [{
  68. "owner": {
  69. "face": "xxx",
  70. "mid": 1,
  71. "name": "xxxx"
  72. }
  73. }]
  74. }
  75. }
  76. }`)
  77. res, err := d.Recommend(time.Now())
  78. So(res, ShouldNotBeEmpty)
  79. So(err, ShouldBeNil)
  80. })
  81. }
  82. func TestTopicHots(t *testing.T) {
  83. Convey("TopicHots", t, func() {
  84. d.clientAsyn.SetTransport(gock.DefaultTransport)
  85. httpMock("GET", d.topic).Reply(200).JSON(`{
  86. "code": 0,
  87. "data": {
  88. "list": [{
  89. "topic_id": 7279615,
  90. "topic_name": "CP23",
  91. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/b46cda4c7e953764c0fcda49c0f06639e7092792.jpg\",\"image_width\":800,\"image_height\":500}"
  92. }, {
  93. "topic_id": 9029281,
  94. "topic_name": "2018COS总结",
  95. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6e703453de103b5b5b9e00640ff9e9d9156950e6.jpg\",\"image_width\":800,\"image_height\":500}"
  96. }, {
  97. "topic_id": 2838293,
  98. "topic_name": "陪你过冬天",
  99. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/716e12155e1f2150418c9f215de6bb3c9b38f516.png\",\"image_width\":800,\"image_height\":500}"
  100. }, {
  101. "topic_id": 2525230,
  102. "topic_name": "故事王StoryMan",
  103. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/5adb6388723c321d99c5b04fe9839cdaacf6da0d.jpg\",\"image_width\":800,\"image_height\":500}"
  104. }, {
  105. "topic_id": 8977836,
  106. "topic_name": "萌宠暖宝宝",
  107. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/adba2d41863e5bf1d269cdf2d4803fac099f8288.jpg\",\"image_width\":800,\"image_height\":500}"
  108. }, {
  109. "topic_id": 105286,
  110. "topic_name": "国家宝藏",
  111. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/9650de6e22d0742b63db0feac5bd891faf050b54.png\",\"image_width\":800,\"image_height\":500}"
  112. }, {
  113. "topic_id": 8948501,
  114. "topic_name": "2018绘画总结",
  115. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/94c6edd82202ffdfa62c91d0d9d62dcb5b40a0b8.png\",\"image_width\":800,\"image_height\":500}"
  116. }, {
  117. "topic_id": 8977910,
  118. "topic_name": "冬天喝奶茶",
  119. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/c0f2533e71732eb700a6ec5a37b633fd5ae707f3.png\",\"image_width\":800,\"image_height\":500}"
  120. }, {
  121. "topic_id": 2872407,
  122. "topic_name": "冬日必备",
  123. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/54e1efc022377e209ef98a680f1fb7777e242ca4.png\",\"image_width\":800,\"image_height\":500}"
  124. }, {
  125. "topic_id": 2953953,
  126. "topic_name": "冬日穿搭",
  127. "picture": "{\"image_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6522e801f6882c171622a47eb3087d50af42fe7b.jpg\",\"image_width\":800,\"image_height\":500}"
  128. }]
  129. }
  130. }`)
  131. res, err := d.TopicHots(ctx())
  132. So(res, ShouldNotBeEmpty)
  133. So(err, ShouldBeNil)
  134. })
  135. }
  136. func TestDynamicHot(t *testing.T) {
  137. Convey("DynamicHot", t, func() {
  138. d.clientAsyn.SetTransport(gock.DefaultTransport)
  139. httpMock("GET", d.dynamichot).Reply(200).JSON(`{
  140. "code": 0,
  141. "data": {
  142. "list": [{
  143. "dynamic_id": 198340924012294846,
  144. "audit_status": 0,
  145. "delete_status": 0,
  146. "mid": 440290,
  147. "nick_name": "音乐鱼",
  148. "face_img": "http://i2.hdslb.com/bfs/face/d5e81352871fbe33e7c1aed68ad237c1e0588db3.jpg",
  149. "rid_type": 2,
  150. "rid": 10362627,
  151. "view_count": 5641,
  152. "comment_count": 10,
  153. "rcmd_reason": "",
  154. "dynamic_text": "#CP23##COSPLAY#这两天腿和腰都要断了,光顾着逛没怎么拍 ,但还是满足了😂昨晚上还吃了老上海味道,现在急需一顿火锅!",
  155. "img_count": 9,
  156. "imgs": ["https://i0.hdslb.com/bfs/album/615e9efe438a78f25b4ee399fec1e168eaac8c6e.jpg", "https://i0.hdslb.com/bfs/album/1a31a0e93c383183b7b7b02e777248689cac1368.jpg", "https://i0.hdslb.com/bfs/album/270f4b3f84337fa8d2755cff46f7aef6d6f633de.jpg", "https://i0.hdslb.com/bfs/album/25e2fc36946d3f40e242c7619898e2ad5564fd1c.jpg", "https://i0.hdslb.com/bfs/album/2897ee217c455502cde345666ea66086d9f16fc3.jpg", "https://i0.hdslb.com/bfs/album/7c5948d362e17a5118c9cdf095d04c193e50de37.jpg", "https://i0.hdslb.com/bfs/album/473d201e4756fca5b38bc0b535a1086db44d2173.jpg", "https://i0.hdslb.com/bfs/album/91fc858bba009c338d4e1a13ba1953378bd19b15.jpg", "https://i0.hdslb.com/bfs/album/d34307d2e9006847b7e974351ed89c0fe3ad282a.jpg"]
  157. }]
  158. }
  159. }`)
  160. res, err := d.DynamicHot(ctx())
  161. So(res, ShouldNotBeEmpty)
  162. So(err, ShouldBeNil)
  163. })
  164. }