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

an e2e for testing "openshift.io/imagestreams" count quota #25645

Merged
merged 2 commits into from Oct 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
110 changes: 110 additions & 0 deletions test/extended/quota/resourcequota.go
@@ -0,0 +1,110 @@
package quota

import (
"context"
"fmt"
"time"

g "github.com/onsi/ginkgo"
o "github.com/onsi/gomega"

imagev1 "github.com/openshift/api/image/v1"
exutil "github.com/openshift/origin/test/extended/util"

corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/equality"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
utilwait "k8s.io/apimachinery/pkg/util/wait"
"k8s.io/client-go/kubernetes"
)

var _ = g.Describe("[sig-api-machinery][Feature:ResourceQuota]", func() {
defer g.GinkgoRecover()
oc := exutil.NewCLI("object-count-rq")

g.Describe("Object count", func() {
g.It(fmt.Sprintf("should properly count the number of imagestreams resources"), func() {
clusterAdminKubeClient := oc.AdminKubeClient()
clusterAdminImageClient := oc.AdminImageClient().ImageV1()
testProject := oc.CreateProject()
testResourceQuotaName := "count-imagestreams"

rq := &corev1.ResourceQuota{
ObjectMeta: metav1.ObjectMeta{Name: testResourceQuotaName, Namespace: testProject},
Spec: corev1.ResourceQuotaSpec{
Hard: corev1.ResourceList{
"openshift.io/imagestreams": resource.MustParse("10"),
},
},
}

_, err := clusterAdminKubeClient.CoreV1().ResourceQuotas(testProject).Create(context.Background(), rq, metav1.CreateOptions{})
o.Expect(err).NotTo(o.HaveOccurred())
waitForResourceQuotaStatus(clusterAdminKubeClient, testResourceQuotaName, testProject, func(actualResourceQuota *corev1.ResourceQuota) error {
if !equality.Semantic.DeepEqual(actualResourceQuota.Spec.Hard, actualResourceQuota.Status.Hard) {
return fmt.Errorf("%#v != %#v", actualResourceQuota.Spec.Hard, actualResourceQuota.Status.Hard)
}
expectedUsedStatus := corev1.ResourceList{
"openshift.io/imagestreams": resource.MustParse("0"),
}
if !equality.Semantic.DeepEqual(actualResourceQuota.Status.Used, expectedUsedStatus) {
return fmt.Errorf("unexpected current total usage: actul: %#v, expected: %#v", actualResourceQuota.Status.Used, expectedUsedStatus)
}
return nil
})

g.By("creating an image stream and checking the usage")
imageStream := &imagev1.ImageStream{
ObjectMeta: metav1.ObjectMeta{Name: "empty-is"},
}
_, err = clusterAdminImageClient.ImageStreams(testProject).Create(context.Background(), imageStream, metav1.CreateOptions{})
o.Expect(err).NotTo(o.HaveOccurred())
err = waitForResourceQuotaStatus(clusterAdminKubeClient, testResourceQuotaName, testProject, func(actualResourceQuota *corev1.ResourceQuota) error {
expectedUsedStatus := corev1.ResourceList{
"openshift.io/imagestreams": resource.MustParse("1"),
}
if !equality.Semantic.DeepEqual(actualResourceQuota.Status.Used, expectedUsedStatus) {
return fmt.Errorf("unexpected current total usage: actual: %#v, expected: %#v", actualResourceQuota.Status.Used, expectedUsedStatus)
}
return nil
})
o.Expect(err).NotTo(o.HaveOccurred())

g.By("deleting the image stream and checking the usage")
err = clusterAdminImageClient.ImageStreams(testProject).Delete(context.Background(), imageStream.Name, metav1.DeleteOptions{})
o.Expect(err).NotTo(o.HaveOccurred())
err = waitForResourceQuotaStatus(clusterAdminKubeClient, testResourceQuotaName, testProject, func(actualResourceQuota *corev1.ResourceQuota) error {
expectedUsedStatus := corev1.ResourceList{
"openshift.io/imagestreams": resource.MustParse("0"),
}
if !equality.Semantic.DeepEqual(actualResourceQuota.Status.Used, expectedUsedStatus) {
return fmt.Errorf("unexpected current total usage: actual: %v, expected: %v", actualResourceQuota.Status.Used, expectedUsedStatus)
}
return nil
})
o.Expect(err).NotTo(o.HaveOccurred())
})
})
})

func waitForResourceQuotaStatus(clusterAdminKubeClient kubernetes.Interface, name string, namespace string, conditionFn func(*corev1.ResourceQuota) error) error {
var pollErr error
err := utilwait.PollImmediate(100*time.Millisecond, 30*time.Second, func() (done bool, err error) {
quota, err := clusterAdminKubeClient.CoreV1().ResourceQuotas(namespace).Get(context.Background(), name, metav1.GetOptions{})
if err != nil {
pollErr = err
return false, nil
}
err = conditionFn(quota)
if err == nil {
return true, nil
}
pollErr = err
return false, nil
})
if err != nil {
err = fmt.Errorf("%s: %s", err, pollErr)
}
return err
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.