mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
b9eec15c01
Signed-off-by: Vishal Rana <vr@labstack.com>
48 lines
1.0 KiB
Go
48 lines
1.0 KiB
Go
package middleware
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/labstack/echo"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
)
|
|
|
|
func TestLogger(t *testing.T) {
|
|
e := echo.New()
|
|
req, _ := http.NewRequest(echo.GET, "/", nil)
|
|
rec := httptest.NewRecorder()
|
|
c := echo.NewContext(req, echo.NewResponse(rec), e)
|
|
|
|
// Status 2xx
|
|
h := func(c *echo.Context) error {
|
|
return c.String(http.StatusOK, "test")
|
|
}
|
|
Logger()(h)(c)
|
|
|
|
// Status 3xx
|
|
rec = httptest.NewRecorder()
|
|
c = echo.NewContext(req, echo.NewResponse(rec), e)
|
|
h = func(c *echo.Context) error {
|
|
return c.String(http.StatusTemporaryRedirect, "test")
|
|
}
|
|
Logger()(h)(c)
|
|
|
|
// Status 4xx
|
|
rec = httptest.NewRecorder()
|
|
c = echo.NewContext(req, echo.NewResponse(rec), e)
|
|
h = func(c *echo.Context) error {
|
|
return c.String(http.StatusNotFound, "test")
|
|
}
|
|
Logger()(h)(c)
|
|
|
|
// Status 5xx with empty path
|
|
req, _ = http.NewRequest(echo.GET, "", nil)
|
|
rec = httptest.NewRecorder()
|
|
c = echo.NewContext(req, echo.NewResponse(rec), e)
|
|
h = func(c *echo.Context) error {
|
|
return errors.New("error")
|
|
}
|
|
Logger()(h)(c)
|
|
}
|