-
Notifications
You must be signed in to change notification settings - Fork 40
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
OCPQE-27708 - Annotationtestsgcp #370
Open
miyadav
wants to merge
3
commits into
openshift:master
Choose a base branch
from
miyadav:annotationtestsgcp
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
package annotations | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"time" | ||
|
||
configv1 "github.com/openshift/api/config/v1" | ||
corev1 "k8s.io/api/core/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
"sigs.k8s.io/controller-runtime/pkg/client/config" | ||
|
||
"sigs.k8s.io/controller-runtime/pkg/envtest/komega" | ||
|
||
"github.com/openshift/cluster-api-actuator-pkg/pkg/framework" | ||
|
||
g "github.com/onsi/ginkgo/v2" | ||
o "github.com/onsi/gomega" | ||
) | ||
|
||
var ( | ||
annotationsToTest = map[string][]string{ | ||
"traffic-policy.network.alpha.openshift.io/local-with-fallback": {"true"}, | ||
"alpha.cloud.google.com/load-balancer-backend-share": {""}, | ||
"networking.gke.io/internal-load-balancer-allow-global-access": {"true"}, | ||
"networking.gke.io/internal-load-balancer-subnet": {""}, | ||
"cloud.google.com/network-tier": {"Standard", "Premium", "InvalidValue"}, | ||
} | ||
) | ||
|
||
const ( | ||
namespace = "openshift-machine-api" | ||
) | ||
|
||
var cl client.Client | ||
|
||
var _ = g.Describe("Service Annotation tests GCP", framework.LabelCCM, framework.LabelDisruptive, g.Ordered, func() { | ||
var ( | ||
ctx context.Context | ||
platform configv1.PlatformType | ||
createdServices []string | ||
) | ||
|
||
g.BeforeAll(func() { | ||
cfg, err := config.GetConfig() | ||
o.Expect(err).ToNot(o.HaveOccurred(), "Failed to GetConfig") | ||
|
||
cl, err = client.New(cfg, client.Options{}) | ||
o.Expect(err).NotTo(o.HaveOccurred(), "Failed to create Kubernetes client for test") | ||
komega.SetClient(cl) | ||
ctx = framework.GetContext() | ||
platform, err = framework.GetPlatform(ctx, cl) | ||
fmt.Println("platform is ", platform) | ||
o.Expect(err).ToNot(o.HaveOccurred(), "Failed to get platform") | ||
if platform != configv1.GCPPlatformType { | ||
g.Skip("Skipping GCP E2E tests") | ||
} | ||
|
||
}) | ||
|
||
g.AfterAll(func() { | ||
for _, svcName := range createdServices { | ||
service := &corev1.Service{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: svcName, | ||
Namespace: namespace, | ||
}, | ||
} | ||
_ = cl.Delete(ctx, service) | ||
} | ||
}) | ||
|
||
g.It("should validate annotations including network-tier and IP changes", func() { | ||
g.By("Create service without annotations") | ||
service := &corev1.Service{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "test-service-annotation-validation", | ||
Namespace: namespace, | ||
}, | ||
Spec: corev1.ServiceSpec{ | ||
Type: corev1.ServiceTypeLoadBalancer, | ||
Selector: map[string]string{"app": "test"}, | ||
Ports: []corev1.ServicePort{{ | ||
Port: 80, | ||
}}, | ||
}, | ||
} | ||
o.Expect(cl.Create(ctx, service)).To(o.Succeed()) | ||
createdServices = append(createdServices, service.Name) | ||
|
||
var lastIngressIP string | ||
o.Eventually(func() (string, error) { | ||
updatedService := &corev1.Service{} | ||
err := cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, updatedService) | ||
if err != nil { | ||
return "", fmt.Errorf("failed to get updated service: %w", err) | ||
} | ||
if len(updatedService.Status.LoadBalancer.Ingress) > 0 { | ||
lastIngressIP = updatedService.Status.LoadBalancer.Ingress[0].IP | ||
return lastIngressIP, nil | ||
} | ||
|
||
return "", nil | ||
}, 2*time.Minute, 10*time.Second).ShouldNot(o.BeEmpty(), "LoadBalancer service did not get an external IP") | ||
|
||
for key, values := range annotationsToTest { | ||
for _, value := range values { | ||
g.By(fmt.Sprintf("Adding annotation: %s=%s", key, value)) | ||
latestService := &corev1.Service{} | ||
o.Expect(cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, latestService)).To(o.Succeed()) | ||
|
||
if latestService.Annotations == nil { | ||
latestService.Annotations = make(map[string]string) | ||
} | ||
latestService.Annotations[key] = value | ||
|
||
if key == "cloud.google.com/network-tier" && value != "Standard" && value != "Premium" { | ||
o.Expect(cl.Update(ctx, latestService)).ToNot(o.Succeed(), "The annotation 'cloud.google.com/network-tier', if specified, must be either 'Standard' or 'Premium'") | ||
continue | ||
} | ||
|
||
o.Expect(cl.Update(ctx, latestService)).To(o.Succeed()) | ||
|
||
if key == "cloud.google.com/network-tier" { | ||
g.By(fmt.Sprintf("Validating Ingress IP change after annotation update: %s=%s", key, value)) | ||
o.Eventually(func() (string, error) { | ||
updatedService := &corev1.Service{} | ||
err := cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, updatedService) | ||
if err != nil { | ||
return "", fmt.Errorf("failed to get updated service: %w", err) | ||
} | ||
if len(updatedService.Status.LoadBalancer.Ingress) > 0 { | ||
return updatedService.Status.LoadBalancer.Ingress[0].IP, nil | ||
} | ||
|
||
return "", nil | ||
}, 4*time.Minute, 10*time.Second).ShouldNot(o.Equal(lastIngressIP), "Ingress IP did not change after annotation update") | ||
} | ||
} | ||
} | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
o.Expect(cl.Update(ctx, latestService)).To(o.Succeed(), "Failed to update service with annotation")