2015-05-18 07:54:29 +02:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2016-03-14 22:55:38 +02:00
|
|
|
"bytes"
|
2015-05-18 07:54:29 +02:00
|
|
|
"net/http"
|
2016-09-23 07:53:44 +02:00
|
|
|
"net/http/httptest"
|
2015-05-18 07:54:29 +02:00
|
|
|
"testing"
|
2015-05-30 19:54:55 +02:00
|
|
|
|
|
|
|
"github.com/labstack/echo"
|
|
|
|
"github.com/stretchr/testify/assert"
|
2015-05-18 07:54:29 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestRecover(t *testing.T) {
|
|
|
|
e := echo.New()
|
2016-03-14 22:55:38 +02:00
|
|
|
buf := new(bytes.Buffer)
|
2016-09-23 07:53:44 +02:00
|
|
|
e.Logger.SetOutput(buf)
|
2017-02-23 01:57:12 +02:00
|
|
|
req := httptest.NewRequest(echo.GET, "/", nil)
|
2016-09-23 07:53:44 +02:00
|
|
|
rec := httptest.NewRecorder()
|
2016-04-24 19:21:23 +02:00
|
|
|
c := e.NewContext(req, rec)
|
2016-02-18 07:49:31 +02:00
|
|
|
h := Recover()(echo.HandlerFunc(func(c echo.Context) error {
|
2015-05-18 07:54:29 +02:00
|
|
|
panic("test")
|
2016-02-15 18:11:29 +02:00
|
|
|
}))
|
2016-04-02 23:19:39 +02:00
|
|
|
h(c)
|
2016-09-23 07:53:44 +02:00
|
|
|
assert.Equal(t, http.StatusInternalServerError, rec.Code)
|
2016-03-14 22:55:38 +02:00
|
|
|
assert.Contains(t, buf.String(), "PANIC RECOVER")
|
2015-05-18 07:54:29 +02:00
|
|
|
}
|