recommend_test.go 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. package recommend
  2. import (
  3. "context"
  4. "flag"
  5. "fmt"
  6. "os"
  7. "strings"
  8. "testing"
  9. "time"
  10. "go-common/app/interface/main/app-show/conf"
  11. . "github.com/smartystreets/goconvey/convey"
  12. gock "gopkg.in/h2non/gock.v1"
  13. )
  14. var (
  15. d *Dao
  16. )
  17. func ctx() context.Context {
  18. return context.Background()
  19. }
  20. func init() {
  21. if os.Getenv("DEPLOY_ENV") != "" {
  22. flag.Set("app_id", "main.app-svr.app-show")
  23. flag.Set("conf_token", "Pae4IDOeht4cHXCdOkay7sKeQwHxKOLA")
  24. flag.Set("tree_id", "2687")
  25. flag.Set("conf_version", "docker-1")
  26. flag.Set("deploy_env", "uat")
  27. flag.Set("conf_host", "config.bilibili.co")
  28. flag.Set("conf_path", "/tmp")
  29. flag.Set("region", "sh")
  30. flag.Set("zone", "sh001")
  31. }
  32. flag.Parse()
  33. if err := conf.Init(); err != nil {
  34. panic(err)
  35. }
  36. d = New(conf.Conf)
  37. time.Sleep(time.Second)
  38. }
  39. func httpMock(method, url string) *gock.Request {
  40. r := gock.New(url)
  41. r.Method = strings.ToUpper(method)
  42. return r
  43. }
  44. func TestHots(t *testing.T) {
  45. Convey("Hots", t, func() {
  46. d.clientAsyn.SetTransport(gock.DefaultTransport)
  47. httpMock("GET", d.hotUrl).Reply(200).JSON(`{
  48. "note": false,
  49. "source_date": "2019-01-07",
  50. "code": 0,
  51. "num": 500,
  52. "list": [{
  53. "aid": 39185037,
  54. "score": 176
  55. }, {
  56. "aid": 39658458,
  57. "score": 174
  58. }, {
  59. "aid": 39532823,
  60. "score": 168
  61. }, {
  62. "aid": 39477161,
  63. "score": 168
  64. }, {
  65. "aid": 39852951,
  66. "score": 168
  67. }, {
  68. "aid": 39672060,
  69. "score": 168
  70. }, {
  71. "aid": 39832577,
  72. "score": 168
  73. }, {
  74. "aid": 39987017,
  75. "score": 168
  76. }, {
  77. "aid": 39700424,
  78. "score": 163
  79. }]
  80. }`)
  81. res, err := d.Hots(ctx())
  82. So(res, ShouldNotBeEmpty)
  83. So(err, ShouldBeNil)
  84. })
  85. }
  86. func TestRegion(t *testing.T) {
  87. Convey("Region", t, func() {
  88. d.clientAsyn.SetTransport(gock.DefaultTransport)
  89. api := fmt.Sprintf(d.regionUrl, "33")
  90. httpMock("GET", api).Reply(200).JSON(`{
  91. "code": 0,
  92. "list": [{
  93. "aid": "39911001",
  94. "score": 523
  95. }, {
  96. "aid": "39852951",
  97. "score": 6732
  98. }, {
  99. "aid": "39845334",
  100. "score": 31
  101. }]
  102. }`)
  103. res, err := d.Region(ctx(), "33")
  104. So(res, ShouldNotBeEmpty)
  105. So(err, ShouldBeNil)
  106. })
  107. }
  108. func TestRegionHots(t *testing.T) {
  109. Convey("RegionHots", t, func() {
  110. d.clientAsyn.SetTransport(gock.DefaultTransport)
  111. api := fmt.Sprintf(d.rankRegionAppUrl, 1)
  112. httpMock("GET", api).Reply(200).JSON(`{
  113. "note": "统计3日内新投稿的数据综合得分,每二十分钟更新一次。",
  114. "source_date": "2019-01-07",
  115. "code": 0,
  116. "num": 100,
  117. "list": [{
  118. "aid": 39894949,
  119. "mid": 808171,
  120. "score": 546760
  121. }, {
  122. "aid": 39877679,
  123. "mid": 7487399,
  124. "score": 516724
  125. }]
  126. }`)
  127. res, err := d.RegionHots(ctx(), 1)
  128. So(res, ShouldNotBeEmpty)
  129. So(err, ShouldBeNil)
  130. })
  131. }
  132. func TestRegionList(t *testing.T) {
  133. Convey("RegionList", t, func() {
  134. d.client.SetTransport(gock.DefaultTransport)
  135. httpMock("GET", d.regionListUrl).Reply(200).JSON(`{
  136. "code": 0,
  137. "list": [{
  138. "aid": 39903065
  139. }]
  140. }`)
  141. res, err := d.RegionList(ctx(), 1, 1, 1, 1, 1, "")
  142. So(res, ShouldNotBeEmpty)
  143. So(err, ShouldBeNil)
  144. })
  145. }
  146. func TestRegionChildHots(t *testing.T) {
  147. Convey("RegionChildHots", t, func() {
  148. d.clientAsyn.SetTransport(gock.DefaultTransport)
  149. api := fmt.Sprintf(d.regionChildHotUrl, 1)
  150. httpMock("GET", api).Reply(200).JSON(`{
  151. "code": 0,
  152. "list": [{
  153. "aid": 39903065
  154. }]
  155. }`)
  156. res, err := d.RegionChildHots(ctx(), 1)
  157. So(res, ShouldNotBeEmpty)
  158. So(err, ShouldBeNil)
  159. })
  160. }
  161. func TestRegionArcList(t *testing.T) {
  162. Convey("RegionArcList", t, func() {
  163. d.client.SetTransport(gock.DefaultTransport)
  164. httpMock("GET", d.regionArcListUrl).Reply(200).JSON(`{
  165. "code": 0,
  166. "data": {
  167. "archives": [{
  168. "aid": 39903065
  169. }]
  170. }
  171. }`)
  172. res, err := d.RegionArcList(ctx(), 1, 1, 1, time.Now())
  173. So(res, ShouldNotBeEmpty)
  174. So(err, ShouldBeNil)
  175. })
  176. }
  177. func TestRankRegion(t *testing.T) {
  178. Convey("RankRegion", t, func() {
  179. d.clientAsyn.SetTransport(gock.DefaultTransport)
  180. httpMock("GET", fmt.Sprintf(d.rankRegionUrl, "all", 1)).Reply(200).JSON(`{
  181. "rank": {
  182. "code": 0,
  183. "list": [{
  184. "aid": 39903065
  185. }]
  186. }
  187. }`)
  188. res, err := d.RankRegion(ctx(), 1, "all")
  189. So(res, ShouldNotBeEmpty)
  190. So(err, ShouldBeNil)
  191. })
  192. }
  193. func TestRankAll(t *testing.T) {
  194. Convey("RankAll", t, func() {
  195. d.clientAsyn.SetTransport(gock.DefaultTransport)
  196. httpMock("GET", fmt.Sprintf(d.rankOriginalUrl, "all")).Reply(200).JSON(`{
  197. "rank": {
  198. "code": 0,
  199. "list": [{
  200. "aid": 39903065
  201. }]
  202. }
  203. }`)
  204. res, err := d.RankAll(ctx(), "all")
  205. So(res, ShouldNotBeEmpty)
  206. So(err, ShouldBeNil)
  207. })
  208. }
  209. func TestRankBangumi(t *testing.T) {
  210. Convey("RankBangumi", t, func() {
  211. d.clientAsyn.SetTransport(gock.DefaultTransport)
  212. httpMock("GET", d.rankBangumilUrl).Reply(200).JSON(`{
  213. "rank": {
  214. "code": 0,
  215. "list": [{
  216. "aid": 39903065
  217. }]
  218. }
  219. }`)
  220. res, err := d.RankBangumi(ctx())
  221. So(res, ShouldNotBeEmpty)
  222. So(err, ShouldBeNil)
  223. })
  224. }
  225. func TestFeedDynamic(t *testing.T) {
  226. Convey("FeedDynamic", t, func() {
  227. d.client.SetTransport(gock.DefaultTransport)
  228. httpMock("GET", d.feedDynamicUrl).Reply(200).JSON(`{
  229. "code": 0,
  230. "data": [12587337, 1840325, 38132621, 5910308, 26879875, 26308630, 7348036, 1766719, 6374879, 24937721],
  231. "hot": null,
  232. "ctop": 12587337,
  233. "cbottom": 24937721
  234. }`)
  235. _, newAids, _, _, err := d.FeedDynamic(ctx(), false, 1, 1, 1, 1, time.Now())
  236. So(newAids, ShouldNotBeEmpty)
  237. So(err, ShouldBeNil)
  238. })
  239. }
  240. func TestRankAppRegion(t *testing.T) {
  241. Convey("RankAppRegion", t, func() {
  242. d.client.SetTransport(gock.DefaultTransport)
  243. api := fmt.Sprintf(d.rankRegionAppUrl, 1)
  244. httpMock("GET", api).Reply(200).JSON(`{
  245. "note": "统计3日内新投稿的数据综合得分,每二十分钟更新一次。",
  246. "source_date": "2019-01-07",
  247. "code": 0,
  248. "num": 100,
  249. "list": [{
  250. "aid": 39954334,
  251. "mid": 38125899,
  252. "score": 509800,
  253. "others": [{
  254. "aid": 39903065,
  255. "score": 48222
  256. }]
  257. }, {
  258. "aid": 39953503,
  259. "mid": 3969839,
  260. "score": 430381
  261. }]
  262. }`)
  263. res, _, _, err := d.RankAppRegion(ctx(), 1)
  264. So(res, ShouldNotBeEmpty)
  265. So(err, ShouldBeNil)
  266. })
  267. }
  268. func TestRankAppOrigin(t *testing.T) {
  269. Convey("RankAppOrigin", t, func() {
  270. d.client.SetTransport(gock.DefaultTransport)
  271. httpMock("GET", d.rankOriginAppUrl).Reply(200).JSON(`{
  272. "note": "统计3日内新投稿的数据综合得分,每二十分钟更新一次。",
  273. "source_date": "2019-01-07",
  274. "code": 0,
  275. "num": 100,
  276. "list": [{
  277. "aid": 39954334,
  278. "mid": 38125899,
  279. "score": 509800,
  280. "others": [{
  281. "aid": 39903065,
  282. "score": 48222
  283. }]
  284. }, {
  285. "aid": 39953503,
  286. "mid": 3969839,
  287. "score": 430381
  288. }]
  289. }`)
  290. res, _, _, err := d.RankAppOrigin(ctx())
  291. So(res, ShouldNotBeEmpty)
  292. So(err, ShouldBeNil)
  293. })
  294. }
  295. func TestRankAppAll(t *testing.T) {
  296. Convey("RankAppAll", t, func() {
  297. d.client.SetTransport(gock.DefaultTransport)
  298. httpMock("GET", d.rankAllAppUrl).Reply(200).JSON(`{
  299. "note": "统计3日内新投稿的数据综合得分,每二十分钟更新一次。",
  300. "source_date": "2019-01-07",
  301. "code": 0,
  302. "num": 100,
  303. "list": [{
  304. "aid": 39954334,
  305. "mid": 38125899,
  306. "score": 509800,
  307. "others": [{
  308. "aid": 39903065,
  309. "score": 48222
  310. }]
  311. }, {
  312. "aid": 39953503,
  313. "mid": 3969839,
  314. "score": 430381
  315. }]
  316. }`)
  317. res, _, _, err := d.RankAppAll(ctx())
  318. So(res, ShouldNotBeEmpty)
  319. So(err, ShouldBeNil)
  320. })
  321. }
  322. func TestRankAppBangumi(t *testing.T) {
  323. Convey("RankAppBangumi", t, func() {
  324. d.client.SetTransport(gock.DefaultTransport)
  325. httpMock("GET", d.rankBangumiAppUrl).Reply(200).JSON(`{
  326. "note": "统计3日内新投稿的数据综合得分,每二十分钟更新一次。",
  327. "source_date": "2019-01-07",
  328. "code": 0,
  329. "num": 100,
  330. "list": [{
  331. "aid": 39954334,
  332. "mid": 38125899,
  333. "score": 509800,
  334. "others": [{
  335. "aid": 39903065,
  336. "score": 48222
  337. }]
  338. }, {
  339. "aid": 39953503,
  340. "mid": 3969839,
  341. "score": 430381
  342. }]
  343. }`)
  344. res, _, _, err := d.RankAppBangumi(ctx())
  345. So(res, ShouldNotBeEmpty)
  346. So(err, ShouldBeNil)
  347. })
  348. }
  349. func TestHotTab(t *testing.T) {
  350. Convey("HotTab", t, func() {
  351. d.client.SetTransport(gock.DefaultTransport)
  352. httpMock("GET", d.hottabURL).Reply(200).JSON(`{
  353. "note": false,
  354. "source_date": "2019-01-07",
  355. "code": 0,
  356. "num": 100,
  357. "list": [{
  358. "aid": 40063426,
  359. "mid": 837470,
  360. "score": 764906,
  361. "desc": "很多人分享",
  362. "corner_mark": 0
  363. }, {
  364. "aid": 39425207,
  365. "mid": 4870926,
  366. "score": 690583,
  367. "desc": "百万播放",
  368. "corner_mark": 0
  369. }]
  370. }`)
  371. res, err := d.HotTab(ctx())
  372. So(res, ShouldNotBeEmpty)
  373. So(err, ShouldBeNil)
  374. })
  375. }
  376. func TestHotTenTab(t *testing.T) {
  377. Convey("HotTenTab", t, func() {
  378. d.client.SetTransport(gock.DefaultTransport)
  379. httpMock("GET", fmt.Sprintf(d.hotHetongURL, 1)).Reply(200).JSON(`{
  380. "note": false,
  381. "source_date": "2019-01-07",
  382. "code": 0,
  383. "num": 100,
  384. "list": [{
  385. "aid": 40063426,
  386. "mid": 837470,
  387. "score": 764906,
  388. "desc": "很多人分享",
  389. "corner_mark": 0
  390. }, {
  391. "aid": 39425207,
  392. "mid": 4870926,
  393. "score": 690583,
  394. "desc": "百万播放",
  395. "corner_mark": 0
  396. }]
  397. }`)
  398. res, err := d.HotTenTab(ctx(), 1)
  399. So(res, ShouldNotBeEmpty)
  400. So(err, ShouldBeNil)
  401. })
  402. }
  403. func TestHotHeTongTabCard(t *testing.T) {
  404. Convey("HotHeTongTabCard", t, func() {
  405. d.client.SetTransport(gock.DefaultTransport)
  406. httpMock("GET", fmt.Sprintf(d.hotHeTongtabcardURL, 1)).Reply(200).JSON(`{
  407. "code": 0,
  408. "list": [{
  409. "goto": "av",
  410. "id": 40063426,
  411. "from_type": "recommend",
  412. "desc": "8千分享",
  413. "corner_mark": 0
  414. }, {
  415. "goto": "av",
  416. "id": 39425207,
  417. "from_type": "recommend",
  418. "desc": "百万播放",
  419. "corner_mark": 0
  420. }, {
  421. "goto": "av",
  422. "id": 39920213,
  423. "from_type": "recommend",
  424. "desc": "百万播放",
  425. "corner_mark": 0
  426. }, {
  427. "goto": "av",
  428. "id": 39237975,
  429. "from_type": "recommend",
  430. "desc": "百万播放",
  431. "corner_mark": 0
  432. }]
  433. }`)
  434. res, err := d.HotHeTongTabCard(ctx(), 1)
  435. So(res, ShouldNotBeEmpty)
  436. So(err, ShouldBeNil)
  437. })
  438. }