-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaginator_test.go
113 lines (97 loc) · 1.99 KB
/
paginator_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package paginator
import (
"net/url"
"strconv"
"testing"
)
func TestNew(t *testing.T) {
cases := []struct {
page int
perPage int
wantPage int
wantPerPage int
}{
{1, 10, 1, 10},
{0, 10, 1, 10},
{1, 0, 1, PerPage},
{1, PerPageMax + 1, 1, PerPageMax},
}
for _, c := range cases {
q := generateURLQuery(c.page, c.perPage)
paginator := new(q)
if c.wantPage != paginator.CurrentPage {
t.Errorf("%s: want %v, got %v", t.Name(), c.wantPage, paginator.CurrentPage)
}
if c.wantPerPage != paginator.PerPage {
t.Errorf("%s: want %v, got %v", t.Name(), c.wantPerPage, paginator.PerPage)
}
}
}
func TestLimit(t *testing.T) {
cases := []struct {
page int
perPage int
want int
}{
{1, 10, 10},
{1, 0, PerPage},
{1, -1, PerPage},
{1, PerPageMax + 1, PerPageMax},
}
for _, c := range cases {
q := generateURLQuery(c.page, c.perPage)
paginator := new(q)
if limit := paginator.Limit(); limit != c.want {
t.Errorf("%s: want %v, got %v", t.Name(), c.want, limit)
}
}
}
func TestOffset(t *testing.T) {
cases := []struct {
page int
perPage int
want int
}{
{3, 50, 100},
{3, 100, 200},
{3, 0, PerPage * 2},
{0, 0, 0},
{0, 50, 0},
{2, PerPageMax + 1, PerPageMax},
}
for _, c := range cases {
q := generateURLQuery(c.page, c.perPage)
paginator := new(q)
if offset := paginator.Offset(); offset != c.want {
t.Errorf("%s: want %v, got %v", t.Name(), c.want, offset)
}
}
}
func TestTotalPage(t *testing.T) {
cases := []struct {
total int
limit int
want int
}{
{100, 10, 10},
{101, 10, 11},
{109, 10, 11},
{110, 10, 11},
{0, 10, 0},
{100, 0, 1},
{-100, 10, 0},
{100, -10, 1},
}
for _, c := range cases {
total := TotalPage(c.total, c.limit)
if total != c.want {
t.Errorf("%s: want %v, got %v", t.Name(), c.want, total)
}
}
}
func generateURLQuery(page, perPage int) url.Values {
q := url.Values{}
q.Set("page", strconv.Itoa(page))
q.Set("per_page", strconv.Itoa(perPage))
return q
}