- Refactored `SyncMonitors` method in `uptime_service.go` for better readability. - Updated unit tests for `UptimeService` to ensure proper functionality. - Introduced Playwright configuration for end-to-end testing. - Added e2e tests for WAF blocking and monitoring functionality. - Enhanced the Security page to include WAF mode and rule set selection. - Implemented tests for WAF configuration changes and validation. - Created a `.last-run.json` file to store test results.
38 lines
853 B
Go
38 lines
853 B
Go
package middleware
|
|
|
|
import (
|
|
"bytes"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/Wikid82/charon/backend/internal/logger"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func TestRequestIDAddsHeaderAndLogger(t *testing.T) {
|
|
buf := &bytes.Buffer{}
|
|
logger.Init(true, buf)
|
|
|
|
router := gin.New()
|
|
router.Use(RequestID())
|
|
router.GET("/test", func(c *gin.Context) {
|
|
// Ensure logger exists in context and header is present
|
|
if _, ok := c.Get("logger"); !ok {
|
|
t.Fatalf("expected request-scoped logger in context")
|
|
}
|
|
c.String(200, "ok")
|
|
})
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "/test", nil)
|
|
w := httptest.NewRecorder()
|
|
router.ServeHTTP(w, req)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Fatalf("expected status 200, got %d", w.Code)
|
|
}
|
|
if w.Header().Get(RequestIDHeader) == "" {
|
|
t.Fatalf("expected response to include X-Request-ID header")
|
|
}
|
|
}
|