traefik/middlewares/replace_path_test.go

42 lines
1,023 B
Go
Raw Normal View History

package middlewares
2017-04-25 18:13:39 +00:00
import (
"net/http"
"testing"
"github.com/containous/traefik/testhelpers"
"github.com/stretchr/testify/assert"
2017-04-25 18:13:39 +00:00
)
func TestReplacePath(t *testing.T) {
const replacementPath = "/replacement-path"
paths := []string{
"/example",
"/some/really/long/path",
}
for _, path := range paths {
t.Run(path, func(t *testing.T) {
var expectedPath, actualHeader, requestURI string
handler := &ReplacePath{
2017-04-25 18:13:39 +00:00
Path: replacementPath,
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
expectedPath = r.URL.Path
actualHeader = r.Header.Get(ReplacedPathHeader)
requestURI = r.RequestURI
2017-04-25 18:13:39 +00:00
}),
}
req := testhelpers.MustNewRequest(http.MethodGet, "http://localhost"+path, nil)
2017-04-25 18:13:39 +00:00
handler.ServeHTTP(nil, req)
assert.Equal(t, expectedPath, replacementPath, "Unexpected path.")
assert.Equal(t, path, actualHeader, "Unexpected '%s' header.", ReplacedPathHeader)
assert.Equal(t, expectedPath, requestURI, "Unexpected request URI.")
2017-04-25 18:13:39 +00:00
})
}
}