invite_test.go 647 B

123456789101112131415161718192021222324252627
  1. package usersuit
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "go-common/library/ecode"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestService_FetchMultiInfo(t *testing.T) {
  10. time.Sleep(time.Second * 2)
  11. Convey("Fetch multi info", t, func() {
  12. mids := []int64{88888970}
  13. Convey("when not timeout", func() {
  14. res, err := s.fetchInfos(context.Background(), mids, "127.0.0.1", time.Second)
  15. So(err, ShouldBeNil)
  16. So(len(res), ShouldEqual, len(mids))
  17. })
  18. Convey("when timeout", func() {
  19. _, err := s.fetchInfos(context.Background(), mids, "127.0.0.1", time.Millisecond)
  20. So(err, ShouldEqual, ecode.Deadline.Error())
  21. })
  22. })
  23. }