summaryrefslogtreecommitdiff
path: root/modules/caddytls/matchers_test.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2020-03-20 15:51:37 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2020-03-20 15:51:37 -0600
commit3c1def243020a3897121d4c5badf07ed45d2397d (patch)
tree01be16286024a88043a4575962e03924bded36b6 /modules/caddytls/matchers_test.go
parentb583007c49975c5c368630af30bbe3b116935df0 (diff)
caddytls: Support wildcard matching in ServerName conn policy matcher
Diffstat (limited to 'modules/caddytls/matchers_test.go')
-rw-r--r--modules/caddytls/matchers_test.go86
1 files changed, 86 insertions, 0 deletions
diff --git a/modules/caddytls/matchers_test.go b/modules/caddytls/matchers_test.go
new file mode 100644
index 0000000..24a015a
--- /dev/null
+++ b/modules/caddytls/matchers_test.go
@@ -0,0 +1,86 @@
+// Copyright 2015 Matthew Holt and The Caddy Authors
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package caddytls
+
+import (
+ "crypto/tls"
+ "testing"
+)
+
+func TestServerNameMatcher(t *testing.T) {
+ for i, tc := range []struct {
+ names []string
+ input string
+ expect bool
+ }{
+ {
+ names: []string{"example.com"},
+ input: "example.com",
+ expect: true,
+ },
+ {
+ names: []string{"example.com"},
+ input: "foo.com",
+ expect: false,
+ },
+ {
+ names: []string{"example.com"},
+ input: "",
+ expect: false,
+ },
+ {
+ names: []string{},
+ input: "",
+ expect: false,
+ },
+ {
+ names: []string{"foo", "example.com"},
+ input: "example.com",
+ expect: true,
+ },
+ {
+ names: []string{"foo", "example.com"},
+ input: "sub.example.com",
+ expect: false,
+ },
+ {
+ names: []string{"foo", "example.com"},
+ input: "foo.com",
+ expect: false,
+ },
+ {
+ names: []string{"*.example.com"},
+ input: "example.com",
+ expect: false,
+ },
+ {
+ names: []string{"*.example.com"},
+ input: "sub.example.com",
+ expect: true,
+ },
+ {
+ names: []string{"*.example.com", "*.sub.example.com"},
+ input: "sub2.sub.example.com",
+ expect: true,
+ },
+ } {
+ chi := &tls.ClientHelloInfo{ServerName: tc.input}
+ actual := MatchServerName(tc.names).Match(chi)
+ if actual != tc.expect {
+ t.Errorf("Test %d: Expected %t but got %t (input=%s match=%v)",
+ i, tc.expect, actual, tc.input, tc.names)
+ }
+ }
+}