From b62f8e058270aff37621b69a9768235a01e8bd34 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Mon, 16 Mar 2020 16:08:33 -0600 Subject: caddyhttp: Support path matcher of "*" without panic --- modules/caddyhttp/matchers_test.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'modules/caddyhttp/matchers_test.go') diff --git a/modules/caddyhttp/matchers_test.go b/modules/caddyhttp/matchers_test.go index 3b5afd2..1e50776 100644 --- a/modules/caddyhttp/matchers_test.go +++ b/modules/caddyhttp/matchers_test.go @@ -252,6 +252,26 @@ func TestPathMatcher(t *testing.T) { input: "/foo/BAR.txt", expect: true, }, + { + match: MatchPath{"*"}, + input: "/", + expect: true, + }, + { + match: MatchPath{"*"}, + input: "/foo/bar", + expect: true, + }, + { + match: MatchPath{"**"}, + input: "/", + expect: true, + }, + { + match: MatchPath{"**"}, + input: "/foo/bar", + expect: true, + }, } { req := &http.Request{URL: &url.URL{Path: tc.input}} repl := caddy.NewReplacer() -- cgit v1.2.3