2016-03-31 21:17:18 +02:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2016-04-13 07:39:29 +02:00
|
|
|
"net/http"
|
2016-03-31 21:17:18 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/labstack/echo"
|
|
|
|
"github.com/labstack/echo/test"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAddTrailingSlash(t *testing.T) {
|
|
|
|
e := echo.New()
|
2016-04-24 19:21:23 +02:00
|
|
|
req := test.NewRequest(echo.GET, "/add-slash", nil)
|
|
|
|
rec := test.NewResponseRecorder()
|
|
|
|
c := e.NewContext(req, rec)
|
2016-04-02 23:19:39 +02:00
|
|
|
h := AddTrailingSlash()(func(c echo.Context) error {
|
2016-03-31 21:17:18 +02:00
|
|
|
return nil
|
2016-04-02 23:19:39 +02:00
|
|
|
})
|
|
|
|
h(c)
|
2016-04-24 19:21:23 +02:00
|
|
|
assert.Equal(t, "/add-slash/", req.URL().Path())
|
|
|
|
assert.Equal(t, "/add-slash/", req.URI())
|
2016-04-13 07:39:29 +02:00
|
|
|
|
|
|
|
// With config
|
2016-04-24 19:21:23 +02:00
|
|
|
req = test.NewRequest(echo.GET, "/add-slash?key=value", nil)
|
|
|
|
rec = test.NewResponseRecorder()
|
|
|
|
c = e.NewContext(req, rec)
|
2016-04-13 22:28:13 +02:00
|
|
|
h = AddTrailingSlashWithConfig(TrailingSlashConfig{
|
|
|
|
RedirectCode: http.StatusMovedPermanently,
|
|
|
|
})(func(c echo.Context) error {
|
2016-04-13 07:39:29 +02:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
h(c)
|
2016-04-24 19:21:23 +02:00
|
|
|
assert.Equal(t, http.StatusMovedPermanently, rec.Status())
|
|
|
|
assert.Equal(t, "/add-slash/?key=value", rec.Header().Get(echo.HeaderLocation))
|
2016-03-31 21:17:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRemoveTrailingSlash(t *testing.T) {
|
|
|
|
e := echo.New()
|
2016-04-24 19:21:23 +02:00
|
|
|
req := test.NewRequest(echo.GET, "/remove-slash/", nil)
|
|
|
|
rec := test.NewResponseRecorder()
|
|
|
|
c := e.NewContext(req, rec)
|
2016-04-02 23:19:39 +02:00
|
|
|
h := RemoveTrailingSlash()(func(c echo.Context) error {
|
2016-03-31 21:17:18 +02:00
|
|
|
return nil
|
2016-04-02 23:19:39 +02:00
|
|
|
})
|
|
|
|
h(c)
|
2016-04-24 19:21:23 +02:00
|
|
|
assert.Equal(t, "/remove-slash", req.URL().Path())
|
|
|
|
assert.Equal(t, "/remove-slash", req.URI())
|
2016-04-13 07:39:29 +02:00
|
|
|
|
|
|
|
// With config
|
2016-04-24 19:21:23 +02:00
|
|
|
req = test.NewRequest(echo.GET, "/remove-slash/?key=value", nil)
|
|
|
|
rec = test.NewResponseRecorder()
|
|
|
|
c = e.NewContext(req, rec)
|
2016-04-13 22:28:13 +02:00
|
|
|
h = RemoveTrailingSlashWithConfig(TrailingSlashConfig{
|
|
|
|
RedirectCode: http.StatusMovedPermanently,
|
|
|
|
})(func(c echo.Context) error {
|
2016-04-13 07:39:29 +02:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
h(c)
|
2016-04-24 19:21:23 +02:00
|
|
|
assert.Equal(t, http.StatusMovedPermanently, rec.Status())
|
|
|
|
assert.Equal(t, "/remove-slash?key=value", rec.Header().Get(echo.HeaderLocation))
|
2016-03-31 21:17:18 +02:00
|
|
|
}
|