.examples
.github
alerting
client
config
controller
handler
badge.go
badge_test.go
chart.go
chart_test.go
config.go
config_test.go
cors.go
endpoint_status.go
endpoint_status_test.go
favicon.go
favicon_test.go
gzip.go
handler.go
handler_test.go
spa.go
spa_test.go
util.go
util_test.go
controller.go
controller_test.go
core
docs
jsonpath
metrics
pattern
security
storage
test
util
vendor
watchdog
web
.dockerignore
.gitattributes
.gitignore
Dockerfile
LICENSE
Makefile
README.md
config.yaml
go.mod
go.sum
main.go
68 lines
1.6 KiB
Go
68 lines
1.6 KiB
Go
package handler
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestExtractPageAndPageSizeFromRequest(t *testing.T) {
|
|
type Scenario struct {
|
|
Name string
|
|
Page string
|
|
PageSize string
|
|
ExpectedPage int
|
|
ExpectedPageSize int
|
|
}
|
|
scenarios := []Scenario{
|
|
{
|
|
Page: "1",
|
|
PageSize: "20",
|
|
ExpectedPage: 1,
|
|
ExpectedPageSize: 20,
|
|
},
|
|
{
|
|
Page: "2",
|
|
PageSize: "10",
|
|
ExpectedPage: 2,
|
|
ExpectedPageSize: 10,
|
|
},
|
|
{
|
|
Page: "2",
|
|
PageSize: "10",
|
|
ExpectedPage: 2,
|
|
ExpectedPageSize: 10,
|
|
},
|
|
{
|
|
Page: "1",
|
|
PageSize: "999999",
|
|
ExpectedPage: 1,
|
|
ExpectedPageSize: MaximumPageSize,
|
|
},
|
|
{
|
|
Page: "-1",
|
|
PageSize: "-1",
|
|
ExpectedPage: DefaultPage,
|
|
ExpectedPageSize: DefaultPageSize,
|
|
},
|
|
{
|
|
Page: "invalid",
|
|
PageSize: "invalid",
|
|
ExpectedPage: DefaultPage,
|
|
ExpectedPageSize: DefaultPageSize,
|
|
},
|
|
}
|
|
for _, scenario := range scenarios {
|
|
t.Run("page-"+scenario.Page+"-pageSize-"+scenario.PageSize, func(t *testing.T) {
|
|
request, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/statuses?page=%s&pageSize=%s", scenario.Page, scenario.PageSize), http.NoBody)
|
|
actualPage, actualPageSize := extractPageAndPageSizeFromRequest(request)
|
|
if actualPage != scenario.ExpectedPage {
|
|
t.Errorf("expected %d, got %d", scenario.ExpectedPage, actualPage)
|
|
}
|
|
if actualPageSize != scenario.ExpectedPageSize {
|
|
t.Errorf("expected %d, got %d", scenario.ExpectedPageSize, actualPageSize)
|
|
}
|
|
})
|
|
}
|
|
}
|