2023-07-09 02:37:41 +02:00
|
|
|
package api
|
2021-09-13 00:39:09 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2022-12-06 07:41:09 +01:00
|
|
|
"github.com/TwiN/gatus/v5/config"
|
2024-05-10 04:56:16 +02:00
|
|
|
"github.com/TwiN/gatus/v5/config/endpoint"
|
2022-12-06 07:41:09 +01:00
|
|
|
"github.com/TwiN/gatus/v5/storage/store"
|
|
|
|
"github.com/TwiN/gatus/v5/watchdog"
|
2021-09-13 00:39:09 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestResponseTimeChart(t *testing.T) {
|
2021-10-29 01:35:46 +02:00
|
|
|
defer store.Get().Clear()
|
2021-09-13 00:39:09 +02:00
|
|
|
defer cache.Clear()
|
|
|
|
cfg := &config.Config{
|
|
|
|
Metrics: true,
|
2024-05-10 04:56:16 +02:00
|
|
|
Endpoints: []*endpoint.Endpoint{
|
2021-09-13 00:39:09 +02:00
|
|
|
{
|
|
|
|
Name: "frontend",
|
|
|
|
Group: "core",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "backend",
|
|
|
|
Group: "core",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2024-05-10 04:56:16 +02:00
|
|
|
watchdog.UpdateEndpointStatuses(cfg.Endpoints[0], &endpoint.Result{Success: true, Duration: time.Millisecond, Timestamp: time.Now()})
|
|
|
|
watchdog.UpdateEndpointStatuses(cfg.Endpoints[1], &endpoint.Result{Success: false, Duration: time.Second, Timestamp: time.Now()})
|
2023-07-09 02:37:41 +02:00
|
|
|
api := New(cfg)
|
|
|
|
router := api.Router()
|
2021-09-13 00:39:09 +02:00
|
|
|
type Scenario struct {
|
|
|
|
Name string
|
|
|
|
Path string
|
|
|
|
ExpectedCode int
|
|
|
|
Gzip bool
|
|
|
|
}
|
|
|
|
scenarios := []Scenario{
|
|
|
|
{
|
|
|
|
Name: "chart-response-time-24h",
|
2021-10-23 22:47:12 +02:00
|
|
|
Path: "/api/v1/endpoints/core_backend/response-times/24h/chart.svg",
|
2021-09-13 00:39:09 +02:00
|
|
|
ExpectedCode: http.StatusOK,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "chart-response-time-7d",
|
2021-10-23 22:47:12 +02:00
|
|
|
Path: "/api/v1/endpoints/core_frontend/response-times/7d/chart.svg",
|
2021-09-13 00:39:09 +02:00
|
|
|
ExpectedCode: http.StatusOK,
|
|
|
|
},
|
2024-08-12 04:40:19 +02:00
|
|
|
{
|
|
|
|
Name: "chart-response-time-30d",
|
|
|
|
Path: "/api/v1/endpoints/core_frontend/response-times/30d/chart.svg",
|
|
|
|
ExpectedCode: http.StatusOK,
|
|
|
|
},
|
2021-09-13 00:39:09 +02:00
|
|
|
{
|
|
|
|
Name: "chart-response-time-with-invalid-duration",
|
2021-10-23 22:47:12 +02:00
|
|
|
Path: "/api/v1/endpoints/core_backend/response-times/3d/chart.svg",
|
2021-09-13 00:39:09 +02:00
|
|
|
ExpectedCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "chart-response-time-for-invalid-key",
|
2021-10-23 22:47:12 +02:00
|
|
|
Path: "/api/v1/endpoints/invalid_key/response-times/7d/chart.svg",
|
2021-09-13 00:39:09 +02:00
|
|
|
ExpectedCode: http.StatusNotFound,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, scenario := range scenarios {
|
|
|
|
t.Run(scenario.Name, func(t *testing.T) {
|
2023-07-09 02:37:41 +02:00
|
|
|
request := httptest.NewRequest("GET", scenario.Path, http.NoBody)
|
2021-09-13 00:39:09 +02:00
|
|
|
if scenario.Gzip {
|
|
|
|
request.Header.Set("Accept-Encoding", "gzip")
|
|
|
|
}
|
2023-07-09 02:37:41 +02:00
|
|
|
response, err := router.Test(request)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
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)
|
2021-09-13 00:39:09 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|