subtitle_test.go 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package client
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/dm2/model"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestSubtitleGet(t *testing.T) {
  9. var (
  10. cid int64 = 401
  11. aid int64 = 4052462
  12. tp int32 = 1
  13. )
  14. Convey("test mask list", t, func() {
  15. arg := &model.ArgSubtitleGet{Oid: cid, Aid: aid, Type: tp}
  16. res, err := svr.SubtitleGet(context.TODO(), arg)
  17. So(err, ShouldBeNil)
  18. So(res, ShouldNotBeEmpty)
  19. t.Logf("===============%+v", res)
  20. })
  21. }
  22. func TestSubtitleSujectSubmit(t *testing.T) {
  23. Convey("test mask list", t, func() {
  24. arg := &model.ArgSubtitleAllowSubmit{Aid: 4052462, AllowSubmit: true, Lan: "zh-CN"}
  25. err := svr.SubtitleSujectSubmit(context.TODO(), arg)
  26. So(err, ShouldBeNil)
  27. })
  28. }
  29. func TestSubtitleSubjectSubmitGet(t *testing.T) {
  30. Convey("test mask list", t, func() {
  31. arg := &model.ArgArchiveID{Aid: 4052462}
  32. res, err := svr.SubtitleSubjectSubmitGet(context.TODO(), arg)
  33. So(err, ShouldBeNil)
  34. So(res, ShouldNotBeEmpty)
  35. t.Logf("===============%+v", res)
  36. })
  37. }