-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Switch image quota to shared informers #12088
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,13 @@ package image | |
|
||
import ( | ||
"testing" | ||
"time" | ||
|
||
kapi "k8s.io/kubernetes/pkg/api" | ||
"k8s.io/kubernetes/pkg/client/cache" | ||
kquota "k8s.io/kubernetes/pkg/quota" | ||
|
||
"github.com/openshift/origin/pkg/client/testclient" | ||
oscache "github.com/openshift/origin/pkg/client/cache" | ||
imagetest "github.com/openshift/origin/pkg/image/admission/testutil" | ||
imageapi "github.com/openshift/origin/pkg/image/api" | ||
) | ||
|
@@ -79,10 +81,17 @@ func TestImageStreamEvaluatorUsageStats(t *testing.T) { | |
expectedISCount: 1, | ||
}, | ||
} { | ||
fakeClient := &testclient.Fake{} | ||
fakeClient.AddReactor("list", "imagestreams", imagetest.GetFakeImageStreamListHandler(t, tc.iss...)) | ||
|
||
evaluator := NewImageStreamEvaluator(fakeClient) | ||
isInformer := cache.NewSharedIndexInformer( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is just a straight counting evaluator, right? If so, I'm not sure you need a test at all. The counting is checked upstream. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You know I like more then less testing 😉 |
||
&cache.ListWatch{}, | ||
&imageapi.ImageStream{}, | ||
2*time.Minute, | ||
cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, | ||
) | ||
store := oscache.StoreToImageStreamLister{Indexer: isInformer.GetIndexer()} | ||
for _, is := range tc.iss { | ||
store.Indexer.Add(&is) | ||
} | ||
evaluator := NewImageStreamEvaluator(&store) | ||
|
||
stats, err := evaluator.UsageStats(kquota.UsageStatsOptions{Namespace: tc.namespace}) | ||
if err != nil { | ||
|
@@ -158,18 +167,23 @@ func TestImageStreamEvaluatorUsage(t *testing.T) { | |
expectedISCount: 1, | ||
}, | ||
} { | ||
|
||
newIS := &imageapi.ImageStream{ | ||
ObjectMeta: kapi.ObjectMeta{ | ||
Namespace: "test", | ||
Name: "is", | ||
}, | ||
} | ||
|
||
fakeClient := &testclient.Fake{} | ||
fakeClient.AddReactor("get", "imagestreams", imagetest.GetFakeImageStreamGetHandler(t, tc.iss...)) | ||
|
||
evaluator := NewImageStreamEvaluator(fakeClient) | ||
isInformer := cache.NewSharedIndexInformer( | ||
&cache.ListWatch{}, | ||
&imageapi.ImageStream{}, | ||
2*time.Minute, | ||
cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, | ||
) | ||
store := oscache.StoreToImageStreamLister{Indexer: isInformer.GetIndexer()} | ||
for _, is := range tc.iss { | ||
store.Indexer.Add(&is) | ||
} | ||
evaluator := NewImageStreamEvaluator(&store) | ||
|
||
usage := evaluator.Usage(newIS) | ||
expectedUsage := imagetest.ExpectedResourceListFor(tc.expectedISCount) | ||
|
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.
Is this one used for admission? The admission one probably doesn't need the informers.
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.
This one already accepted informers, but just k8s ones, but I needed both k8s and origin ones. I've also moved this parameter from the end of this function call as the first argument, to make it similar to other methods. And since
quota.NewAllResourceQuotaRegistry
under covers creates evaluators which are now switched to informers, it's needed this way.