traefik/middlewares/replace_path_test.go

39 lines
924 B
Go
Raw Normal View History

package middlewares
2017-04-25 18:13:39 +00:00
import (
"net/http"
"testing"
"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 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)
2017-04-25 18:13:39 +00:00
}),
}
req, err := http.NewRequest("GET", "http://localhost"+path, nil)
assert.NoError(t, err, "%s: unexpected error.", path)
2017-04-25 18:13:39 +00:00
handler.ServeHTTP(nil, req)
assert.Equal(t, expectedPath, replacementPath, "%s: unexpected path.", path)
assert.Equal(t, path, actualHeader, "%s: unexpected '%s' header.", path, ReplacedPathHeader)
2017-04-25 18:13:39 +00:00
})
}
}