mirror of
https://github.com/labstack/echo.git
synced 2024-11-28 08:38:39 +02:00
be825e0229
Signed-off-by: Vishal Rana <vr@labstack.com>
27 lines
574 B
Go
27 lines
574 B
Go
package middleware
|
|
|
|
import (
|
|
"bytes"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/labstack/echo"
|
|
"github.com/labstack/echo/test"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRecover(t *testing.T) {
|
|
e := echo.New()
|
|
buf := new(bytes.Buffer)
|
|
e.SetLogOutput(buf)
|
|
req := test.NewRequest(echo.GET, "/", nil)
|
|
rec := test.NewResponseRecorder()
|
|
c := e.NewContext(req, rec)
|
|
h := Recover()(echo.HandlerFunc(func(c echo.Context) error {
|
|
panic("test")
|
|
}))
|
|
h(c)
|
|
assert.Equal(t, http.StatusInternalServerError, rec.Status())
|
|
assert.Contains(t, buf.String(), "PANIC RECOVER")
|
|
}
|