mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
41 lines
904 B
Go
41 lines
904 B
Go
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"io/ioutil"
|
||
|
"net/http"
|
||
|
"net/http/httptest"
|
||
|
"strings"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/labstack/echo"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestBodyDump(t *testing.T) {
|
||
|
e := echo.New()
|
||
|
hw := "Hello, World!"
|
||
|
req := httptest.NewRequest(echo.POST, "/", strings.NewReader(hw))
|
||
|
rec := httptest.NewRecorder()
|
||
|
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))
|
||
|
}
|
||
|
|
||
|
requestBody := ""
|
||
|
responseBody := ""
|
||
|
mw := BodyDump(func(c echo.Context, reqBody, resBody []byte) {
|
||
|
requestBody = string(reqBody)
|
||
|
responseBody = string(resBody)
|
||
|
})
|
||
|
if assert.NoError(t, mw(h)(c)) {
|
||
|
assert.Equal(t, requestBody, hw)
|
||
|
assert.Equal(t, responseBody, hw)
|
||
|
assert.Equal(t, http.StatusOK, rec.Code)
|
||
|
assert.Equal(t, hw, rec.Body.String())
|
||
|
}
|
||
|
}
|