-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathiterator_test.go
58 lines (45 loc) · 1.21 KB
/
iterator_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
package zendesk
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
)
// Test for NewPaginationOptions function
func TestNewPaginationOptions(t *testing.T) {
opts := NewPaginationOptions()
assert.Equal(t, 100, opts.PageSize)
assert.Equal(t, true, opts.IsCBP)
}
// Test for HasMore function
func TestHasMore(t *testing.T) {
iter := &Iterator[int]{
hasMore: true,
}
result := iter.HasMore()
assert.Equal(t, true, result)
}
// Mock functions for GetNext testing
func mockObpFunc(ctx context.Context, opts *OBPOptions) ([]int, Page, error) {
nextPage := "2"
return []int{1, 2, 3}, Page{NextPage: &nextPage, Count: 3}, nil
}
func mockCbpFunc(ctx context.Context, opts *CBPOptions) ([]int, CursorPaginationMeta, error) {
return []int{1, 2, 3}, CursorPaginationMeta{HasMore: true, AfterCursor: "3"}, nil
}
// Test for GetNext function
func TestGetNext(t *testing.T) {
ctx := context.Background()
iter := &Iterator[int]{
pageSize: 2,
hasMore: true,
isCBP: false,
pageIndex: 1,
ctx: ctx,
obpFunc: mockObpFunc,
cbpFunc: mockCbpFunc,
}
results, err := iter.GetNext()
assert.NoError(t, err)
assert.Equal(t, []int{1, 2, 3}, results)
assert.Equal(t, true, iter.HasMore())
}