-
Notifications
You must be signed in to change notification settings - Fork 1
/
iter_test.go
89 lines (85 loc) · 1.94 KB
/
iter_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
package ghiter
import (
"reflect"
"testing"
"github.com/google/go-github/v66/github"
)
func Test_updateOptions(t *testing.T) {
tt := []struct {
name string
opts any
queryParams map[string]string
expectedOpts any
}{
{
name: "Simple Opts with ListOptions",
opts: &github.RepositoryListByOrgOptions{},
queryParams: map[string]string{
"page": "1123323",
},
expectedOpts: &github.RepositoryListByOrgOptions{
ListOptions: github.ListOptions{
Page: 1123323,
},
},
},
{
name: "Simple Opts with ListOptions with multiple params",
opts: &github.RepositoryListByOrgOptions{},
queryParams: map[string]string{
"page": "1123323",
"direction": "desc",
},
expectedOpts: &github.RepositoryListByOrgOptions{
Direction: "desc",
ListOptions: github.ListOptions{
Page: 1123323,
},
},
},
{
name: "Opts with Since",
opts: &github.RepositoryListAllOptions{},
queryParams: map[string]string{
"page": "1123323",
"direction": "desc",
"since": "111",
},
expectedOpts: &github.RepositoryListAllOptions{
Since: 111,
},
},
{
name: "Opts with pointers and multiple ListOptions",
opts: &github.ListAlertsOptions{},
queryParams: map[string]string{
"page": "1123323",
"direction": "desc",
"since": "111",
"sort": "",
},
expectedOpts: &github.ListAlertsOptions{
Direction: func() *string {
direction := "desc"
return &direction
}(),
Sort: func() *string {
var sort string
return &sort
}(),
ListOptions: github.ListOptions{
Page: 1123323,
},
ListCursorOptions: github.ListCursorOptions{
Page: "1123323",
},
},
},
}
for _, tc := range tt {
updateOptions(tc.opts, tc.queryParams)
if !reflect.DeepEqual(tc.expectedOpts, tc.opts) {
t.Fatalf("structs are not equal:\nexpected:\t%+v\ngot:\t\t%+v\n", tc.expectedOpts, tc.opts)
}
}
}