subtitle_test.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. package service
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/dm2/model"
  9. account "go-common/app/service/main/account/api"
  10. rpcmodel "go-common/app/service/main/member/model/block"
  11. . "github.com/smartystreets/goconvey/convey"
  12. )
  13. func TestSaveSubtitleDraft(t *testing.T) {
  14. Convey("", t, func() {
  15. var aid int64 = 10098493
  16. var oid int64 = 401
  17. var tp int32 = 1
  18. mid := int64(88888929)
  19. lan := "zh-CN"
  20. body := &model.SubtitleBody{
  21. FontColor: "#FFFFFF",
  22. FontSize: 0.4,
  23. BackgroundAlpha: 0.5,
  24. BackgroundColor: "#9C27B0",
  25. Stroke: "none",
  26. }
  27. items := make([]*model.SubtitleItem, 0, 10)
  28. for i := 0; i < 10; i++ {
  29. items = append(items, &model.SubtitleItem{
  30. From: float64(i * 10),
  31. To: float64(i*10 + 5),
  32. Location: uint8(8),
  33. Content: fmt.Sprintf("test_1133331seg_%d", i+1),
  34. })
  35. }
  36. body.Bodys = items
  37. bs, err := json.Marshal(&body)
  38. if err != nil {
  39. return
  40. }
  41. _, err = svr.SaveSubtitleDraft(context.Background(), aid, oid, tp, mid, lan, true, true, 0, bs)
  42. time.Sleep(time.Second)
  43. t.Logf("err:%v", err)
  44. So(err, ShouldBeNil)
  45. })
  46. }
  47. func TestDelSubtitle(t *testing.T) {
  48. Convey("", t, func() {
  49. var oid int64 = 101
  50. var subtitleID = int64(6)
  51. mid := int64(5)
  52. err := svr.DelSubtitle(context.Background(), oid, subtitleID, mid)
  53. So(err, ShouldBeNil)
  54. })
  55. }
  56. func TestAuditSubtitle(t *testing.T) {
  57. Convey("", t, func() {
  58. var oid int64 = 101
  59. mid := int64(5)
  60. err := svr.AuditSubtitle(context.Background(), oid, 1, mid, true, "")
  61. So(err, ShouldBeNil)
  62. })
  63. }
  64. func TestSubtitleShow(t *testing.T) {
  65. Convey("", t, func() {
  66. var oid int64 = 101
  67. var aid int64 = 10098493
  68. subtitleID := int64(4)
  69. start := time.Now()
  70. res, err := svr.SubtitleShow(context.Background(), aid, oid, subtitleID)
  71. t.Logf("costing:%v", time.Since(start))
  72. So(err, ShouldBeNil)
  73. t.Logf("%+v:", res)
  74. })
  75. }
  76. func TestSubtitleLock(t *testing.T) {
  77. Convey("", t, func() {
  78. var oid int64 = 101
  79. var tp int32 = 1
  80. mid := int64(5)
  81. subtitleID := int64(5)
  82. start := time.Now()
  83. err := svr.SubtitleLock(context.Background(), oid, tp, mid, subtitleID, true)
  84. t.Logf("costing:%v", time.Since(start))
  85. So(err, ShouldBeNil)
  86. })
  87. }
  88. func TestSearchAuthor(t *testing.T) {
  89. Convey("", t, func() {
  90. var mid int64 = 27515615
  91. var status int32
  92. res, err := svr.SearchAuthor(context.Background(), mid, status, 1, 10)
  93. So(err, ShouldBeNil)
  94. So(res, ShouldNotBeEmpty)
  95. t.Logf("page:%+v", res)
  96. t.Logf("err:%v", err)
  97. // for _, rs := range res.Subtitles {
  98. // t.Logf("rs:%+v", rs)
  99. // }
  100. })
  101. }
  102. func TestSearchAssist(t *testing.T) {
  103. Convey("search assist", t, func() {
  104. var mid int64 = 27515615
  105. var status int32
  106. res, err := svr.SearchAssist(context.Background(), 0, 0, 1, mid, status, 1, 50)
  107. So(err, ShouldBeNil)
  108. So(res, ShouldNotBeEmpty)
  109. t.Logf("page:%+v", res)
  110. t.Logf("err:%v", err)
  111. for _, rs := range res.Subtitles {
  112. t.Logf("rs:%+v", rs)
  113. }
  114. })
  115. }
  116. func TestBlack(t *testing.T) {
  117. Convey("", t, func() {
  118. res, err := svr.accountRPC.Blacks3(context.Background(), &account.MidReq{
  119. Mid: 27515266,
  120. })
  121. t.Logf("err:%v", err)
  122. t.Logf("blockINfo:%+v", res)
  123. })
  124. }
  125. func TestBlockInfo(t *testing.T) {
  126. Convey("blokc ", t, func() {
  127. res, err := svr.memberRPC.BlockInfo(context.Background(), &rpcmodel.RPCArgInfo{
  128. MID: 27515256,
  129. })
  130. t.Logf("err:%v", err)
  131. t.Logf("blockINfo:%+v", res)
  132. })
  133. }