2023-07-09 02:37:41 +02:00
|
|
|
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,
|
|
|
|
},
|
2023-07-09 03:26:53 +02:00
|
|
|
{
|
|
|
|
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,
|
|
|
|
},
|
2023-07-09 02:37:41 +02:00
|
|
|
}
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|