cert-manager/pkg/webhook/admission/chain_test.go
Ashley Davis 6420aa4bfa
fix imports in a few files
this is according to our policy on organizing imports, see:
https://cert-manager.io/docs/contributing/coding-conventions/#organizing-imports

Signed-off-by: Ashley Davis <ashley.davis@jetstack.io>
2022-02-18 17:42:45 +00:00

179 lines
6.0 KiB
Go

/*
Copyright 2021 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 admission_test
import (
"context"
"fmt"
"reflect"
"testing"
admissionv1 "k8s.io/api/admission/v1"
"k8s.io/apimachinery/pkg/runtime"
"github.com/cert-manager/cert-manager/pkg/webhook/admission"
v1 "github.com/cert-manager/cert-manager/pkg/webhook/handlers/testdata/apis/testgroup/v1"
)
func TestChainHandles(t *testing.T) {
pc := admission.PluginChain([]admission.Interface{
// this handler should be called
validatingImplementation{handles: handles(true).Handles},
validatingImplementation{handles: handles(false).Handles},
})
// actual operation passed here does not matter
if !pc.Handles(admissionv1.Create) {
t.Errorf("expected handler to handle this request but it did not")
}
}
func TestChainDoesntHandle(t *testing.T) {
pc := admission.PluginChain([]admission.Interface{
// this handler should be called
validatingImplementation{handles: handles(false).Handles},
validatingImplementation{handles: handles(false).Handles},
})
// actual operation passed here does not matter
if pc.Handles(admissionv1.Create) {
t.Errorf("expected handler to not handle this message but it did")
}
}
func TestChainValidate(t *testing.T) {
validateCalled := false
pc := admission.PluginChain([]admission.Interface{
// this handler should be called
validatingImplementation{
handles: handles(true).Handles,
validate: func(ctx context.Context, request admissionv1.AdmissionRequest, oldObj, obj runtime.Object) ([]string, error) {
validateCalled = true
return []string{"warning1", "warning2"}, nil
},
},
// it's not expected that this handler will be called
validatingImplementation{
// this handler explicitly does not handle the call
handles: handles(false).Handles,
validate: func(ctx context.Context, request admissionv1.AdmissionRequest, oldObj, obj runtime.Object) ([]string, error) {
t.Errorf("second validation function was unexpectedly called during a validate call")
return []string{"warning3", "warning4"}, nil
},
},
// this handler should be called
validatingImplementation{
handles: handles(true).Handles,
validate: func(ctx context.Context, request admissionv1.AdmissionRequest, oldObj, obj runtime.Object) ([]string, error) {
return []string{"warning5"}, nil
},
},
mutatingImplementation{
handles: handles(true).Handles,
mutate: func(ctx context.Context, request admissionv1.AdmissionRequest, obj runtime.Object) error {
t.Errorf("mutate function was unexpectedly called during a validate call")
return fmt.Errorf("unexpected error")
},
},
})
warnings, err := pc.Validate(context.Background(), admissionv1.AdmissionRequest{}, nil, nil)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
if !validateCalled {
t.Errorf("validation function was not called")
}
if !reflect.DeepEqual(warnings, []string{"warning1", "warning2", "warning5"}) {
t.Errorf("got unexpected list of warnings: %v", warnings)
}
}
func TestChainValidate_Fails(t *testing.T) {
pc := admission.PluginChain([]admission.Interface{
// this handler should be called
validatingImplementation{
handles: handles(true).Handles,
validate: func(ctx context.Context, request admissionv1.AdmissionRequest, oldObj, obj runtime.Object) ([]string, error) {
return []string{"warning1", "warning2"}, fmt.Errorf("error")
},
},
// this handler should be called
validatingImplementation{
handles: handles(true).Handles,
validate: func(ctx context.Context, request admissionv1.AdmissionRequest, oldObj, obj runtime.Object) ([]string, error) {
return []string{"warning5"}, nil
},
},
})
warnings, err := pc.Validate(context.Background(), admissionv1.AdmissionRequest{}, nil, nil)
if err == nil {
t.Errorf("didn't get an error when one was expected")
}
if !reflect.DeepEqual(warnings, []string{"warning1", "warning2", "warning5"}) {
t.Errorf("got unexpected list of warnings: %v", warnings)
}
}
func TestChainMutate(t *testing.T) {
pc := admission.PluginChain([]admission.Interface{
// this handler should be called
mutatingImplementation{
handles: handles(true).Handles,
mutate: func(ctx context.Context, request admissionv1.AdmissionRequest, obj runtime.Object) error {
tt := obj.(*v1.TestType)
tt.TestField = "testvalue"
return nil
},
},
// this handler should not be called
mutatingImplementation{
handles: handles(false).Handles,
mutate: func(ctx context.Context, request admissionv1.AdmissionRequest, obj runtime.Object) error {
tt := obj.(*v1.TestType)
tt.TestFieldImmutable = "hopefully-not-set"
return nil
},
},
})
tt := &v1.TestType{}
err := pc.Mutate(context.Background(), admissionv1.AdmissionRequest{}, tt)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
if tt.TestField != "testvalue" {
t.Errorf("expected tt.TestField=testvalue but got %q", tt.TestField)
}
if tt.TestFieldImmutable != "" {
t.Errorf("expected tt.TestFieldImmutable to not be set, but got %q", tt.TestFieldImmutable)
}
}
func TestChainMutate_Fails(t *testing.T) {
pc := admission.PluginChain([]admission.Interface{
// this handler should be called and should error
mutatingImplementation{
handles: handles(true).Handles,
mutate: func(ctx context.Context, request admissionv1.AdmissionRequest, obj runtime.Object) error {
return fmt.Errorf("error")
},
},
})
tt := &v1.TestType{}
err := pc.Mutate(context.Background(), admissionv1.AdmissionRequest{}, tt)
if err == nil {
t.Errorf("expected error but got none")
}
}