subject_test.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "go-common/app/interface/main/activity/model/like"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestService_SubjectInitialize(t *testing.T) {
  10. Convey("should return without err", t, WithService(func(svf *Service) {
  11. err := svf.SubjectInitialize(context.Background(), 10292)
  12. time.Sleep(time.Second)
  13. So(err, ShouldBeNil)
  14. }))
  15. }
  16. func TestService_SubjectMaxIDInitialize(t *testing.T) {
  17. Convey("should return without err", t, WithService(func(svf *Service) {
  18. err := svf.SubjectMaxIDInitialize(context.Background())
  19. So(err, ShouldBeNil)
  20. }))
  21. }
  22. func TestService_SubjectLikeListInitialize(t *testing.T) {
  23. Convey("should return without err", t, WithService(func(svf *Service) {
  24. err := svf.SubjectLikeListInitialize(context.Background(), 10256)
  25. time.Sleep(time.Second)
  26. So(err, ShouldBeNil)
  27. }))
  28. }
  29. func TestService_LikeActCountInitialize(t *testing.T) {
  30. Convey("should return without err", t, WithService(func(svf *Service) {
  31. err := svf.LikeActCountInitialize(context.Background(), 10256)
  32. time.Sleep(time.Second)
  33. So(err, ShouldBeNil)
  34. }))
  35. }
  36. func TestService_SubjectUp(t *testing.T) {
  37. Convey("should return without err", t, WithService(func(svf *Service) {
  38. err := svf.SubjectUp(context.Background(), 10256)
  39. time.Sleep(time.Second)
  40. So(err, ShouldBeNil)
  41. }))
  42. }
  43. func TestService_ActSubject(t *testing.T) {
  44. Convey("should return without err", t, WithService(func(svf *Service) {
  45. data, err := svf.ActSubject(context.Background(), 10340)
  46. time.Sleep(time.Second)
  47. So(err, ShouldBeNil)
  48. Printf("%+v", data)
  49. }))
  50. }
  51. func TestService_ActProtocol(t *testing.T) {
  52. Convey("should return without err", t, WithService(func(svf *Service) {
  53. data, _ := svf.ActProtocol(context.Background(), &like.ArgActProtocol{Sid: 10274})
  54. time.Sleep(time.Second)
  55. Printf("%+v %+v", data, data.Protocol)
  56. }))
  57. }