/* Copyright 2018 The Kubernetes 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 webhook_test import ( "fmt" "testing" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" admissionv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/rest" "sigs.k8s.io/controller-runtime/pkg/envtest" "sigs.k8s.io/controller-runtime/pkg/envtest/printer" logf "sigs.k8s.io/controller-runtime/pkg/log" "sigs.k8s.io/controller-runtime/pkg/log/zap" ) func TestSource(t *testing.T) { RegisterFailHandler(Fail) suiteName := "Webhook Integration Suite" RunSpecsWithDefaultAndCustomReporters(t, suiteName, []Reporter{printer.NewlineReporter{}, printer.NewProwReporter(suiteName)}) } var testenv *envtest.Environment var cfg *rest.Config var _ = BeforeSuite(func() { logf.SetLogger(zap.New(zap.WriteTo(GinkgoWriter), zap.UseDevMode(true))) testenv = &envtest.Environment{} // we're initializing webhook here and not in webhook.go to also test the envtest install code via WebhookOptions initializeWebhookInEnvironment() var err error cfg, err = testenv.Start() Expect(err).NotTo(HaveOccurred()) }, 60) var _ = AfterSuite(func() { fmt.Println("stopping?") Expect(testenv.Stop()).To(Succeed()) }, 60) func initializeWebhookInEnvironment() { namespacedScopeV1 := admissionv1.NamespacedScope failedTypeV1 := admissionv1.Fail equivalentTypeV1 := admissionv1.Equivalent noSideEffectsV1 := admissionv1.SideEffectClassNone webhookPathV1 := "/failing" testenv.WebhookInstallOptions = envtest.WebhookInstallOptions{ ValidatingWebhooks: []admissionv1.ValidatingWebhookConfiguration{ { ObjectMeta: metav1.ObjectMeta{ Name: "deployment-validation-webhook-config", }, TypeMeta: metav1.TypeMeta{ Kind: "ValidatingWebhookConfiguration", APIVersion: "admissionregistration.k8s.io/v1", }, Webhooks: []admissionv1.ValidatingWebhook{ { Name: "deployment-validation.kubebuilder.io", Rules: []admissionv1.RuleWithOperations{ { Operations: []admissionv1.OperationType{"CREATE", "UPDATE"}, Rule: admissionv1.Rule{ APIGroups: []string{"apps"}, APIVersions: []string{"v1"}, Resources: []string{"deployments"}, Scope: &namespacedScopeV1, }, }, }, FailurePolicy: &failedTypeV1, MatchPolicy: &equivalentTypeV1, SideEffects: &noSideEffectsV1, ClientConfig: admissionv1.WebhookClientConfig{ Service: &admissionv1.ServiceReference{ Name: "deployment-validation-service", Namespace: "default", Path: &webhookPathV1, }, }, AdmissionReviewVersions: []string{"v1"}, }, }, }, }, } }