Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests for VM webhook #809

Merged
merged 19 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions test/migration/setup/setup_migration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ import (

func TestSetupMigration(t *testing.T) {
// given
// set env var to skip the mutating webhook check on migration setup temporarily since the old deployment
// will deploy the webhooks with the old configuration but the tests will be expecting the new configuration
// This should be removed after the PR is merged
t.Setenv("skip-mutating-webhook-check-on-setup", "true")
alexeykazakov marked this conversation as resolved.
Show resolved Hide resolved
awaitilities := WaitForDeployments(t)

runner := migration.SetupMigrationRunner{
Expand Down
106 changes: 78 additions & 28 deletions testsupport/wait/member.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"encoding/json"
"fmt"
"os"
"reflect"
"strings"
"testing"
Expand Down Expand Up @@ -2149,7 +2150,7 @@ func (a *MemberAwaitility) WaitForMemberWebhooks(t *testing.T, image string) {
a.waitForService(t)
a.waitForWebhookDeployment(t, image)
ca := a.verifySecret(t)
a.verifyUserPodWebhookConfig(t, ca)
a.verifyMutatingWebhookConfig(t, ca)
a.verifyValidatingWebhookConfig(t, ca)
}

Expand Down Expand Up @@ -2236,35 +2237,84 @@ func (a *MemberAwaitility) verifySecret(t *testing.T) []byte {
return ca
}

func (a *MemberAwaitility) verifyUserPodWebhookConfig(t *testing.T, ca []byte) {
t.Logf("checking MutatingWebhookConfiguration '%s'", "sandbox-users-pods")
func (a *MemberAwaitility) verifyMutatingWebhookConfig(t *testing.T, ca []byte) {
if val := os.Getenv("skip-mutating-webhook-check-on-setup"); val == "true" {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minor thing - this will disable also the test for the users pod mutating webhook if I'm not wrong. But I guess not a big deal since you'll renable it quickly once the member pr is merged.

Unless you end up like me , and realize 2 weeks later the the test for the webhook is still disabled 🤣

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, but both are still checked in the after migration test so it's okay. But yes, I'll have a reminder to enable it again haha

// skipped temporarily only for setup migration test but applies for after migration test
// This should be removed after the PR is merged
return
}

t.Logf("checking MutatingWebhookConfiguration")
actualMutWbhConf := &admv1.MutatingWebhookConfiguration{}
a.waitForResource(t, "", "member-operator-webhook", actualMutWbhConf)
assert.Equal(t, bothWebhookLabels, actualMutWbhConf.Labels)
require.Len(t, actualMutWbhConf.Webhooks, 1)

webhook := actualMutWbhConf.Webhooks[0]
assert.Equal(t, "users.pods.webhook.sandbox", webhook.Name)
assert.Equal(t, []string{"v1"}, webhook.AdmissionReviewVersions)
assert.Equal(t, admv1.SideEffectClassNone, *webhook.SideEffects)
assert.Equal(t, int32(5), *webhook.TimeoutSeconds)
assert.Equal(t, admv1.NeverReinvocationPolicy, *webhook.ReinvocationPolicy)
assert.Equal(t, admv1.Ignore, *webhook.FailurePolicy)
assert.Equal(t, admv1.Equivalent, *webhook.MatchPolicy)
assert.Equal(t, codereadyToolchainProviderLabel, webhook.NamespaceSelector.MatchLabels)
assert.Equal(t, ca, webhook.ClientConfig.CABundle)
assert.Equal(t, "member-operator-webhook", webhook.ClientConfig.Service.Name)
assert.Equal(t, a.Namespace, webhook.ClientConfig.Service.Namespace)
assert.Equal(t, "/mutate-users-pods", *webhook.ClientConfig.Service.Path)
assert.Equal(t, int32(443), *webhook.ClientConfig.Service.Port)
require.Len(t, webhook.Rules, 1)

rule := webhook.Rules[0]
//assert.Equal(t, []admv1.OperationType{admv1.Create}, rule.Operations)
assert.Equal(t, []string{""}, rule.APIGroups)
assert.Equal(t, []string{"v1"}, rule.APIVersions)
assert.Equal(t, []string{"pods"}, rule.Resources)
assert.Equal(t, admv1.NamespacedScope, *rule.Scope)
require.Len(t, actualMutWbhConf.Webhooks, 2)

type Rule struct {
Operations []admv1.OperationType
APIGroups []string
APIVersions []string
Resources []string
}

tests := map[string]struct {
Index int
Name string
Path string
FailurePolicy admv1.FailurePolicyType
Rule Rule
}{
"users pods webhook": {
Index: 0,
Name: "users.pods.webhook.sandbox",
Path: "/mutate-users-pods",
FailurePolicy: admv1.Ignore,
Rule: Rule{
Operations: []admv1.OperationType{"CREATE"},
APIGroups: []string{""},
APIVersions: []string{"v1"},
Resources: []string{"pods"},
},
},
"virtual machine webhook": {
Index: 1,
Name: "users.virtualmachines.webhook.sandbox",
Path: "/mutate-virtual-machines",
FailurePolicy: admv1.Fail,
Rule: Rule{
Operations: []admv1.OperationType{"CREATE"},
APIGroups: []string{"kubevirt.io"},
APIVersions: []string{"v1"},
Resources: []string{"virtualmachines"},
},
},
}
for k, tc := range tests {
t.Run(k, func(t *testing.T) {
webhook := actualMutWbhConf.Webhooks[tc.Index]
assert.Equal(t, tc.Name, webhook.Name)
assert.Equal(t, []string{"v1"}, webhook.AdmissionReviewVersions)
assert.Equal(t, admv1.SideEffectClassNone, *webhook.SideEffects)
assert.Equal(t, int32(5), *webhook.TimeoutSeconds)
assert.Equal(t, admv1.NeverReinvocationPolicy, *webhook.ReinvocationPolicy)
assert.Equal(t, tc.FailurePolicy, *webhook.FailurePolicy)
assert.Equal(t, admv1.Equivalent, *webhook.MatchPolicy)
assert.Equal(t, codereadyToolchainProviderLabel, webhook.NamespaceSelector.MatchLabels)
assert.Equal(t, ca, webhook.ClientConfig.CABundle)
assert.Equal(t, "member-operator-webhook", webhook.ClientConfig.Service.Name)
assert.Equal(t, a.Namespace, webhook.ClientConfig.Service.Namespace)
assert.Equal(t, tc.Path, *webhook.ClientConfig.Service.Path)
assert.Equal(t, int32(443), *webhook.ClientConfig.Service.Port)
require.Len(t, webhook.Rules, 1)

rule := webhook.Rules[0]
assert.Equal(t, tc.Rule.Operations, rule.Operations)
assert.Equal(t, tc.Rule.APIGroups, rule.APIGroups)
assert.Equal(t, tc.Rule.APIVersions, rule.APIVersions)
assert.Equal(t, tc.Rule.Resources, rule.Resources)
assert.Equal(t, admv1.NamespacedScope, *rule.Scope)
})
}
}

func (a *MemberAwaitility) verifyValidatingWebhookConfig(t *testing.T, ca []byte) {
Expand Down Expand Up @@ -2301,7 +2351,7 @@ func (a *MemberAwaitility) verifyValidatingWebhookConfig(t *testing.T, ca []byte
assert.Equal(t, []string{"v1"}, checlusterWebhook.AdmissionReviewVersions)
assert.Equal(t, admv1.SideEffectClassNone, *checlusterWebhook.SideEffects)
assert.Equal(t, int32(5), *checlusterWebhook.TimeoutSeconds)
assert.Equal(t, admv1.Ignore, *checlusterWebhook.FailurePolicy)
assert.Equal(t, admv1.Fail, *checlusterWebhook.FailurePolicy)
assert.Equal(t, admv1.Equivalent, *checlusterWebhook.MatchPolicy)
assert.Equal(t, codereadyToolchainProviderLabel, checlusterWebhook.NamespaceSelector.MatchLabels)
assert.Equal(t, ca, checlusterWebhook.ClientConfig.CABundle)
Expand Down
Loading