mirror of
https://github.com/akvorado/akvorado.git
synced 2025-12-11 22:14:02 +01:00
``` git ls-files \*.js \*.go \ | xargs sed -i '1i // SPDX-FileCopyrightText: 2022 Free Mobile\n// SPDX-License-Identifier: AGPL-3.0-only\n' git ls-files \*.vue \ | xargs sed -i '1i <!-- SPDX-FileCopyrightText: 2022 Free Mobile -->\n<!-- SPDX-License-Identifier: AGPL-3.0-only -->\n' ```
93 lines
2.5 KiB
Go
93 lines
2.5 KiB
Go
// SPDX-FileCopyrightText: 2022 Free Mobile
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
package http_test
|
|
|
|
import (
|
|
"fmt"
|
|
netHTTP "net/http"
|
|
"testing"
|
|
|
|
"akvorado/common/helpers"
|
|
"akvorado/common/http"
|
|
"akvorado/common/reporter"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func TestHandler(t *testing.T) {
|
|
r := reporter.NewMock(t)
|
|
h := http.NewMock(t, r)
|
|
|
|
h.AddHandler("/test",
|
|
netHTTP.HandlerFunc(func(w netHTTP.ResponseWriter, r *netHTTP.Request) {
|
|
fmt.Fprintf(w, "Hello !")
|
|
}))
|
|
|
|
// Check the HTTP server is running and answering metrics
|
|
helpers.TestHTTPEndpoints(t, h.Address, helpers.HTTPEndpointCases{
|
|
{
|
|
URL: "/test",
|
|
ContentType: "text/plain; charset=utf-8",
|
|
FirstLines: []string{"Hello !"},
|
|
},
|
|
})
|
|
|
|
gotMetrics := r.GetMetrics("akvorado_common_http_", "inflight_", "requests_total", "response_size")
|
|
expectedMetrics := map[string]string{
|
|
`inflight_requests`: "0",
|
|
`requests_total{code="200",handler="/test",method="get"}`: "1",
|
|
`response_size_bytes_bucket{handler="/test",method="get",le="+Inf"}`: "1",
|
|
`response_size_bytes_bucket{handler="/test",method="get",le="1000"}`: "1",
|
|
`response_size_bytes_bucket{handler="/test",method="get",le="1500"}`: "1",
|
|
`response_size_bytes_bucket{handler="/test",method="get",le="200"}`: "1",
|
|
`response_size_bytes_bucket{handler="/test",method="get",le="500"}`: "1",
|
|
`response_size_bytes_bucket{handler="/test",method="get",le="5000"}`: "1",
|
|
`response_size_bytes_count{handler="/test",method="get"}`: "1",
|
|
`response_size_bytes_sum{handler="/test",method="get"}`: "7",
|
|
}
|
|
if diff := helpers.Diff(gotMetrics, expectedMetrics); diff != "" {
|
|
t.Fatalf("Metrics (-got, +want):\n%s", diff)
|
|
}
|
|
}
|
|
|
|
func TestGinRouter(t *testing.T) {
|
|
r := reporter.NewMock(t)
|
|
h := http.NewMock(t, r)
|
|
|
|
h.GinRouter.GET("/api/v0/test", func(c *gin.Context) {
|
|
c.JSON(netHTTP.StatusOK, gin.H{
|
|
"message": "ping",
|
|
})
|
|
})
|
|
|
|
helpers.TestHTTPEndpoints(t, h.Address, helpers.HTTPEndpointCases{
|
|
{
|
|
URL: "/api/v0/test",
|
|
ContentType: "application/json; charset=utf-8",
|
|
FirstLines: []string{`{"message":"ping"}`},
|
|
}, {
|
|
URL: "/api/v0/test",
|
|
JSONOutput: gin.H{"message": "ping"},
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestGinRouterPanic(t *testing.T) {
|
|
r := reporter.NewMock(t)
|
|
h := http.NewMock(t, r)
|
|
|
|
h.GinRouter.GET("/api/v0/test", func(c *gin.Context) {
|
|
panic("heeeelp")
|
|
})
|
|
|
|
helpers.TestHTTPEndpoints(t, h.Address, helpers.HTTPEndpointCases{
|
|
{
|
|
URL: "/api/v0/test",
|
|
StatusCode: 500,
|
|
ContentType: "",
|
|
FirstLines: []string{},
|
|
},
|
|
})
|
|
}
|