mirror of
https://github.com/labstack/echo.git
synced 2024-12-24 20:14:31 +02:00
88f307bedd
Signed-off-by: Vishal Rana <vr@labstack.com>
25 lines
554 B
Go
25 lines
554 B
Go
package middleware
|
|
|
|
import (
|
|
"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()
|
|
e.SetDebug(true)
|
|
req := test.NewRequest(echo.GET, "/", nil)
|
|
rec := test.NewResponseRecorder()
|
|
c := echo.NewContext(req, rec, e)
|
|
h := Recover()(echo.HandlerFunc(func(c echo.Context) error {
|
|
panic("test")
|
|
}))
|
|
h.Handle(c)
|
|
assert.Equal(t, http.StatusInternalServerError, rec.Status())
|
|
assert.Contains(t, rec.Body.String(), "panic recover")
|
|
}
|