mirror of
https://github.com/labstack/echo.git
synced 2024-11-28 08:38:39 +02:00
6d9e043284
This reintroduces support for Go modules, as v4. CloseNotifier() is removed as it has been obsoleted, see https://golang.org/doc/go1.11#net/http It was already NOT working (not sending signals) as of 1.11 the functionality was gone, we merely deleted the functions that exposed it. If anyone still relies on it they should migrate to using `c.Request().Context().Done()` instead. Closes #1268, #1255
34 lines
760 B
Go
34 lines
760 B
Go
package middleware
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRequestID(t *testing.T) {
|
|
e := echo.New()
|
|
req := httptest.NewRequest(http.MethodGet, "/", nil)
|
|
rec := httptest.NewRecorder()
|
|
c := e.NewContext(req, rec)
|
|
handler := func(c echo.Context) error {
|
|
return c.String(http.StatusOK, "test")
|
|
}
|
|
|
|
rid := RequestIDWithConfig(RequestIDConfig{})
|
|
h := rid(handler)
|
|
h(c)
|
|
assert.Len(t, rec.Header().Get(echo.HeaderXRequestID), 32)
|
|
|
|
// Custom generator
|
|
rid = RequestIDWithConfig(RequestIDConfig{
|
|
Generator: func() string { return "customGenerator" },
|
|
})
|
|
h = rid(handler)
|
|
h(c)
|
|
assert.Equal(t, rec.Header().Get(echo.HeaderXRequestID), "customGenerator")
|
|
}
|