rpc_test.go 636 B

12345678910111213141516171819202122232425262728293031
  1. package server
  2. import (
  3. "context"
  4. "testing"
  5. artmdl "go-common/app/interface/openplatform/article/model"
  6. artsrv "go-common/app/interface/openplatform/article/rpc/client"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. var (
  10. ctx = context.TODO()
  11. )
  12. func WithRPC(f func(client *artsrv.Service)) func() {
  13. return func() {
  14. client := artsrv.New(nil)
  15. f(client)
  16. }
  17. }
  18. func Test_ArticleRemainCount(t *testing.T) {
  19. Convey("ArticleRemainCount", t, WithRPC(func(client *artsrv.Service) {
  20. arg := &artmdl.ArgMid{Mid: 27515310}
  21. res, err := client.ArticleRemainCount(ctx, arg)
  22. So(err, ShouldBeNil)
  23. t.Logf("count: %d", res)
  24. }))
  25. }