forked from QuantumNous/new-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_pagination_test.go
More file actions
66 lines (56 loc) · 2.14 KB
/
Copy pathuser_pagination_test.go
File metadata and controls
66 lines (56 loc) · 2.14 KB
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
package model
import (
"fmt"
"testing"
"github.com/QuantumNous/new-api/common"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func insertUsersForPaginationTest(t *testing.T, total int) {
t.Helper()
for id := 1; id <= total; id++ {
user := &User{
Id: id,
Username: fmt.Sprintf("user%02d", id),
Password: "password123",
DisplayName: fmt.Sprintf("User %02d", id),
Email: fmt.Sprintf("user%02d@example.com", id),
Role: common.RoleCommonUser,
Status: common.UserStatusEnabled,
Group: "default",
AffCode: fmt.Sprintf("aff%02d", id),
}
require.NoError(t, DB.Create(user).Error)
}
}
func collectUserIDs(users []*User) []int {
ids := make([]int, 0, len(users))
for _, user := range users {
ids = append(ids, user.Id)
}
return ids
}
func TestGetAllUsersSortsBeforePagination(t *testing.T) {
truncateTables(t)
insertUsersForPaginationTest(t, 42)
pageOne, total, err := GetAllUsers(&common.PageInfo{Page: 1, PageSize: 20}, NewUserSortOptions("id", "asc"))
require.NoError(t, err)
assert.Equal(t, int64(42), total)
assert.Equal(t, []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}, collectUserIDs(pageOne))
pageTwo, total, err := GetAllUsers(&common.PageInfo{Page: 2, PageSize: 20}, NewUserSortOptions("id", "asc"))
require.NoError(t, err)
assert.Equal(t, int64(42), total)
assert.Equal(t, []int{21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40}, collectUserIDs(pageTwo))
pageThree, total, err := GetAllUsers(&common.PageInfo{Page: 3, PageSize: 20}, NewUserSortOptions("id", "asc"))
require.NoError(t, err)
assert.Equal(t, int64(42), total)
assert.Equal(t, []int{41, 42}, collectUserIDs(pageThree))
}
func TestSearchUsersSortsBeforePagination(t *testing.T) {
truncateTables(t)
insertUsersForPaginationTest(t, 42)
users, total, err := SearchUsers("user", "", nil, nil, 20, 20, NewUserSortOptions("id", "asc"))
require.NoError(t, err)
assert.Equal(t, int64(42), total)
assert.Equal(t, []int{21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40}, collectUserIDs(users))
}