cert-manager/test/acme/dns/options.go
Ashley Davis 3a055cc2f5
rename all uses of github.com/jetstack/cert-manager
This was done by running the following command twice:

 ```bash
 grep -Ri "github.com/jetstack/cert-manager" . | \
 cut -d":" -f1 | \
 sort | \
 uniq | \
 xargs sed -i
 "s/github.com\/jetstack\/cert-manager/github.com\/cert-manager\/cert-manager/"
 ```

Signed-off-by: Ashley Davis <ashley.davis@jetstack.io>
2022-02-02 09:08:31 +00:00

178 lines
3.7 KiB
Go

/*
Copyright 2020 The cert-manager 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 dns
import (
"encoding/json"
"fmt"
"os"
"strings"
"time"
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
"github.com/cert-manager/cert-manager/pkg/acme/webhook"
)
// Option applies a configuration option to the test fixture being built
type Option func(*fixture)
// NewFixture constructs a new *fixture, applying the given Options before
// returning.
func NewFixture(solver webhook.Solver, opts ...Option) *fixture {
f := &fixture{
testSolver: solver,
}
for _, o := range opts {
o(f)
}
applyDefaults(f)
return f
}
func applyDefaults(f *fixture) {
if f.testDNSServer == "" {
f.testDNSServer = "8.8.8.8:53"
}
if f.resolvedFQDN == "" {
f.resolvedFQDN = "cert-manager-dns01-tests." + f.resolvedZone
}
if f.dnsName == "" {
f.dnsName = "example.com"
}
if f.dnsChallengeKey == "" {
f.dnsChallengeKey = "123d=="
}
if f.jsonConfig == nil {
if f.kubectlManifestsPath != "" {
d, err := os.ReadFile(f.kubectlManifestsPath + "/config.json")
if err == nil {
f.jsonConfig = &apiextensionsv1.JSON{
Raw: d,
}
}
}
}
if f.useAuthoritative == nil {
trueVal := true
f.useAuthoritative = &trueVal
}
}
func validate(f *fixture) error {
var errs []error
if f.resolvedFQDN == "" {
errs = append(errs, fmt.Errorf("resolvedFQDN must be provided"))
}
if !strings.HasSuffix(f.resolvedFQDN, ".") {
errs = append(errs, fmt.Errorf("resolvedFQDN must end with a '.'"))
}
if f.resolvedZone == "" {
errs = append(errs, fmt.Errorf("resolvedZone must be provided"))
}
if f.jsonConfig == nil {
errs = append(errs, fmt.Errorf("jsonConfig must be provided"))
}
if f.useAuthoritative == nil {
errs = append(errs, fmt.Errorf("useAuthoritative must be provided"))
}
if len(errs) > 0 {
return fmt.Errorf("%v", errs)
}
return nil
}
func SetResolvedFQDN(s string) Option {
return func(f *fixture) {
f.resolvedFQDN = s
}
}
func SetResolvedZone(s string) Option {
return func(f *fixture) {
f.resolvedZone = s
}
}
func SetAllowAmbientCredentials(b bool) Option {
return func(f *fixture) {
f.allowAmbientCredentials = b
}
}
func SetConfig(i interface{}) Option {
return func(f *fixture) {
d, err := json.Marshal(i)
if err != nil {
panic(err)
}
f.jsonConfig = &apiextensionsv1.JSON{Raw: d}
}
}
func SetStrict(s bool) Option {
return func(f *fixture) {
f.strictMode = s
}
}
func SetUseAuthoritative(s bool) Option {
return func(f *fixture) {
f.useAuthoritative = &s
}
}
func SetManifestPath(s string) Option {
return func(f *fixture) {
f.kubectlManifestsPath = s
}
}
func SetDNSServer(s string) Option {
return func(f *fixture) {
f.testDNSServer = s
}
}
func SetPollInterval(d time.Duration) Option {
return func(f *fixture) {
f.pollInterval = d
}
}
func SetPropagationLimit(d time.Duration) Option {
return func(f *fixture) {
f.propagationLimit = d
}
}
// SetDNSChallengeKey defines the value of the acme challenge string.
func SetDNSChallengeKey(s string) Option {
return func(f *fixture) {
f.dnsChallengeKey = s
}
}
// SetDNSName defines the domain name to be used in the webhook
// integration tests.
func SetDNSName(s string) Option {
return func(f *fixture) {
f.dnsName = s
}
}