|
4 | 4 | "fmt"
|
5 | 5 | "testing"
|
6 | 6 |
|
| 7 | + admissionregistrationv1 "k8s.io/api/admissionregistration/v1" |
7 | 8 | metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
8 | 9 |
|
9 | 10 | "github.com/stretchr/testify/assert"
|
@@ -358,6 +359,60 @@ func TestSetPhaseWithConditions(t *testing.T) {
|
358 | 359 | }
|
359 | 360 | }
|
360 | 361 |
|
| 362 | +func TestWebhookDescGetValidatingConfigurations(t *testing.T) { |
| 363 | + expectedPort := int32(444) |
| 364 | + timeout := int32(32) |
| 365 | + webhookPath := "/test" |
| 366 | + failurePolicy := admissionregistrationv1.Fail |
| 367 | + matchPolicy := admissionregistrationv1.Exact |
| 368 | + sideEffect := admissionregistrationv1.SideEffectClassNone |
| 369 | + webhookDesc := WebhookDescription{ |
| 370 | + GenerateName: "foo-webhook", |
| 371 | + Type: ValidatingAdmissionWebhook, |
| 372 | + DeploymentName: "foo-deployment", |
| 373 | + ContainerPort: expectedPort, |
| 374 | + AdmissionReviewVersions: []string{"v1beta1", "v1"}, |
| 375 | + SideEffects: &sideEffect, |
| 376 | + MatchPolicy: &matchPolicy, |
| 377 | + FailurePolicy: &failurePolicy, |
| 378 | + ObjectSelector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}}, |
| 379 | + TimeoutSeconds: &timeout, |
| 380 | + WebhookPath: &webhookPath, |
| 381 | + Rules: []admissionregistrationv1.RuleWithOperations{ |
| 382 | + admissionregistrationv1.RuleWithOperations{ |
| 383 | + Operations: []admissionregistrationv1.OperationType{}, |
| 384 | + Rule: admissionregistrationv1.Rule{ |
| 385 | + APIGroups: []string{"*"}, |
| 386 | + APIVersions: []string{"*"}, |
| 387 | + Resources: []string{"*"}, |
| 388 | + }, |
| 389 | + }, |
| 390 | + }, |
| 391 | + } |
| 392 | + vWebhookConfig := webhookDesc.GetValidatingWebhook("foo", nil, nil) |
| 393 | + require.Equal(t, expectedPort, *vWebhookConfig.ClientConfig.Service.Port) |
| 394 | + require.Equal(t, webhookDesc.Rules, vWebhookConfig.Rules) |
| 395 | + require.Equal(t, webhookDesc.FailurePolicy, vWebhookConfig.FailurePolicy) |
| 396 | + require.Equal(t, webhookDesc.MatchPolicy, vWebhookConfig.MatchPolicy) |
| 397 | + require.Equal(t, webhookDesc.ObjectSelector, vWebhookConfig.ObjectSelector) |
| 398 | + require.Equal(t, webhookDesc.SideEffects, vWebhookConfig.SideEffects) |
| 399 | + require.Equal(t, webhookDesc.TimeoutSeconds, vWebhookConfig.TimeoutSeconds) |
| 400 | + require.Equal(t, webhookDesc.AdmissionReviewVersions, vWebhookConfig.AdmissionReviewVersions) |
| 401 | + require.Equal(t, webhookDesc.WebhookPath, vWebhookConfig.ClientConfig.Service.Path) |
| 402 | + |
| 403 | + mWebhookConfig := webhookDesc.GetMutatingWebhook("foo", nil, nil) |
| 404 | + require.Equal(t, expectedPort, *mWebhookConfig.ClientConfig.Service.Port) |
| 405 | + require.Equal(t, webhookDesc.Rules, mWebhookConfig.Rules) |
| 406 | + require.Equal(t, webhookDesc.FailurePolicy, mWebhookConfig.FailurePolicy) |
| 407 | + require.Equal(t, webhookDesc.MatchPolicy, mWebhookConfig.MatchPolicy) |
| 408 | + require.Equal(t, webhookDesc.ObjectSelector, mWebhookConfig.ObjectSelector) |
| 409 | + require.Equal(t, webhookDesc.SideEffects, mWebhookConfig.SideEffects) |
| 410 | + require.Equal(t, webhookDesc.TimeoutSeconds, mWebhookConfig.TimeoutSeconds) |
| 411 | + require.Equal(t, webhookDesc.AdmissionReviewVersions, mWebhookConfig.AdmissionReviewVersions) |
| 412 | + require.Equal(t, webhookDesc.ReinvocationPolicy, mWebhookConfig.ReinvocationPolicy) |
| 413 | + require.Equal(t, webhookDesc.WebhookPath, mWebhookConfig.ClientConfig.Service.Path) |
| 414 | +} |
| 415 | + |
361 | 416 | func helperNewConditions(count int) []ClusterServiceVersionCondition {
|
362 | 417 | conditions := make([]ClusterServiceVersionCondition, 0)
|
363 | 418 |
|
|
0 commit comments