cert-manager/test/e2e/suite/conformance/certificates/venafi/venafi.go
JoshVanL 56a40ddba7 Adds cluster issuer tests for all conformance issuer suites
Signed-off-by: JoshVanL <vleeuwenjoshua@gmail.com>
2019-11-13 11:02:43 +00:00

118 lines
3.9 KiB
Go

/*
Copyright 2019 The Jetstack cert-manager contributors.
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 venafi
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
cmapi "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha2"
cmmeta "github.com/jetstack/cert-manager/pkg/apis/meta/v1"
"github.com/jetstack/cert-manager/test/e2e/framework"
"github.com/jetstack/cert-manager/test/e2e/framework/addon"
"github.com/jetstack/cert-manager/test/e2e/framework/util/errors"
vaddon "github.com/jetstack/cert-manager/test/e2e/suite/issuers/venafi/addon"
)
var _ = framework.ConformanceDescribe("Certificates", func() {
//// unsupportedFeatures is a list of features that are not supported by the
//// Venafi issuer.
//var unsupportedFeatures = certificates.NewFeatureSet(
// certificates.DurationFeature,
// // Due to the current configuration of the test environment, it does not
// // support signing certificates that pair with an elliptic curve private
// // key or using the same private key multiple times.
// certificates.ECDSAFeature,
// certificates.ReusePrivateKeyFeature,
//)
//
//provisioner := new(venafiProvisioner)
//(&certificates.Suite{
// Name: "Venafi Issuer",
// CreateIssuerFunc: provisioner.createIssuer,
// DeleteIssuerFunc: provisioner.delete,
// UnsupportedFeatures: unsupportedFeatures,
//}).Define()
//(&certificates.Suite{
// Name: "Venafi ClusterIssuer",
// CreateIssuerFunc: provisioner.createClusterIssuer,
// DeleteIssuerFunc: provisioner.delete,
// UnsupportedFeatures: unsupportedFeatures,
//}).Define()
})
type venafiProvisioner struct {
tpp *vaddon.VenafiTPP
}
func (v *venafiProvisioner) delete(f *framework.Framework, ref cmmeta.ObjectReference) {
Expect(v.tpp.Deprovision()).NotTo(HaveOccurred(), "failed to deprovision tpp venafi")
}
func (v *venafiProvisioner) createIssuer(f *framework.Framework) cmmeta.ObjectReference {
By("Creating a Venafi Issuer")
v.tpp = &vaddon.VenafiTPP{
Namespace: f.Namespace.Name,
}
err := v.tpp.Setup(f.Config)
if errors.IsSkip(err) {
framework.Skipf("Skipping test as addon could not be setup: %v", err)
}
Expect(err).NotTo(HaveOccurred(), "failed to setup tpp venafi")
Expect(v.tpp.Provision()).NotTo(HaveOccurred(), "failed to provision tpp venafi")
issuer := v.tpp.Details().BuildIssuer()
issuer, err = f.CertManagerClientSet.CertmanagerV1alpha2().Issuers(f.Namespace.Name).Create(issuer)
Expect(err).NotTo(HaveOccurred(), "failed to create issuer for venafi")
return cmmeta.ObjectReference{
Group: cmapi.SchemeGroupVersion.Group,
Kind: cmapi.IssuerKind,
Name: issuer.Name,
}
}
func (v *venafiProvisioner) createClusterIssuer(f *framework.Framework) cmmeta.ObjectReference {
By("Creating a Venafi ClusterIssuer")
v.tpp = &vaddon.VenafiTPP{
Namespace: addon.CertManager.Namespace,
}
err := v.tpp.Setup(f.Config)
if errors.IsSkip(err) {
framework.Skipf("Skipping test as addon could not be setup: %v", err)
}
Expect(err).NotTo(HaveOccurred(), "failed to setup tpp venafi")
Expect(v.tpp.Provision()).NotTo(HaveOccurred(), "failed to provision tpp venafi")
issuer := v.tpp.Details().BuildClusterIssuer()
issuer, err = f.CertManagerClientSet.CertmanagerV1alpha2().ClusterIssuers().Create(issuer)
Expect(err).NotTo(HaveOccurred(), "failed to create issuer for venafi")
return cmmeta.ObjectReference{
Group: cmapi.SchemeGroupVersion.Group,
Kind: cmapi.ClusterIssuerKind,
Name: issuer.Name,
}
}