cert-manager/pkg/controller/issuers/sync_test.go
James Munnelly 0fcc0c666c Update copyright header year
Signed-off-by: James Munnelly <james@munnelly.eu>
2019-01-07 15:07:55 +00:00

143 lines
3.7 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 issuers
import (
"reflect"
"runtime/debug"
"testing"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
clientgotesting "k8s.io/client-go/testing"
"github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
)
func newFakeIssuerWithStatus(name string, status v1alpha1.IssuerStatus) *v1alpha1.Issuer {
return &v1alpha1.Issuer{
ObjectMeta: metav1.ObjectMeta{
Name: name,
},
Status: status,
}
}
func TestSync(t *testing.T) {
}
func TestUpdateIssuerStatus(t *testing.T) {
f := &controllerFixture{}
f.Setup(t)
defer f.Finish(t)
cmClient := f.Builder.FakeCMClient()
c := f.Controller
assertNumberOfActions(t, fatalf, filter(cmClient.Actions()), 0)
originalIssuer := newFakeIssuerWithStatus("test", v1alpha1.IssuerStatus{})
issuer, err := cmClient.CertmanagerV1alpha1().Issuers("testns").Create(originalIssuer)
assertErrIsNil(t, fatalf, err)
assertNumberOfActions(t, fatalf, filter(cmClient.Actions()), 1)
newStatus := v1alpha1.IssuerStatus{
Conditions: []v1alpha1.IssuerCondition{
{
Type: v1alpha1.IssuerConditionReady,
Status: v1alpha1.ConditionTrue,
},
},
}
issuerCopy := issuer.DeepCopy()
issuerCopy.Status = newStatus
_, err = c.updateIssuerStatus(issuer, issuerCopy)
assertErrIsNil(t, fatalf, err)
actions := filter(cmClient.Actions())
assertNumberOfActions(t, fatalf, actions, 2)
action := actions[1]
updateAction := assertIsUpdateAction(t, errorf, action)
obj := updateAction.GetObject()
issuer = assertIsIssuer(t, errorf, obj)
assertDeepEqual(t, errorf, newStatus, issuer.Status)
}
func assertIsUpdateAction(t *testing.T, f failfFunc, action clientgotesting.Action) clientgotesting.UpdateAction {
updateAction, ok := action.(clientgotesting.UpdateAction)
if !ok {
f(t, "action %#v does not implement interface UpdateAction")
}
return updateAction
}
func assertNumberOfActions(t *testing.T, f failfFunc, actions []clientgotesting.Action, number int) {
if len(actions) != number {
f(t, "expected %d actions, but got %d", number, len(actions))
}
}
func assertErrIsNil(t *testing.T, f failfFunc, err error) {
if err != nil {
f(t, err.Error())
}
}
func assertIsIssuer(t *testing.T, f failfFunc, obj runtime.Object) *v1alpha1.Issuer {
issuer, ok := obj.(*v1alpha1.Issuer)
if !ok {
f(t, "expected runtime.Object to be of type *v1alpha1.Issuer, but it was %#v", obj)
}
return issuer
}
func assertDeepEqual(t *testing.T, f failfFunc, left, right interface{}) {
if !reflect.DeepEqual(left, right) {
f(t, "object '%#v' does not equal '%#v'", left, right)
}
}
func filter(in []clientgotesting.Action) []clientgotesting.Action {
var out []clientgotesting.Action
for _, i := range in {
if i.GetVerb() != "list" && i.GetVerb() != "watch" {
out = append(out, i)
}
}
return out
}
// failfFunc is a type that defines the common signatures of T.Fatalf and
// T.Errorf.
type failfFunc func(t *testing.T, msg string, args ...interface{})
func fatalf(t *testing.T, msg string, args ...interface{}) {
t.Log(string(debug.Stack()))
t.Fatalf(msg, args...)
}
func errorf(t *testing.T, msg string, args ...interface{}) {
t.Log(string(debug.Stack()))
t.Errorf(msg, args...)
}