95 lines
2.5 KiB
Go
95 lines
2.5 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 predicate
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"k8s.io/utils/pointer"
|
|
|
|
cmapi "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
|
|
)
|
|
|
|
func TestCertificateSecretName(t *testing.T) {
|
|
certWithSecretName := func(s string) *cmapi.Certificate {
|
|
return &cmapi.Certificate{
|
|
Spec: cmapi.CertificateSpec{SecretName: s},
|
|
}
|
|
}
|
|
tests := map[string]struct {
|
|
secretName string
|
|
cert *cmapi.Certificate
|
|
expected bool
|
|
}{
|
|
"returns true if secret name matches": {
|
|
secretName: "abc",
|
|
cert: certWithSecretName("abc"),
|
|
expected: true,
|
|
},
|
|
"returns false if secret name does not match": {
|
|
secretName: "abc",
|
|
cert: certWithSecretName("abcd"),
|
|
expected: false,
|
|
},
|
|
}
|
|
for name, test := range tests {
|
|
t.Run(name, func(t *testing.T) {
|
|
got := CertificateSecretName(test.secretName)(test.cert)
|
|
if got != test.expected {
|
|
t.Errorf("unexpected response: got=%t, exp=%t", got, test.expected)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCertificateNextPrivateKeySecretName(t *testing.T) {
|
|
certWithSecretName := func(s *string) *cmapi.Certificate {
|
|
return &cmapi.Certificate{
|
|
Status: cmapi.CertificateStatus{NextPrivateKeySecretName: s},
|
|
}
|
|
}
|
|
tests := map[string]struct {
|
|
secretName string
|
|
cert *cmapi.Certificate
|
|
expected bool
|
|
}{
|
|
"returns true if secret name matches": {
|
|
secretName: "abc",
|
|
cert: certWithSecretName(pointer.StringPtr("abc")),
|
|
expected: true,
|
|
},
|
|
"returns false if secret name does not match": {
|
|
secretName: "abc",
|
|
cert: certWithSecretName(pointer.StringPtr("abcd")),
|
|
expected: false,
|
|
},
|
|
"returns false if secret name is nil": {
|
|
secretName: "",
|
|
cert: certWithSecretName(nil),
|
|
expected: false,
|
|
},
|
|
}
|
|
for name, test := range tests {
|
|
t.Run(name, func(t *testing.T) {
|
|
got := CertificateNextPrivateKeySecretName(test.secretName)(test.cert)
|
|
if got != test.expected {
|
|
t.Errorf("unexpected response: got=%t, exp=%t", got, test.expected)
|
|
}
|
|
})
|
|
}
|
|
}
|