pagination_test.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package util
  2. import (
  3. "fmt"
  4. "math/rand"
  5. "testing"
  6. "time"
  7. )
  8. func TestSimplePage(t *testing.T) {
  9. cases := []struct {
  10. perPage int64
  11. curPage int64
  12. expectedFrom int64
  13. expectedTo int64
  14. }{
  15. {20, 9, 161, 180},
  16. {0, 1, 1, 20},
  17. {0, 0, 1, 20},
  18. {1, 0, 1, 20},
  19. }
  20. for _, c := range cases {
  21. t.Run(fmt.Sprintf("curPage(%d) perPage(%d)", c.curPage, c.perPage), func(t *testing.T) {
  22. p := &Pagination{
  23. CurPage: c.curPage,
  24. PerPage: c.perPage,
  25. }
  26. from, to := p.SimplePage()
  27. if from != c.expectedFrom || to != c.expectedTo {
  28. t.Errorf("cond.SimplePage() = from: %d, to: %d, want: %d, %d", from, to, c.expectedFrom, c.expectedTo)
  29. }
  30. })
  31. }
  32. }
  33. func TestPage(t *testing.T) {
  34. cases := []struct {
  35. total int64
  36. perPage int64
  37. curPage int64
  38. expectedFrom int64
  39. expectedTo int64
  40. }{
  41. {66269, 20, 3314, 66261, 66269},
  42. {66269, 20, 3313, 66241, 66260},
  43. {81, 20, 9, 0, 0},
  44. {100, 0, 1, 1, 20},
  45. {1, 20, 1, 1, 1},
  46. {0, 20, 1, 0, 0},
  47. {5, 20, 1, 1, 5},
  48. {211, 20, 3, 41, 60},
  49. {100, 100, 1, 1, 100},
  50. {101, 20, 6, 101, 101},
  51. {211, 20, 2, 21, 40},
  52. {211, 20, 1, 1, 20},
  53. }
  54. for _, c := range cases {
  55. t.Run(fmt.Sprintf("total(%d) curPage(%d) perPage(%d)", c.total, c.curPage, c.perPage), func(t *testing.T) {
  56. p := &Pagination{
  57. CurPage: c.curPage,
  58. PerPage: c.perPage,
  59. }
  60. from, to := p.Page(c.total)
  61. if from != c.expectedFrom || to != c.expectedTo {
  62. t.Errorf("cond.Page(%d) = from: %d, to: %d, want: %d, %d", c.total, from, to, c.expectedFrom, c.expectedTo)
  63. }
  64. })
  65. }
  66. }
  67. func TestOffsetLimit(t *testing.T) {
  68. cases := []struct {
  69. total int64
  70. perpage int64
  71. curpage int64
  72. expectedoffset int64
  73. expectedlimit int64
  74. }{
  75. {66269, 20, 3314, 66260, 9},
  76. {66269, 20, 3313, 66240, 20},
  77. {100, 0, 1, 0, 20},
  78. {1, 20, 1, 0, 1},
  79. {0, 20, 1, 0, 0},
  80. {5, 20, 1, 0, 5},
  81. {211, 20, 3, 40, 20},
  82. {100, 100, 1, 0, 100},
  83. {101, 20, 6, 100, 1},
  84. {211, 20, 2, 20, 20},
  85. {211, 20, 1, 0, 20},
  86. }
  87. for _, c := range cases {
  88. t.Run(fmt.Sprintf("total(%d) curpage(%d) perpage(%d)", c.total, c.curpage, c.perpage), func(t *testing.T) {
  89. p := &Pagination{
  90. CurPage: c.curpage,
  91. PerPage: c.perpage,
  92. }
  93. offset, limit := p.OffsetLimit(c.total)
  94. if offset != c.expectedoffset || limit != c.expectedlimit {
  95. t.Errorf("cond.offsetlimit(%d) = offset: %d, limit: %d, want %d, %d", c.total, offset, limit, c.expectedoffset, c.expectedlimit)
  96. }
  97. })
  98. }
  99. }
  100. func TestBulkPage(t *testing.T) {
  101. p := &Pagination{}
  102. rand.Seed(time.Now().Unix())
  103. for i := 0; i < 9999; i++ {
  104. p.CurPage = rand.Int63n(10000)
  105. p.PerPage = rand.Int63n(300)
  106. total := rand.Int63n(20000)
  107. from, to := p.Page(total)
  108. if from < 0 || to < 0 {
  109. t.Fatalf(`Bulk test page fail, got negative result,
  110. total: %d, curPage: %d, perPage: %d, from: %d, to: %d`, total, p.CurPage, p.PerPage, from, to)
  111. }
  112. }
  113. }