dangbei_test.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package thirdp
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "testing"
  7. "go-common/app/interface/main/tv/model/thirdp"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. func TestDao_GetDBeiCount(t *testing.T) {
  11. Convey("TestDao_GetDBeiCount", t, WithDao(func(d *Dao) {
  12. count, err := d.GetThirdpCnt(ctx, DBeiUGC)
  13. So(err, ShouldBeNil)
  14. So(count, ShouldBeGreaterThan, 0)
  15. fmt.Println(count)
  16. }))
  17. }
  18. func TestDao_SetDBeiCount(t *testing.T) {
  19. Convey("TestDao_SetDBeiCount", t, WithDao(func(d *Dao) {
  20. err := d.SetThirdpCnt(ctx, 6667, DBeiUGC)
  21. So(err, ShouldBeNil)
  22. }))
  23. }
  24. func TestDao_ThirdpCnt(t *testing.T) {
  25. Convey("TestDao_ThirdpCnt", t, WithDao(func(d *Dao) {
  26. cntDBeiPGC, err2 := d.ThirdpCnt(ctx, DBeiPGC)
  27. So(err2, ShouldBeNil)
  28. So(cntDBeiPGC, ShouldBeGreaterThan, 0)
  29. fmt.Println(cntDBeiPGC)
  30. cntDBeiUGC, err := d.ThirdpCnt(ctx, DBeiUGC)
  31. So(err, ShouldBeNil)
  32. So(cntDBeiUGC, ShouldBeGreaterThan, 0)
  33. fmt.Println(cntDBeiUGC)
  34. cntMangoPGC, err3 := d.ThirdpCnt(ctx, MangoPGC)
  35. So(err3, ShouldBeNil)
  36. So(cntMangoPGC, ShouldBeGreaterThan, 0)
  37. fmt.Println(cntMangoPGC)
  38. cntMangoUGC, err4 := d.ThirdpCnt(ctx, MangoUGC)
  39. So(err4, ShouldBeNil)
  40. So(cntMangoUGC, ShouldBeGreaterThan, 0)
  41. fmt.Println(cntMangoUGC)
  42. So(cntDBeiPGC, ShouldBeLessThanOrEqualTo, cntMangoPGC)
  43. So(cntDBeiUGC, ShouldBeLessThanOrEqualTo, cntMangoUGC)
  44. }))
  45. }
  46. func TestDao_ThirdpPages(t *testing.T) {
  47. Convey("TestDao_ThirdpPages", t, WithDao(func(d *Dao) {
  48. typesDBei := []string{
  49. DBeiPGC, DBeiUGC,
  50. }
  51. for _, v := range typesDBei {
  52. fmt.Println("--- ", v, " ---")
  53. req := &thirdp.ReqDBeiPages{
  54. LastID: 255,
  55. Ps: 10,
  56. TypeC: v,
  57. }
  58. sids, myID, err := d.DBeiPages(ctx, req)
  59. So(err, ShouldBeNil)
  60. fmt.Println(sids)
  61. So(myID, ShouldBeGreaterThan, 0)
  62. fmt.Println(myID)
  63. }
  64. typesMango := []string{
  65. MangoPGC, MangoUGC,
  66. }
  67. for _, v := range typesMango {
  68. fmt.Println("--- ", v, " ---")
  69. req := &thirdp.ReqDBeiPages{
  70. LastID: 255,
  71. Ps: 10,
  72. TypeC: v,
  73. }
  74. sids, myID, err := d.MangoPages(ctx, req)
  75. So(err, ShouldBeNil)
  76. str, _ := json.Marshal(sids)
  77. fmt.Println(string(str))
  78. So(myID, ShouldBeGreaterThan, 0)
  79. fmt.Println(myID)
  80. }
  81. }))
  82. }
  83. func TestDao_thirdpOffset(t *testing.T) {
  84. Convey("TestDao_thirdpOffset", t, WithDao(func(d *Dao) {
  85. lastMax, err := d.thirdpOffset(context.Background(), 1, 50, MangoPGC)
  86. So(lastMax, ShouldEqual, 0)
  87. So(err, ShouldBeNil)
  88. types := []string{
  89. DBeiPGC, DBeiUGC, MangoPGC, MangoUGC,
  90. }
  91. for _, v := range types {
  92. lastMaxType, errP := d.thirdpOffset(context.Background(), 2, 50, v)
  93. So(lastMaxType, ShouldBeGreaterThan, 0)
  94. So(errP, ShouldBeNil)
  95. fmt.Println(fmt.Sprintf("[Type - %s] [Max - %d]", v, lastMaxType))
  96. }
  97. }))
  98. }
  99. func TestDao_SetPageID(t *testing.T) {
  100. Convey("TestDao_SetPageID", t, WithDao(func(d *Dao) {
  101. err := d.SetPageID(ctx, &thirdp.ReqPageID{
  102. TypeC: DBeiUGC,
  103. ID: 8088,
  104. Page: 3,
  105. })
  106. So(err, ShouldBeNil)
  107. }))
  108. }
  109. func TestDao_GetPageID(t *testing.T) {
  110. Convey("TestDao_GetPageID", t, WithDao(func(d *Dao) {
  111. biggestID, err := d.getPageID(ctx, 7, DBeiUGC)
  112. So(err, ShouldBeNil)
  113. So(biggestID, ShouldBeGreaterThan, 0)
  114. fmt.Println(biggestID)
  115. }))
  116. }
  117. func TestDao_LoadPageID(t *testing.T) {
  118. Convey("TestDao_LoadPageID", t, WithDao(func(d *Dao) {
  119. types := []string{
  120. DBeiPGC, DBeiUGC, MangoPGC, MangoUGC,
  121. }
  122. for _, v := range types {
  123. req := &thirdp.ReqDBeiPages{
  124. Page: 7,
  125. Ps: 50,
  126. TypeC: v,
  127. }
  128. biggestID, err := d.LoadPageID(ctx, req)
  129. So(err, ShouldBeNil)
  130. So(biggestID, ShouldBeGreaterThan, 0)
  131. fmt.Println("Type: ", v, " Max: ", biggestID)
  132. }
  133. }))
  134. }