match_test.go 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/activity/model/like"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestService_Match(t *testing.T) {
  9. Convey("test service Match", t, WithService(func(s *Service) {
  10. sid := int64(1)
  11. res, err := s.Match(context.Background(), sid)
  12. So(err, ShouldBeNil)
  13. So(len(res), ShouldBeGreaterThan, 0)
  14. }))
  15. }
  16. func TestService_AddGuess(t *testing.T) {
  17. Convey("test service AddGuess", t, WithService(func(s *Service) {
  18. mid := int64(111)
  19. objID := int64(1)
  20. result := int64(2)
  21. stake := int64(3)
  22. lastID, err := s.AddGuess(context.Background(), mid, &like.ParamAddGuess{ObjID: objID, Result: result, Stake: stake})
  23. So(err, ShouldBeNil)
  24. So(lastID, ShouldBeGreaterThan, 0)
  25. }))
  26. }
  27. func TestService_ListGuess(t *testing.T) {
  28. Convey("test service match ListGuess", t, WithService(func(s *Service) {
  29. sid := int64(111)
  30. mid := int64(111)
  31. guess, err := s.ListGuess(context.Background(), sid, mid)
  32. So(err, ShouldBeNil)
  33. So(len(guess), ShouldBeGreaterThan, 0)
  34. }))
  35. }
  36. func TestService_Guess(t *testing.T) {
  37. Convey("test service match Guess", t, WithService(func(s *Service) {
  38. mid := int64(111)
  39. sid := int64(1)
  40. guess, err := s.Guess(context.Background(), mid, &like.ParamSid{Sid: sid})
  41. So(err, ShouldBeNil)
  42. So(guess, ShouldNotBeNil)
  43. }))
  44. }
  45. func TestService_ClearCache(t *testing.T) {
  46. Convey("test service ClearCache", t, WithService(func(s *Service) {
  47. msg := `{"action":"update","table":"act_matchs_object","old":{"name":0},"new":{"id":2,"sid":12,"match_id":2}}`
  48. err := s.ClearCache(context.Background(), msg)
  49. So(err, ShouldBeNil)
  50. }))
  51. }
  52. func TestService_AddFollow(t *testing.T) {
  53. Convey("test service AddFollow", t, WithService(func(s *Service) {
  54. mid := int64(111)
  55. team := []string{"11", "22", "33"}
  56. err := s.AddFollow(context.Background(), mid, team)
  57. So(err, ShouldBeNil)
  58. }))
  59. }
  60. func TestService_Follow(t *testing.T) {
  61. Convey("test service Follow", t, WithService(func(s *Service) {
  62. mid := int64(111)
  63. teams, err := s.Follow(context.Background(), mid)
  64. So(err, ShouldBeNil)
  65. So(len(teams), ShouldBeGreaterThan, 0)
  66. }))
  67. }
  68. func TestService_ObjectsUnStart(t *testing.T) {
  69. Convey("test service ObjectsUnStart", t, WithService(func(s *Service) {
  70. mid := int64(111)
  71. sid := int64(1)
  72. objs, total, err := s.ObjectsUnStart(context.Background(), mid, &like.ParamObject{Sid: sid, Pn: 1, Ps: 4})
  73. So(err, ShouldBeNil)
  74. So(total, ShouldBeGreaterThan, 0)
  75. So(len(objs), ShouldBeGreaterThan, 0)
  76. }))
  77. }