2017-07-19 08:27:52 +00:00
|
|
|
package middlewares
|
2017-04-25 18:13:39 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2017-07-19 08:27:52 +00:00
|
|
|
"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) {
|
2017-07-19 08:27:52 +00:00
|
|
|
|
|
|
|
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) {
|
2017-07-19 08:27:52 +00:00
|
|
|
expectedPath = r.URL.Path
|
|
|
|
actualHeader = r.Header.Get(ReplacedPathHeader)
|
|
|
|
requestURI = r.RequestURI
|
2017-04-25 18:13:39 +00:00
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
2017-07-19 08:27:52 +00:00
|
|
|
req := testhelpers.MustNewRequest(http.MethodGet, "http://localhost"+path, nil)
|
2017-04-25 18:13:39 +00:00
|
|
|
|
|
|
|
handler.ServeHTTP(nil, req)
|
|
|
|
|
2017-07-19 08:27:52 +00:00
|
|
|
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
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|