archive_test.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package service
  2. import (
  3. "context"
  4. "encoding/json"
  5. "testing"
  6. "go-common/app/interface/main/videoup/model/archive"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func Test_Ping(t *testing.T) {
  10. var (
  11. c = context.Background()
  12. err error
  13. )
  14. Convey("Ping", t, WithService(func(s *Service) {
  15. err = s.Ping(c)
  16. So(err, ShouldBeNil)
  17. }))
  18. }
  19. func Test_Close(t *testing.T) {
  20. Convey("Close", t, WithService(func(s *Service) {
  21. s.Close()
  22. }))
  23. }
  24. func Test_WebAdd(t *testing.T) {
  25. var (
  26. c = context.Background()
  27. err error
  28. MID = int64(27515256)
  29. body = `{"copyright":1,"cover":"","title":"test","tid":130,"tag":"音乐选集","no_reprint":1,"upos":0,"lang":"zh-CN","mission_id":0,"porder":{},"desc":"123","dynamic":"123","videos":[{"desc":"","filename":"g180126072jadys8fuaz74u18hkxwvnf","title":""}]}
  30. `
  31. aid int64
  32. )
  33. var ap = &archive.ArcParam{}
  34. if err = json.Unmarshal([]byte(body), ap); err != nil {
  35. return
  36. }
  37. Convey("webAdd", t, WithService(func(s *Service) {
  38. aid, err = s.WebAdd(c, MID, ap, true)
  39. So(err, ShouldBeNil)
  40. So(aid, ShouldNotBeNil)
  41. }))
  42. }
  43. func Test_WebEdit(t *testing.T) {
  44. var (
  45. c = context.Background()
  46. err error
  47. MID = int64(27515256)
  48. body = `{"copyright":1,"cover":"","title":"test","tid":130,"tag":"音乐选集","no_reprint":1,"upos":0,"lang":"zh-CN","mission_id":0,"porder":{},"desc":"123","dynamic":"123","videos":[{"desc":"","filename":"g180126072jadys8fuaz74u18hkxwvnf","title":""}]}
  49. `
  50. )
  51. var ap = &archive.ArcParam{}
  52. if err = json.Unmarshal([]byte(body), ap); err != nil {
  53. return
  54. }
  55. Convey("webEdit", t, WithService(func(s *Service) {
  56. err = s.WebEdit(c, ap, MID)
  57. So(err, ShouldBeNil)
  58. }))
  59. }