mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-25 17:56:34 +08:00
e0f1a02c37
All code relating to a caddytls.Config and setting it up from the Caddyfile is still intact; only the certificate management-related code was removed into a separate package. I don't expect this to build in CI successfully; updating dependencies and vendor is coming next. I've also removed the ad-hoc, half-baked storage plugins that we need to finish making first-class Caddy plugins (they were never documented anyway). The new certmagic package has a much better storage interface, and we can finally move toward making a new storage plugin type, but it shouldn't be configurable in the Caddyfile, I think, since it doesn't make sense for a Caddy instance to use more than one storage config... We also have the option of eliminating DNS provider plugins and just shipping all of lego's DNS providers by using a lego package (the caddytls/setup.go file has a comment describing how) -- but it doubles Caddy's binary size by 100% from about 19 MB to around 40 MB...!
62 lines
2.4 KiB
Go
62 lines
2.4 KiB
Go
// Copyright 2015 Light Code Labs, LLC
|
|
//
|
|
// 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 (
|
|
"testing"
|
|
|
|
"github.com/mholt/certmagic"
|
|
)
|
|
|
|
type holder struct {
|
|
host, port string
|
|
cfg *Config
|
|
}
|
|
|
|
func (h holder) TLSConfig() *Config { return h.cfg }
|
|
func (h holder) Host() string { return h.host }
|
|
func (h holder) Port() string { return h.port }
|
|
|
|
func TestQualifiesForManagedTLS(t *testing.T) {
|
|
for i, test := range []struct {
|
|
cfg ConfigHolder
|
|
expect bool
|
|
}{
|
|
{holder{host: ""}, false},
|
|
{holder{host: "localhost"}, false},
|
|
{holder{host: "123.44.3.21"}, false},
|
|
{holder{host: "example.com"}, false},
|
|
{holder{host: "", cfg: new(Config)}, false},
|
|
{holder{host: "localhost", cfg: new(Config)}, false},
|
|
{holder{host: "123.44.3.21", cfg: new(Config)}, false},
|
|
{holder{host: "example.com", cfg: &Config{Manager: &certmagic.Config{}}}, true},
|
|
{holder{host: "*.example.com", cfg: &Config{Manager: &certmagic.Config{}}}, true},
|
|
{holder{host: "*.*.example.com", cfg: new(Config)}, false},
|
|
{holder{host: "*sub.example.com", cfg: new(Config)}, false},
|
|
{holder{host: "sub.*.example.com", cfg: new(Config)}, false},
|
|
{holder{host: "example.com", cfg: &Config{Manager: &certmagic.Config{}, Manual: true}}, false},
|
|
{holder{host: "example.com", cfg: &Config{Manager: &certmagic.Config{}, ACMEEmail: "off"}}, false},
|
|
{holder{host: "example.com", cfg: &Config{Manager: &certmagic.Config{}, ACMEEmail: "foo@bar.com"}}, true},
|
|
{holder{host: "example.com", port: "80"}, false},
|
|
{holder{host: "example.com", port: "1234", cfg: &Config{Manager: &certmagic.Config{}}}, true},
|
|
{holder{host: "example.com", port: "443", cfg: &Config{Manager: &certmagic.Config{}}}, true},
|
|
{holder{host: "example.com", port: "80"}, false},
|
|
} {
|
|
if got, want := QualifiesForManagedTLS(test.cfg), test.expect; got != want {
|
|
t.Errorf("Test %d: Expected %v but got %v", i, want, got)
|
|
}
|
|
}
|
|
}
|