.examples
.github
alerting
api
api.go
api_test.go
badge.go
badge_test.go
cache.go
chart.go
chart_test.go
config.go
config_test.go
endpoint_status.go
endpoint_status_test.go
spa.go
spa_test.go
util.go
util_test.go
client
config
controller
core
docs
jsonpath
metrics
pattern
security
storage
test
testdata
util
watchdog
web
.dockerignore
.gitattributes
.gitignore
Dockerfile
LICENSE
Makefile
README.md
config.yaml
go.mod
go.sum
main.go
122 lines
2.9 KiB
Go
122 lines
2.9 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/TwiN/gatus/v5/config"
|
|
"github.com/TwiN/gatus/v5/config/ui"
|
|
"github.com/TwiN/gatus/v5/security"
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func TestNew(t *testing.T) {
|
|
type Scenario struct {
|
|
Name string
|
|
Path string
|
|
ExpectedCode int
|
|
Gzip bool
|
|
WithSecurity bool
|
|
}
|
|
scenarios := []Scenario{
|
|
{
|
|
Name: "health",
|
|
Path: "/health",
|
|
ExpectedCode: fiber.StatusOK,
|
|
},
|
|
{
|
|
Name: "metrics",
|
|
Path: "/metrics",
|
|
ExpectedCode: fiber.StatusOK,
|
|
},
|
|
{
|
|
Name: "favicon.ico",
|
|
Path: "/favicon.ico",
|
|
ExpectedCode: fiber.StatusOK,
|
|
},
|
|
{
|
|
Name: "app.js",
|
|
Path: "/js/app.js",
|
|
ExpectedCode: fiber.StatusOK,
|
|
},
|
|
{
|
|
Name: "app.js-gzipped",
|
|
Path: "/js/app.js",
|
|
ExpectedCode: fiber.StatusOK,
|
|
Gzip: true,
|
|
},
|
|
{
|
|
Name: "chunk-vendors.js",
|
|
Path: "/js/chunk-vendors.js",
|
|
ExpectedCode: fiber.StatusOK,
|
|
},
|
|
{
|
|
Name: "chunk-vendors.js-gzipped",
|
|
Path: "/js/chunk-vendors.js",
|
|
ExpectedCode: fiber.StatusOK,
|
|
Gzip: true,
|
|
},
|
|
{
|
|
Name: "index",
|
|
Path: "/",
|
|
ExpectedCode: fiber.StatusOK,
|
|
},
|
|
{
|
|
Name: "index-html-redirect",
|
|
Path: "/index.html",
|
|
ExpectedCode: fiber.StatusMovedPermanently,
|
|
},
|
|
{
|
|
Name: "index-should-return-200-even-if-not-authenticated",
|
|
Path: "/",
|
|
ExpectedCode: fiber.StatusOK,
|
|
WithSecurity: true,
|
|
},
|
|
{
|
|
Name: "endpoints-should-return-401-if-not-authenticated",
|
|
Path: "/api/v1/endpoints/statuses",
|
|
ExpectedCode: fiber.StatusUnauthorized,
|
|
WithSecurity: true,
|
|
},
|
|
{
|
|
Name: "config-should-return-200-even-if-not-authenticated",
|
|
Path: "/api/v1/config",
|
|
ExpectedCode: fiber.StatusOK,
|
|
WithSecurity: true,
|
|
},
|
|
{
|
|
Name: "config-should-always-return-200",
|
|
Path: "/api/v1/config",
|
|
ExpectedCode: fiber.StatusOK,
|
|
WithSecurity: false,
|
|
},
|
|
}
|
|
for _, scenario := range scenarios {
|
|
t.Run(scenario.Name, func(t *testing.T) {
|
|
cfg := &config.Config{Metrics: true, UI: &ui.Config{}}
|
|
if scenario.WithSecurity {
|
|
cfg.Security = &security.Config{
|
|
Basic: &security.BasicConfig{
|
|
Username: "john.doe",
|
|
PasswordBcryptHashBase64Encoded: "JDJhJDA4JDFoRnpPY1hnaFl1OC9ISlFsa21VS09wOGlPU1ZOTDlHZG1qeTFvb3dIckRBUnlHUmNIRWlT",
|
|
},
|
|
}
|
|
}
|
|
api := New(cfg)
|
|
router := api.Router()
|
|
request := httptest.NewRequest("GET", scenario.Path, http.NoBody)
|
|
if scenario.Gzip {
|
|
request.Header.Set("Accept-Encoding", "gzip")
|
|
}
|
|
response, err := router.Test(request)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if response.StatusCode != scenario.ExpectedCode {
|
|
t.Errorf("%s %s should have returned %d, but returned %d instead", request.Method, request.URL, scenario.ExpectedCode, response.StatusCode)
|
|
}
|
|
})
|
|
}
|
|
}
|