mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
a66162a3d2
Signed-off-by: Vishal Rana <vr@labstack.com>
28 lines
603 B
Go
28 lines
603 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()
|
|
e.SetDebug(true)
|
|
buf := new(bytes.Buffer)
|
|
e.SetLogOutput(buf)
|
|
rq := test.NewRequest(echo.GET, "/", nil)
|
|
rec := test.NewResponseRecorder()
|
|
c := echo.NewContext(rq, 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, buf.String(), "PANIC RECOVER")
|
|
}
|