mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-26 02:09:47 +08:00
59a5afab29
httpserver: More path matching tests
97 lines
1.9 KiB
Go
97 lines
1.9 KiB
Go
package httpserver
|
|
|
|
import "testing"
|
|
|
|
func TestPathMatches(t *testing.T) {
|
|
for i, testcase := range []struct {
|
|
reqPath Path
|
|
rulePath string // or "base path" as in Caddyfile docs
|
|
shouldMatch bool
|
|
caseInsensitive bool
|
|
}{
|
|
{
|
|
reqPath: "/",
|
|
rulePath: "/",
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
reqPath: "/foo/bar",
|
|
rulePath: "/foo",
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
reqPath: "/foobar",
|
|
rulePath: "/foo/",
|
|
shouldMatch: false,
|
|
},
|
|
{
|
|
reqPath: "/foobar",
|
|
rulePath: "/foo/bar",
|
|
shouldMatch: false,
|
|
},
|
|
{
|
|
reqPath: "/Foobar",
|
|
rulePath: "/Foo",
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
|
|
reqPath: "/FooBar",
|
|
rulePath: "/Foo",
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
reqPath: "/foobar",
|
|
rulePath: "/FooBar",
|
|
shouldMatch: true,
|
|
caseInsensitive: true,
|
|
},
|
|
{
|
|
reqPath: "",
|
|
rulePath: "/", // a lone forward slash means to match all requests (see issue #1645) - many future test cases related to this issue
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
reqPath: "foobar.php",
|
|
rulePath: "/",
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
reqPath: "",
|
|
rulePath: "",
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
reqPath: "/foo/bar",
|
|
rulePath: "",
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
reqPath: "/foo/bar",
|
|
rulePath: "",
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
reqPath: "no/leading/slash",
|
|
rulePath: "/",
|
|
shouldMatch: true,
|
|
},
|
|
{
|
|
reqPath: "no/leading/slash",
|
|
rulePath: "/no/leading/slash",
|
|
shouldMatch: false,
|
|
},
|
|
{
|
|
reqPath: "no/leading/slash",
|
|
rulePath: "",
|
|
shouldMatch: true,
|
|
},
|
|
} {
|
|
CaseSensitivePath = !testcase.caseInsensitive
|
|
if got, want := testcase.reqPath.Matches(testcase.rulePath), testcase.shouldMatch; got != want {
|
|
t.Errorf("Test %d: For request path '%s' and other path '%s': expected %v, got %v",
|
|
i, testcase.reqPath, testcase.rulePath, want, got)
|
|
}
|
|
}
|
|
}
|