Adding tests for HasNextPage

This commit is contained in:
gfleury 2020-03-19 19:35:17 -03:00
parent c269de5f9f
commit f399837676
2 changed files with 77 additions and 1 deletions

View File

@ -555,13 +555,14 @@ func NewRawAPIResponse(r *http.Response) (*APIResponse, error) {
// HasNextPage returns if response is paged and has next page and where it does start // HasNextPage returns if response is paged and has next page and where it does start
func HasNextPage(response *APIResponse) (isLastPage bool, nextPageStart int) { func HasNextPage(response *APIResponse) (isLastPage bool, nextPageStart int) {
isLastPage = true
isLastPage, ok := response.Values["isLastPage"].(bool) isLastPage, ok := response.Values["isLastPage"].(bool)
if ok && !isLastPage { if ok && !isLastPage {
floatStart, ok := response.Values["nextPageStart"].(float64) floatStart, ok := response.Values["nextPageStart"].(float64)
if ok { if ok {
nextPageStart = int(floatStart) nextPageStart = int(floatStart)
} }
} else if !ok {
isLastPage = true
} }
return !isLastPage, nextPageStart return !isLastPage, nextPageStart
} }

View File

@ -961,3 +961,78 @@ func TestNewBitbucketAPIResponse(t *testing.T) {
}) })
} }
} }
func TestHasNextPage(t *testing.T) {
type args struct {
r *APIResponse
}
tests := []struct {
name string
args args
want bool
want2 int
}{
{
name: "Empty list",
args: args{
r: &APIResponse{
Values: map[string]interface{}{},
},
},
want: false,
want2: 0,
},
{
name: "Bad response",
args: args{
r: &APIResponse{
Values: map[string]interface{}{"values": "not an array"},
},
},
want: false,
want2: 0,
},
{
name: "Last Page",
args: args{
r: &APIResponse{
Values: map[string]interface{}{
"size": 1,
"limit": 25,
"isLastPage": true,
"values": []interface{}{},
},
},
},
want: false,
want2: 0,
},
{
name: "Hast Last Page",
args: args{
r: &APIResponse{
Values: map[string]interface{}{
"size": 1,
"limit": 25,
"isLastPage": false,
"nextPageStart": float64(1203),
"values": []interface{}{},
},
},
},
want: true,
want2: 1203,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := HasNextPage(tt.args.r)
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewBitbucketAPIResponse() isLastPage = %v, want %v", got, tt.want)
}
if !reflect.DeepEqual(err, tt.want2) {
t.Errorf("NewBitbucketAPIResponse() nextPageStart = %v, want %v", err, tt.want2)
}
})
}
}