1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-18 16:20:53 +02:00
echo/middleware/body_limit_test.go
Vishal Rana 368f2ab67e Fixed fasthttp Request#SetBody
Signed-off-by: Vishal Rana <vr@labstack.com>
2016-04-30 21:56:35 -07:00

40 lines
935 B
Go

package middleware
import (
"io/ioutil"
"net/http"
"testing"
"bytes"
"github.com/labstack/echo"
"github.com/labstack/echo/test"
"github.com/stretchr/testify/assert"
)
func TestBodyLimit(t *testing.T) {
e := echo.New()
req := test.NewRequest(echo.POST, "/", bytes.NewReader([]byte("Hello, World!")))
rec := test.NewResponseRecorder()
c := e.NewContext(req, rec)
h := func(c echo.Context) error {
body, err := ioutil.ReadAll(c.Request().Body())
if err != nil {
return err
}
return c.String(http.StatusOK, string(body))
}
// Within limit
BodyLimit("2M")(h)(c)
assert.Equal(t, http.StatusOK, rec.Status())
assert.Equal(t, "Hello, World!", rec.Body.String())
// Overlimit
req = test.NewRequest(echo.POST, "/", bytes.NewReader([]byte("Hello, World!")))
rec = test.NewResponseRecorder()
c = e.NewContext(req, rec)
BodyLimit("2B")(h)(c)
assert.Equal(t, http.StatusRequestEntityTooLarge, rec.Status())
}