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