reply_test.go 886 B

123456789101112131415161718192021222324252627282930313233343536
  1. package member
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/account/model"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestService_ReplyHistoryList(t *testing.T) {
  9. convey.Convey("ReplyHistoryList", t, func() {
  10. var (
  11. err error
  12. //ip = ""
  13. mid int64 = 88889069
  14. stime = "1500805318"
  15. etime = "1511237870"
  16. order = "like"
  17. sort = "desc"
  18. pn int64 = 1
  19. ps int64 = 100
  20. accessKey = ""
  21. cookie = ""
  22. rhl *model.ReplyHistory
  23. )
  24. if rhl, err = s.ReplyHistoryList(context.TODO(), mid, stime, etime, order, sort, pn, ps, accessKey, cookie); err != nil {
  25. convey.So(err, convey.ShouldBeNil)
  26. t.Logf("err: %v", err)
  27. }
  28. for _, v := range rhl.Records {
  29. t.Logf("title:%s, url:%s, id:%d, type: %d", v.Title, v.URL, v.ID, v.Type)
  30. }
  31. })
  32. }