rpc_test.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package account
  2. import (
  3. "context"
  4. "reflect"
  5. "testing"
  6. relaMdl "go-common/app/service/main/relation/model"
  7. "go-common/app/service/main/relation/rpc/client"
  8. "github.com/bouk/monkey"
  9. . "github.com/smartystreets/goconvey/convey"
  10. accapi "go-common/app/service/main/account/api"
  11. "go-common/library/ecode"
  12. "github.com/golang/mock/gomock"
  13. )
  14. func WithMock(t *testing.T, f func(mock *gomock.Controller)) func() {
  15. return func() {
  16. mockCtrl := gomock.NewController(t)
  17. defer mockCtrl.Finish()
  18. f(mockCtrl)
  19. }
  20. }
  21. func TestAccountProfile(t *testing.T) {
  22. Convey("1", t, WithMock(t, func(mockCtrl *gomock.Controller) {
  23. var (
  24. c = context.Background()
  25. mid = int64(2089809)
  26. ip = "127.0.0.1"
  27. err error
  28. p *accapi.Profile
  29. )
  30. mock := accapi.NewMockAccountClient(mockCtrl)
  31. d.acc = mock
  32. mockReq := &accapi.MidReq{
  33. Mid: mid,
  34. }
  35. mock.EXPECT().Profile3(gomock.Any(), mockReq).Return(nil, ecode.CreativeAccServiceErr)
  36. p, err = d.Profile(c, mid, ip)
  37. So(err, ShouldNotBeNil)
  38. So(p, ShouldBeNil)
  39. }))
  40. }
  41. func TestDao_Cards(t *testing.T) {
  42. var (
  43. c = context.Background()
  44. mid = int64(2089809)
  45. ip = "127.0.0.1"
  46. err error
  47. )
  48. Convey("Cards", t, WithMock(t, func(mockCtrl *gomock.Controller) {
  49. mock := accapi.NewMockAccountClient(mockCtrl)
  50. d.acc = mock
  51. mockReq := &accapi.MidsReq{
  52. Mids: []int64{mid},
  53. }
  54. res := &accapi.CardsReply{}
  55. mock.EXPECT().Cards3(gomock.Any(), mockReq).Return(res, nil)
  56. _, err = d.Cards(c, []int64{mid}, ip)
  57. So(err, ShouldBeNil)
  58. }))
  59. }
  60. func TestDao_Infos(t *testing.T) {
  61. var (
  62. c = context.Background()
  63. mid = int64(2089809)
  64. ip = "127.0.0.1"
  65. err error
  66. )
  67. Convey("Infos", t, WithMock(t, func(mockCtrl *gomock.Controller) {
  68. mock := accapi.NewMockAccountClient(mockCtrl)
  69. d.acc = mock
  70. mockReq := &accapi.MidsReq{
  71. Mids: []int64{mid},
  72. }
  73. res := &accapi.InfosReply{}
  74. mock.EXPECT().Infos3(gomock.Any(), mockReq).Return(res, nil)
  75. _, err = d.Infos(c, []int64{mid}, ip)
  76. So(err, ShouldBeNil)
  77. }))
  78. }
  79. func TestDao_Relations(t *testing.T) {
  80. var (
  81. c = context.Background()
  82. mid = int64(2089809)
  83. ip = "127.0.0.1"
  84. err error
  85. )
  86. Convey("Relations", t, func(ctx C) {
  87. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.rela), "Relations",
  88. func(_ *relation.Service, _ context.Context, _ *relaMdl.ArgRelations) (res map[int64]*relaMdl.Following, err error) {
  89. res = make(map[int64]*relaMdl.Following)
  90. res[2089809] = &relaMdl.Following{}
  91. return res, nil
  92. })
  93. defer mock.Unpatch()
  94. _, err = d.Relations(c, mid, []int64{mid}, ip)
  95. So(err, ShouldBeNil)
  96. })
  97. }