2015-05-12 00:43:54 +02:00
|
|
|
package middleware
|
2015-05-20 23:38:51 +02:00
|
|
|
|
|
|
|
import (
|
2015-10-21 22:39:51 +02:00
|
|
|
"bytes"
|
2015-05-31 00:20:36 +02:00
|
|
|
"errors"
|
2015-05-20 23:38:51 +02:00
|
|
|
"net/http"
|
|
|
|
"testing"
|
2015-09-18 01:17:54 +02:00
|
|
|
|
|
|
|
"github.com/labstack/echo"
|
2016-01-29 09:46:11 +02:00
|
|
|
"github.com/labstack/echo/test"
|
2015-10-21 22:39:51 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
2015-05-20 23:38:51 +02:00
|
|
|
)
|
|
|
|
|
2016-02-19 08:50:40 +02:00
|
|
|
func TestLogger(t *testing.T) {
|
2015-09-18 01:17:54 +02:00
|
|
|
// Note: Just for the test coverage, not a real test.
|
2015-05-20 23:38:51 +02:00
|
|
|
e := echo.New()
|
2016-04-24 19:21:23 +02:00
|
|
|
req := test.NewRequest(echo.GET, "/", nil)
|
|
|
|
rec := test.NewResponseRecorder()
|
|
|
|
c := e.NewContext(req, rec)
|
2016-04-02 23:19:39 +02:00
|
|
|
h := Logger()(func(c echo.Context) error {
|
2015-09-18 01:17:54 +02:00
|
|
|
return c.String(http.StatusOK, "test")
|
2016-04-02 23:19:39 +02:00
|
|
|
})
|
2016-02-08 09:02:37 +02:00
|
|
|
|
|
|
|
// Status 2xx
|
2016-04-02 23:19:39 +02:00
|
|
|
h(c)
|
2015-09-18 01:17:54 +02:00
|
|
|
|
2015-05-30 19:54:55 +02:00
|
|
|
// Status 3xx
|
2016-04-24 19:21:23 +02:00
|
|
|
rec = test.NewResponseRecorder()
|
|
|
|
c = e.NewContext(req, rec)
|
2016-04-02 23:19:39 +02:00
|
|
|
h = Logger()(func(c echo.Context) error {
|
2015-05-30 19:54:55 +02:00
|
|
|
return c.String(http.StatusTemporaryRedirect, "test")
|
2016-04-02 23:19:39 +02:00
|
|
|
})
|
|
|
|
h(c)
|
2015-05-30 19:54:55 +02:00
|
|
|
|
2015-05-20 23:38:51 +02:00
|
|
|
// Status 4xx
|
2016-04-24 19:21:23 +02:00
|
|
|
rec = test.NewResponseRecorder()
|
|
|
|
c = e.NewContext(req, rec)
|
2016-04-02 23:19:39 +02:00
|
|
|
h = Logger()(func(c echo.Context) error {
|
2015-05-20 23:38:51 +02:00
|
|
|
return c.String(http.StatusNotFound, "test")
|
2016-04-02 23:19:39 +02:00
|
|
|
})
|
|
|
|
h(c)
|
2015-05-20 23:38:51 +02:00
|
|
|
|
2015-05-30 19:54:55 +02:00
|
|
|
// Status 5xx with empty path
|
2016-04-24 19:21:23 +02:00
|
|
|
req = test.NewRequest(echo.GET, "", nil)
|
|
|
|
rec = test.NewResponseRecorder()
|
|
|
|
c = e.NewContext(req, rec)
|
2016-04-02 23:19:39 +02:00
|
|
|
h = Logger()(func(c echo.Context) error {
|
2015-05-30 19:54:55 +02:00
|
|
|
return errors.New("error")
|
2016-04-02 23:19:39 +02:00
|
|
|
})
|
|
|
|
h(c)
|
2015-05-20 23:38:51 +02:00
|
|
|
}
|
2015-10-21 22:39:51 +02:00
|
|
|
|
2016-02-19 08:50:40 +02:00
|
|
|
func TestLoggerIPAddress(t *testing.T) {
|
2015-10-21 22:39:51 +02:00
|
|
|
e := echo.New()
|
2016-04-24 19:21:23 +02:00
|
|
|
req := test.NewRequest(echo.GET, "/", nil)
|
|
|
|
rec := test.NewResponseRecorder()
|
|
|
|
c := e.NewContext(req, rec)
|
2015-12-01 21:22:45 +02:00
|
|
|
buf := new(bytes.Buffer)
|
2016-03-06 21:43:40 +02:00
|
|
|
e.Logger().SetOutput(buf)
|
2015-12-01 21:22:45 +02:00
|
|
|
ip := "127.0.0.1"
|
2016-04-02 23:19:39 +02:00
|
|
|
h := Logger()(func(c echo.Context) error {
|
2015-10-21 22:39:51 +02:00
|
|
|
return c.String(http.StatusOK, "test")
|
2016-04-02 23:19:39 +02:00
|
|
|
})
|
2015-10-21 22:39:51 +02:00
|
|
|
|
|
|
|
// With X-Real-IP
|
2016-04-24 19:21:23 +02:00
|
|
|
req.Header().Add(echo.HeaderXRealIP, ip)
|
2016-04-02 23:19:39 +02:00
|
|
|
h(c)
|
2016-03-19 07:02:10 +02:00
|
|
|
assert.Contains(t, ip, buf.String())
|
2015-10-21 22:39:51 +02:00
|
|
|
|
|
|
|
// With X-Forwarded-For
|
|
|
|
buf.Reset()
|
2016-04-24 19:21:23 +02:00
|
|
|
req.Header().Del(echo.HeaderXRealIP)
|
|
|
|
req.Header().Add(echo.HeaderXForwardedFor, ip)
|
2016-04-02 23:19:39 +02:00
|
|
|
h(c)
|
2016-03-19 07:02:10 +02:00
|
|
|
assert.Contains(t, ip, buf.String())
|
2015-10-21 22:39:51 +02:00
|
|
|
|
|
|
|
buf.Reset()
|
2016-04-02 23:19:39 +02:00
|
|
|
h(c)
|
2016-03-19 07:02:10 +02:00
|
|
|
assert.Contains(t, ip, buf.String())
|
2015-10-21 22:39:51 +02:00
|
|
|
}
|