transcode_test.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package audit
  2. import (
  3. "fmt"
  4. "testing"
  5. "time"
  6. "go-common/library/database/sql"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func getCID(db *sql.DB, isPGC bool, double bool) (cid int64, err error) {
  10. var query string
  11. if isPGC {
  12. if double {
  13. query = "SELECT cid FROM tv_content WHERE is_deleted = 0 GROUP BY cid HAVING COUNT(1) >1 LIMIT 1"
  14. } else {
  15. query = "SELECT cid FROM tv_content WHERE is_deleted = 0 LIMIT 1"
  16. }
  17. } else {
  18. if double {
  19. query = "SELECT cid FROM ugc_video WHERE deleted = 0 GROUP BY cid HAVING COUNT(1) > 1 LIMIT 1"
  20. } else {
  21. query = "SELECT cid FROM ugc_video WHERE deleted = 0 LIMIT 1"
  22. }
  23. }
  24. if err = db.QueryRow(ctx, query).Scan(&cid); err != nil {
  25. fmt.Println("No Ready Video : ", err)
  26. return
  27. }
  28. fmt.Println("pick CID ", cid)
  29. return
  30. }
  31. func tryDouble(isPGC bool) (cid int64, err error) {
  32. var errDouble error
  33. if cid, errDouble = getCID(d.db, isPGC, true); errDouble != nil {
  34. fmt.Println("Double Err ", errDouble, " Will Use Single")
  35. if cid, err = getCID(d.db, isPGC, false); err != nil {
  36. fmt.Println("Single Err ", err, " Will Fail")
  37. return
  38. }
  39. }
  40. return
  41. }
  42. func TestDao_UgcCID(t *testing.T) {
  43. Convey("TestDao_UgcCID", t, WithDao(func(d *Dao) {
  44. cid, errTry := tryDouble(false)
  45. if errTry != nil {
  46. fmt.Println("No Cid Ready")
  47. return
  48. }
  49. cont, err := d.UgcCID(ctx, cid)
  50. So(err, ShouldBeNil)
  51. So(len(cont), ShouldBeGreaterThan, 0)
  52. fmt.Println(cont)
  53. }))
  54. }
  55. func TestDao_PgcCID(t *testing.T) {
  56. Convey("TestDao_PgcCID", t, WithDao(func(d *Dao) {
  57. cid, errTry := tryDouble(true)
  58. if errTry != nil {
  59. fmt.Println("No Cid Ready")
  60. return
  61. }
  62. cont, err := d.PgcCID(ctx, cid)
  63. So(err, ShouldBeNil)
  64. So(len(cont), ShouldBeGreaterThan, 0)
  65. fmt.Println(cont)
  66. }))
  67. }
  68. func TestDao_UgcTranscode(t *testing.T) {
  69. Convey("TestDao_UgcTranscode", t, WithDao(func(d *Dao) {
  70. cid, errTry := tryDouble(false)
  71. if errTry != nil {
  72. fmt.Println("No Cid Ready")
  73. return
  74. }
  75. cont, _ := d.UgcCID(ctx, cid)
  76. if len(cont) == 0 {
  77. fmt.Println("UgcCid Error!")
  78. return
  79. }
  80. fmt.Println("To Update ", cont)
  81. err := d.UgcTranscode(ctx, cont, 1)
  82. So(err, ShouldBeNil)
  83. }))
  84. }
  85. func TestDao_PgcTranscode(t *testing.T) {
  86. Convey("TestDao_PgcTranscode", t, WithDao(func(d *Dao) {
  87. cid, errTry := tryDouble(true)
  88. if errTry != nil {
  89. fmt.Println("No Cid Ready")
  90. return
  91. }
  92. cont, _ := d.PgcCID(ctx, cid)
  93. if len(cont) == 0 {
  94. fmt.Println("PgcCid Error!")
  95. return
  96. }
  97. fmt.Println("To Update ", cont)
  98. err := d.PgcTranscode(ctx, cont, 1)
  99. So(err, ShouldBeNil)
  100. }))
  101. }
  102. func TestDao_ApplyPGC(t *testing.T) {
  103. Convey("TestDao_ApplyPGC", t, WithDao(func(d *Dao) {
  104. cid, errTry := tryDouble(true)
  105. if errTry != nil {
  106. fmt.Println("No Cid Ready")
  107. return
  108. }
  109. cont, _ := d.PgcCID(ctx, cid)
  110. if len(cont) == 0 {
  111. fmt.Println("PgcCid Error!")
  112. return
  113. }
  114. fmt.Println("To Update ", cont)
  115. err := d.ApplyPGC(ctx, cont, time.Now().Unix())
  116. So(err, ShouldBeNil)
  117. }))
  118. }