101 lines
2.4 KiB
Go
101 lines
2.4 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 ca
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
|
|
"github.com/jetstack/cert-manager/pkg/controller/test"
|
|
)
|
|
|
|
const (
|
|
defaultTestAcmeClusterResourceNamespace = "default"
|
|
defaultTestSolverImage = "fake-solver-image"
|
|
)
|
|
|
|
type caFixture struct {
|
|
CA *CA
|
|
*test.Builder
|
|
|
|
Issuer v1alpha1.GenericIssuer
|
|
Certificate *v1alpha1.Certificate
|
|
|
|
PreFn func(*testing.T, *caFixture)
|
|
CheckFn func(*testing.T, *caFixture, ...interface{})
|
|
Err bool
|
|
|
|
Ctx context.Context
|
|
}
|
|
|
|
func (s *caFixture) Setup(t *testing.T) {
|
|
if s.Issuer == nil {
|
|
s.Issuer = &v1alpha1.Issuer{
|
|
Spec: v1alpha1.IssuerSpec{
|
|
IssuerConfig: v1alpha1.IssuerConfig{
|
|
ACME: &v1alpha1.ACMEIssuer{},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
if s.Ctx == nil {
|
|
s.Ctx = context.Background()
|
|
}
|
|
if s.Builder == nil {
|
|
// TODO: set default IssuerOptions
|
|
// defaultTestAcmeClusterResourceNamespace,
|
|
// defaultTestSolverImage,
|
|
// default dns01 nameservers
|
|
// ambient credentials settings
|
|
s.Builder = &test.Builder{}
|
|
}
|
|
s.CA = s.buildFakeCA(s.Builder, s.Issuer)
|
|
if s.PreFn != nil {
|
|
s.PreFn(t, s)
|
|
s.Builder.Sync()
|
|
}
|
|
}
|
|
|
|
func (s *caFixture) Finish(t *testing.T, args ...interface{}) {
|
|
defer s.Builder.Stop()
|
|
if err := s.Builder.AllReactorsCalled(); err != nil {
|
|
t.Errorf("Not all expected reactors were called: %v", err)
|
|
}
|
|
if err := s.Builder.AllActionsExecuted(); err != nil {
|
|
t.Errorf(err.Error())
|
|
}
|
|
|
|
// resync listers before running checks
|
|
s.Builder.Sync()
|
|
// run custom checks
|
|
if s.CheckFn != nil {
|
|
s.CheckFn(t, s, args...)
|
|
}
|
|
}
|
|
|
|
func (s *caFixture) buildFakeCA(b *test.Builder, issuer v1alpha1.GenericIssuer) *CA {
|
|
b.Start()
|
|
a, err := NewCA(b.Context, issuer)
|
|
if err != nil {
|
|
panic("error creating fake ca: " + err.Error())
|
|
}
|
|
caStruct := a.(*CA)
|
|
b.Sync()
|
|
return caStruct
|
|
}
|