service_test.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package service
  2. import (
  3. "flag"
  4. "go-common/app/interface/main/videoup/conf"
  5. "path/filepath"
  6. "time"
  7. "context"
  8. . "github.com/smartystreets/goconvey/convey"
  9. "go-common/app/interface/main/videoup/model/archive"
  10. "go-common/library/ecode"
  11. "testing"
  12. "unicode/utf8"
  13. )
  14. var (
  15. s *Service
  16. )
  17. func init() {
  18. dir, _ := filepath.Abs("../cmd/videoup.toml")
  19. flag.Set("conf", dir)
  20. conf.Init()
  21. s = New(conf.Conf)
  22. time.Sleep(time.Second)
  23. }
  24. func WithService(f func(s *Service)) func() {
  25. return func() {
  26. Reset(func() {})
  27. f(s)
  28. }
  29. }
  30. func Test_checkAddStaff(t *testing.T) {
  31. var (
  32. c = context.Background()
  33. mid int64 = 222
  34. sf1 = &archive.Staff{
  35. Title: "a",
  36. Mid: 123,
  37. }
  38. sf2 = &archive.Staff{
  39. Title: "ab",
  40. Mid: 124,
  41. }
  42. ap = &archive.ArcParam{
  43. Copyright: archive.CopyrightCopy,
  44. Staffs: []*archive.Staff{sf1, sf2},
  45. }
  46. err error
  47. )
  48. Convey("checkAddStaff", t, WithService(func(s *Service) {
  49. err = s.checkAddStaff(c, ap, mid, "")
  50. So(err, ShouldEqual, ecode.VideoupStaffCopyright)
  51. }))
  52. }
  53. func Test_getStaffChanges(t *testing.T) {
  54. var (
  55. sf1 = &archive.Staff{
  56. Title: "a",
  57. Mid: 123,
  58. }
  59. sf2 = &archive.Staff{
  60. Title: "ab",
  61. Mid: 124,
  62. }
  63. sf3 = &archive.Staff{
  64. Title: "abv",
  65. Mid: 124,
  66. }
  67. os = []*archive.Staff{sf1, sf2}
  68. ns = []*archive.Staff{sf1, sf3}
  69. )
  70. Convey("checkAddStaff", t, WithService(func(s *Service) {
  71. changes, _ := s.getStaffChanges(os, ns)
  72. So(changes, ShouldNotBeNil)
  73. }))
  74. }
  75. func Test_CheckStaffReg(t *testing.T) {
  76. var err error
  77. v := &archive.Staff{
  78. Title: "配音",
  79. Mid: 123,
  80. }
  81. Convey("CheckStaffReg", t, WithService(func(s *Service) {
  82. tl := utf8.RuneCountInString(v.Title)
  83. if tl > 4 || tl == 0 {
  84. err = ecode.VideoupStaffTitleLength
  85. }
  86. if !_staffNameReg.MatchString(v.Title) {
  87. err = ecode.VideoupStaffTitleLength
  88. }
  89. So(err, ShouldBeNil)
  90. }))
  91. }