2018-02-26 14:34:04 +00:00
|
|
|
package rules
|
2016-06-06 13:27:16 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2016-06-06 20:40:42 +00:00
|
|
|
"net/url"
|
2016-06-06 13:27:16 +00:00
|
|
|
"testing"
|
2017-04-17 20:47:53 +00:00
|
|
|
|
|
|
|
"github.com/containous/mux"
|
2017-06-03 12:58:35 +00:00
|
|
|
"github.com/containous/traefik/testhelpers"
|
2018-02-26 14:34:04 +00:00
|
|
|
"github.com/containous/traefik/types"
|
2017-05-28 03:50:03 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
2016-06-06 13:27:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestParseOneRule(t *testing.T) {
|
|
|
|
router := mux.NewRouter()
|
|
|
|
route := router.NewRoute()
|
2018-02-26 14:34:04 +00:00
|
|
|
serverRoute := &types.ServerRoute{Route: route}
|
|
|
|
rules := &Rules{Route: serverRoute}
|
2016-06-06 13:27:16 +00:00
|
|
|
|
|
|
|
expression := "Host:foo.bar"
|
|
|
|
routeResult, err := rules.Parse(expression)
|
2017-05-28 03:50:03 +00:00
|
|
|
require.NoError(t, err, "Error while building route for %s", expression)
|
2016-06-06 13:27:16 +00:00
|
|
|
|
2017-06-03 12:58:35 +00:00
|
|
|
request := testhelpers.MustNewRequest(http.MethodGet, "http://foo.bar", nil)
|
2016-06-06 13:27:16 +00:00
|
|
|
routeMatch := routeResult.Match(request, &mux.RouteMatch{Route: routeResult})
|
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
assert.True(t, routeMatch, "Rule %s don't match.", expression)
|
2016-06-06 13:27:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestParseTwoRules(t *testing.T) {
|
|
|
|
router := mux.NewRouter()
|
|
|
|
route := router.NewRoute()
|
2018-02-26 14:34:04 +00:00
|
|
|
serverRoute := &types.ServerRoute{Route: route}
|
|
|
|
rules := &Rules{Route: serverRoute}
|
2016-06-06 13:27:16 +00:00
|
|
|
|
2016-10-14 14:04:09 +00:00
|
|
|
expression := "Host: Foo.Bar ; Path:/FOObar"
|
2016-06-06 13:27:16 +00:00
|
|
|
routeResult, err := rules.Parse(expression)
|
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
require.NoError(t, err, "Error while building route for %s.", expression)
|
2016-06-06 13:27:16 +00:00
|
|
|
|
2017-06-03 12:58:35 +00:00
|
|
|
request := testhelpers.MustNewRequest(http.MethodGet, "http://foo.bar/foobar", nil)
|
2016-06-06 13:27:16 +00:00
|
|
|
routeMatch := routeResult.Match(request, &mux.RouteMatch{Route: routeResult})
|
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
assert.False(t, routeMatch, "Rule %s don't match.", expression)
|
2016-11-17 14:36:10 +00:00
|
|
|
|
2017-06-03 12:58:35 +00:00
|
|
|
request = testhelpers.MustNewRequest(http.MethodGet, "http://foo.bar/FOObar", nil)
|
2016-11-17 14:36:10 +00:00
|
|
|
routeMatch = routeResult.Match(request, &mux.RouteMatch{Route: routeResult})
|
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
assert.True(t, routeMatch, "Rule %s don't match.", expression)
|
2016-06-06 13:27:16 +00:00
|
|
|
}
|
2016-06-06 12:54:45 +00:00
|
|
|
|
2016-08-05 18:42:45 +00:00
|
|
|
func TestParseDomains(t *testing.T) {
|
|
|
|
rules := &Rules{}
|
2017-05-28 03:50:03 +00:00
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
expression string
|
|
|
|
domain []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
expression: "Host:foo.bar,test.bar",
|
|
|
|
domain: []string{"foo.bar", "test.bar"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
expression: "Path:/test",
|
|
|
|
domain: []string{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
expression: "Host:foo.bar;Path:/test",
|
|
|
|
domain: []string{"foo.bar"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
expression: "Host: Foo.Bar ;Path:/test",
|
|
|
|
domain: []string{"foo.bar"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
test := test
|
|
|
|
t.Run(test.expression, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
domains, err := rules.ParseDomains(test.expression)
|
|
|
|
require.NoError(t, err, "%s: Error while parsing domain.", test.expression)
|
|
|
|
|
|
|
|
assert.EqualValues(t, test.domain, domains, "%s: Error parsing domains from expression.", test.expression)
|
|
|
|
})
|
2016-08-05 18:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-06 12:54:45 +00:00
|
|
|
func TestPriorites(t *testing.T) {
|
|
|
|
router := mux.NewRouter()
|
|
|
|
router.StrictSlash(true)
|
2018-02-26 14:34:04 +00:00
|
|
|
rules := &Rules{Route: &types.ServerRoute{Route: router.NewRoute()}}
|
2017-05-28 03:50:03 +00:00
|
|
|
expression01 := "PathPrefix:/foo"
|
|
|
|
|
|
|
|
routeFoo, err := rules.Parse(expression01)
|
|
|
|
require.NoError(t, err, "Error while building route for %s", expression01)
|
|
|
|
|
2016-06-06 12:54:45 +00:00
|
|
|
fooHandler := &fakeHandler{name: "fooHandler"}
|
|
|
|
routeFoo.Handler(fooHandler)
|
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
routeMatch := router.Match(&http.Request{URL: &url.URL{Path: "/foo"}}, &mux.RouteMatch{})
|
|
|
|
assert.True(t, routeMatch, "Error matching route")
|
2016-06-06 12:54:45 +00:00
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
routeMatch = router.Match(&http.Request{URL: &url.URL{Path: "/fo"}}, &mux.RouteMatch{})
|
|
|
|
assert.False(t, routeMatch, "Error matching route")
|
2016-06-06 12:54:45 +00:00
|
|
|
|
2018-02-26 14:34:04 +00:00
|
|
|
multipleRules := &Rules{Route: &types.ServerRoute{Route: router.NewRoute()}}
|
2017-05-28 03:50:03 +00:00
|
|
|
expression02 := "PathPrefix:/foobar"
|
|
|
|
|
|
|
|
routeFoobar, err := multipleRules.Parse(expression02)
|
|
|
|
require.NoError(t, err, "Error while building route for %s", expression02)
|
|
|
|
|
2016-06-06 12:54:45 +00:00
|
|
|
foobarHandler := &fakeHandler{name: "foobarHandler"}
|
|
|
|
routeFoobar.Handler(foobarHandler)
|
2017-05-28 03:50:03 +00:00
|
|
|
routeMatch = router.Match(&http.Request{URL: &url.URL{Path: "/foo"}}, &mux.RouteMatch{})
|
2016-06-06 12:54:45 +00:00
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
assert.True(t, routeMatch, "Error matching route")
|
2016-06-06 12:54:45 +00:00
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
fooMatcher := &mux.RouteMatch{}
|
|
|
|
routeMatch = router.Match(&http.Request{URL: &url.URL{Path: "/foobar"}}, fooMatcher)
|
|
|
|
|
|
|
|
assert.True(t, routeMatch, "Error matching route")
|
|
|
|
assert.NotEqual(t, fooMatcher.Handler, foobarHandler, "Error matching priority")
|
|
|
|
assert.Equal(t, fooMatcher.Handler, fooHandler, "Error matching priority")
|
2016-06-06 12:54:45 +00:00
|
|
|
|
|
|
|
routeFoo.Priority(1)
|
|
|
|
routeFoobar.Priority(10)
|
|
|
|
router.SortRoutes()
|
|
|
|
|
|
|
|
foobarMatcher := &mux.RouteMatch{}
|
2017-05-28 03:50:03 +00:00
|
|
|
routeMatch = router.Match(&http.Request{URL: &url.URL{Path: "/foobar"}}, foobarMatcher)
|
2016-06-06 12:54:45 +00:00
|
|
|
|
2017-05-28 03:50:03 +00:00
|
|
|
assert.True(t, routeMatch, "Error matching route")
|
|
|
|
assert.Equal(t, foobarMatcher.Handler, foobarHandler, "Error matching priority")
|
|
|
|
assert.NotEqual(t, foobarMatcher.Handler, fooHandler, "Error matching priority")
|
2016-06-06 12:54:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-23 08:20:02 +00:00
|
|
|
func TestHostRegexp(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
hostExp string
|
|
|
|
urls map[string]bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "capturing group",
|
|
|
|
hostExp: "{subdomain:(foo\\.)?bar\\.com}",
|
|
|
|
urls: map[string]bool{
|
|
|
|
"http://foo.bar.com": true,
|
|
|
|
"http://bar.com": true,
|
|
|
|
"http://fooubar.com": false,
|
|
|
|
"http://barucom": false,
|
|
|
|
"http://barcom": false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "non capturing group",
|
|
|
|
hostExp: "{subdomain:(?:foo\\.)?bar\\.com}",
|
|
|
|
urls: map[string]bool{
|
|
|
|
"http://foo.bar.com": true,
|
|
|
|
"http://bar.com": true,
|
|
|
|
"http://fooubar.com": false,
|
|
|
|
"http://barucom": false,
|
|
|
|
"http://barcom": false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
rls := &Rules{
|
2018-02-26 14:34:04 +00:00
|
|
|
Route: &types.ServerRoute{
|
|
|
|
Route: &mux.Route{},
|
2017-10-23 08:20:02 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
rt := rls.hostRegexp(test.hostExp)
|
|
|
|
|
|
|
|
for testURL, match := range test.urls {
|
|
|
|
req := testhelpers.MustNewRequest(http.MethodGet, testURL, nil)
|
|
|
|
assert.Equal(t, match, rt.Match(req, &mux.RouteMatch{}))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-06 12:54:45 +00:00
|
|
|
type fakeHandler struct {
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
2017-05-26 15:03:14 +00:00
|
|
|
func (h *fakeHandler) ServeHTTP(http.ResponseWriter, *http.Request) {}
|
2017-12-19 16:00:12 +00:00
|
|
|
|
|
|
|
func TestPathPrefix(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
path string
|
|
|
|
urls map[string]bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "leading slash",
|
|
|
|
path: "/bar",
|
|
|
|
urls: map[string]bool{
|
|
|
|
"http://foo.com/bar": true,
|
|
|
|
"http://foo.com/bar/": true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "leading trailing slash",
|
|
|
|
path: "/bar/",
|
|
|
|
urls: map[string]bool{
|
|
|
|
"http://foo.com/bar": false,
|
|
|
|
"http://foo.com/bar/": true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "no slash",
|
|
|
|
path: "bar",
|
|
|
|
urls: map[string]bool{
|
|
|
|
"http://foo.com/bar": false,
|
|
|
|
"http://foo.com/bar/": false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "trailing slash",
|
|
|
|
path: "bar/",
|
|
|
|
urls: map[string]bool{
|
|
|
|
"http://foo.com/bar": false,
|
|
|
|
"http://foo.com/bar/": false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
rls := &Rules{
|
2018-02-26 14:34:04 +00:00
|
|
|
Route: &types.ServerRoute{
|
|
|
|
Route: &mux.Route{},
|
2017-12-19 16:00:12 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
rt := rls.pathPrefix(test.path)
|
|
|
|
|
|
|
|
for testURL, expectedMatch := range test.urls {
|
|
|
|
req := testhelpers.MustNewRequest(http.MethodGet, testURL, nil)
|
|
|
|
match := rt.Match(req, &mux.RouteMatch{})
|
|
|
|
if match != expectedMatch {
|
|
|
|
t.Errorf("Error matching %s with %s, got %v expected %v", test.path, testURL, match, expectedMatch)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|