traefik/middlewares/redirect/redirect_test.go

169 lines
4.2 KiB
Go
Raw Normal View History

2018-01-31 18:10:04 +00:00
package redirect
import (
2018-11-14 09:18:03 +00:00
"context"
"crypto/tls"
2018-01-31 18:10:04 +00:00
"net/http"
"net/http/httptest"
"testing"
2018-11-14 09:18:03 +00:00
"github.com/containous/traefik/config"
2018-01-31 18:10:04 +00:00
"github.com/containous/traefik/testhelpers"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestNewRegexHandler(t *testing.T) {
testCases := []struct {
desc string
2018-11-14 09:18:03 +00:00
config config.Redirect
2018-01-31 18:10:04 +00:00
url string
expectedURL string
expectedStatus int
errorExpected bool
2018-11-14 09:18:03 +00:00
secured bool
2018-01-31 18:10:04 +00:00
}{
{
2018-11-14 09:18:03 +00:00
desc: "simple redirection",
config: config.Redirect{
Regex: `^(?:http?:\/\/)(foo)(\.com)(:\d+)(.*)$`,
Replacement: "https://${1}bar$2:443$4",
},
url: "http://foo.com:80",
expectedURL: "https://foobar.com:443",
expectedStatus: http.StatusFound,
},
{
2018-11-14 09:18:03 +00:00
desc: "use request header",
config: config.Redirect{
Regex: `^(?:http?:\/\/)(foo)(\.com)(:\d+)(.*)$`,
Replacement: `https://${1}{{ .Request.Header.Get "X-Foo" }}$2:443$4`,
},
2018-01-31 18:10:04 +00:00
url: "http://foo.com:80",
expectedURL: "https://foobar.com:443",
expectedStatus: http.StatusFound,
},
{
2018-11-14 09:18:03 +00:00
desc: "URL doesn't match regex",
config: config.Redirect{
Regex: `^(?:http?:\/\/)(foo)(\.com)(:\d+)(.*)$`,
Replacement: "https://${1}bar$2:443$4",
},
2018-01-31 18:10:04 +00:00
url: "http://bar.com:80",
expectedStatus: http.StatusOK,
},
{
2018-11-14 09:18:03 +00:00
desc: "invalid rewritten URL",
config: config.Redirect{
Regex: `^(.*)$`,
Replacement: "http://192.168.0.%31/",
},
2018-01-31 18:10:04 +00:00
url: "http://foo.com:80",
expectedStatus: http.StatusBadGateway,
},
{
2018-11-14 09:18:03 +00:00
desc: "invalid regex",
config: config.Redirect{
Regex: `^(.*`,
Replacement: "$1",
},
2018-01-31 18:10:04 +00:00
url: "http://foo.com:80",
errorExpected: true,
},
2018-11-14 09:18:03 +00:00
{
desc: "HTTP to HTTPS permanent",
config: config.Redirect{
Regex: `^http://`,
Replacement: "https://$1",
Permanent: true,
},
url: "http://foo",
expectedURL: "https://foo",
expectedStatus: http.StatusMovedPermanently,
},
{
desc: "HTTPS to HTTP permanent",
config: config.Redirect{
Regex: `https://foo`,
Replacement: "http://foo",
Permanent: true,
},
secured: true,
url: "https://foo",
expectedURL: "http://foo",
expectedStatus: http.StatusMovedPermanently,
},
{
desc: "HTTP to HTTPS",
config: config.Redirect{
Regex: `http://foo:80`,
Replacement: "https://foo:443",
},
url: "http://foo:80",
expectedURL: "https://foo:443",
expectedStatus: http.StatusFound,
},
{
desc: "HTTPS to HTTP",
config: config.Redirect{
Regex: `https://foo:443`,
Replacement: "http://foo:80",
},
secured: true,
url: "https://foo:443",
expectedURL: "http://foo:80",
expectedStatus: http.StatusFound,
},
{
desc: "HTTP to HTTP",
config: config.Redirect{
Regex: `http://foo:80`,
Replacement: "http://foo:88",
},
url: "http://foo:80",
expectedURL: "http://foo:88",
expectedStatus: http.StatusFound,
},
2018-01-31 18:10:04 +00:00
}
for _, test := range testCases {
test := test
t.Run(test.desc, func(t *testing.T) {
t.Parallel()
2018-11-14 09:18:03 +00:00
next := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {})
handler, err := New(context.Background(), next, test.config, "traefikTest")
2018-01-31 18:10:04 +00:00
if test.errorExpected {
require.Error(t, err)
2018-11-14 09:18:03 +00:00
require.Nil(t, handler)
2018-01-31 18:10:04 +00:00
} else {
require.NoError(t, err)
2018-11-14 09:18:03 +00:00
require.NotNil(t, handler)
2018-01-31 18:10:04 +00:00
recorder := httptest.NewRecorder()
r := testhelpers.MustNewRequest(http.MethodGet, test.url, nil)
2018-11-14 09:18:03 +00:00
if test.secured {
r.TLS = &tls.ConnectionState{}
}
r.Header.Set("X-Foo", "bar")
2018-11-14 09:18:03 +00:00
handler.ServeHTTP(recorder, r)
2018-01-31 18:10:04 +00:00
if test.expectedStatus == http.StatusMovedPermanently || test.expectedStatus == http.StatusFound {
assert.Equal(t, test.expectedStatus, recorder.Code)
location, err := recorder.Result().Location()
require.NoError(t, err)
assert.Equal(t, test.expectedURL, location.String())
} else {
assert.Equal(t, test.expectedStatus, recorder.Code)
location, err := recorder.Result().Location()
2018-02-19 00:04:45 +00:00
require.Errorf(t, err, "Location %v", location)
2018-01-31 18:10:04 +00:00
}
}
})
}
}