member_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/dm2/model"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDMUpRecent(t *testing.T) {
  9. var (
  10. c = context.TODO()
  11. mid int64 = 123
  12. pn int64 = 1
  13. ps int64 = 10
  14. )
  15. Convey("dm recent", t, func() {
  16. res, err := svr.DMUpRecent(c, mid, pn, ps)
  17. So(err, ShouldBeNil)
  18. So(res, ShouldNotBeEmpty)
  19. })
  20. }
  21. func TestDMUpSearch(t *testing.T) {
  22. p := &model.SearchDMParams{
  23. Type: 1,
  24. Oid: 10131156,
  25. Mids: "",
  26. ProgressFrom: model.CondIntNil,
  27. ProgressTo: model.CondIntNil,
  28. CtimeFrom: "",
  29. CtimeTo: "",
  30. Mode: "",
  31. State: "0,2,6",
  32. Pool: "",
  33. Pn: 1,
  34. Ps: 50,
  35. Order: "ctime",
  36. Sort: "asc",
  37. Keyword: "还吃几个",
  38. }
  39. Convey("test up dm list", t, func() {
  40. res, err := svr.DMUpSearch(context.TODO(), 123, p)
  41. So(err, ShouldBeNil)
  42. So(res, ShouldNotBeNil)
  43. for _, v := range res.Result {
  44. t.Logf("===========\n%+v", v)
  45. }
  46. t.Logf("===========\n%+v", res)
  47. So(res.Result, ShouldNotBeEmpty)
  48. })
  49. }