-
Notifications
You must be signed in to change notification settings - Fork 55
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
Dedupe kinds returned by APIService.availableKinds() #51
Conversation
@jwforres @spadgett @jeff-phillips-18 @dtaylor113 I assume I should bump the
|
I believe so, and in the updated origin-web-common dir, execute 'npm publish' |
Special perms for that? Covers bower as well? |
Yes npm publish is a separate list.
…On Apr 25, 2017 9:39 PM, "Ben Petersen" ***@***.***> wrote:
Special perms for that? Covers bower as well?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#51 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABZk7SIqD6PohQYw78f9liN8n6EIxh8eks5rzqBHgaJpZM4NH7Ap>
.
|
I wouldn't worry about the version bump. We can do it as a follow on. |
test/spec/services/apiServiceSpec.js
Outdated
'ImageStreamImage', 'ImageStreamImport', 'ImageStreamMapping', 'ImageStream', 'ImageStreamTag', 'EgressNetworkPolicy', | ||
'PodDisruptionBudget', 'AppliedClusterResourceQuota', 'Route', 'PodSecurityPolicyReview', | ||
'PodSecurityPolicySelfSubjectReview', 'PodSecurityPolicySubjectReview', 'Template', 'TemplateInstance' | ||
]; |
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 test is going to break often because the kinds will change. I'd rather not maintain this list if we can avoid it.
Is there another way to test? Maybe check that a subset exists and that OpenShift dupes are not there?
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.
Yeah I'm open to ideas here. This is not ideal, agree. Think a subset provides enough assurance?
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.
I'd rather check that a few kinds we know should be there are there, then check that one (or more) cluster-scoped resources we know about isn't in that list. We should also test that the OpenShift resources aren't duplicated.
Yes checking this whole list is probably excessive, but the test is running
off of fixture data not live data @spadgett
…On Wed, Apr 26, 2017 at 10:04 AM, Ben Petersen ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In test/spec/services/apiServiceSpec.js
<#51 (comment)>
:
> +
+ describe('#availableKinds', function() {
+ // at minimum, prove with tests that it is deduplicating by ignoring openshift!
+ it('should return list of kinds that are scoped to a namespace by default', function() {
+ var namespacedKinds = APIService.availableKinds();
+ var expectedNames = [
+ 'Binding', 'ConfigMap', 'Endpoints', 'Event', 'LimitRange', 'PersistentVolumeClaim', 'Pod', 'PodTemplate',
+ 'ReplicationController', 'ResourceQuota', 'Secret', 'ServiceAccount', 'Service', 'StatefulSet', 'DeploymentConfig',
+ 'LocalSubjectAccessReview', 'LocalResourceAccessReview', 'LocalSubjectAccessReview', 'Policy', 'PolicyBinding',
+ 'ResourceAccessReview', 'RoleBindingRestriction', 'RoleBinding', 'Role', 'SelfSubjectRulesReview',
+ 'SubjectAccessReview', 'SubjectRulesReview', 'BuildConfig', 'Build', 'DaemonSet', 'Deployment',
+ 'HorizontalPodAutoscaler', 'Ingress', 'Job', 'NetworkPolicy', 'ReplicaSet', 'ReplicationControllerDummy',
+ 'ImageStreamImage', 'ImageStreamImport', 'ImageStreamMapping', 'ImageStream', 'ImageStreamTag', 'EgressNetworkPolicy',
+ 'PodDisruptionBudget', 'AppliedClusterResourceQuota', 'Route', 'PodSecurityPolicyReview',
+ 'PodSecurityPolicySelfSubjectReview', 'PodSecurityPolicySubjectReview', 'Template', 'TemplateInstance'
+ ];
Yeah I'm open to ideas here. This is not ideal, agree. Think a subset
provides enough assurance?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#51 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABZk7fm3SrxNLw9HeRpaYLJ_CVZOecG_ks5rz08HgaJpZM4NH7Ap>
.
|
Ah then I'm no so concerned |
4106a18
to
09f3248
Compare
I pushed up an update with subsets, def agree it will be easier to maintain & prob tests what we need to. One problem, I'm testing the deduplication, but even ignoring |
09f3248
to
5070fa7
Compare
test/spec/services/apiServiceSpec.js
Outdated
result[kind]++; | ||
return result; | ||
}, {}); | ||
// TODO: need a review, not sure why these are still duplicated |
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.
5070fa7
to
fc37fd4
Compare
@spadgett I did include a bump to the |
Generally I prefer to make the version bump in a separate commit, but it doesn't matter too much. One of us will need to create a release tag and run |
fc37fd4
to
458ba7f
Compare
Cool, works for me. easy to roll that back. |
Those objects were upstreamed to kube and we kept the same name when we
upstreamed them. The SubjectAccessReview types don't show up in Other
Resources anyway, they are virtual resources and won't be List-able. They
are technically "different" according to jordan so don't de-dupe them.
…On Wed, Apr 26, 2017 at 1:08 PM, Ben Petersen ***@***.***> wrote:
I pushed up an update with subsets, def agree it will be easier to
maintain & prob tests what we need to.
One problem, I'm testing the deduplication, but even ignoring openshift
there are two kinds with duplication: LocalSubjectAccessReview, and
SubjectAccessReview. Thoughts?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#51 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABZk7U2eLfvwjoOy-cGeYH86Jdw9HR1Oks5rz3oMgaJpZM4NH7Ap>
.
|
Ok, I'll keep this whitelist in the test then. |
test/spec/services/apiServiceSpec.js
Outdated
it('should return list of kinds that are scoped to a namespace by default', function() { | ||
var namespacedKinds = _.map(APIService.availableKinds(), 'kind'); | ||
// from the fixtures included, we should have 51 namespaced kinds | ||
expect(namespacedKinds.length).toEqual(51); |
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.
eh even using fixture data i dont love this, i'd rather do something like validate the list does not include a known cluster scoped kind
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.
Agree, that makes more sense. I'll update
test/spec/services/apiServiceSpec.js
Outdated
it('should return list of all kinds, including those that are cluster scoped, when passed a truthy argument', function() { | ||
var allKinds = _.map(APIService.availableKinds(true), 'kind'); | ||
// from the fixtures included, we should have 84 total kinds | ||
expect(allKinds.length).toEqual(84); |
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.
take this out
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.
will do
test/spec/services/apiServiceSpec.js
Outdated
expect( _.difference(onlyClusterSample, allKinds).length ).toEqual(0); | ||
}); | ||
|
||
it('should not duplicate kinds that exist in both an api group & the openshift namespace', function() { |
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.
your test is not actually validating this statement, your test is validating there are no duplicates at all (based on current fixture data) except for ones you explicitly allow
i see benefit in having both tests, but they are distinct
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.
Ah, yeah I conflated those into one, will update.
test/spec/services/apiServiceSpec.js
Outdated
expect( _.difference(bothSample, allKinds).length ).toEqual(0); | ||
expect( _.difference(onlyClusterSample, allKinds).length ).toEqual(0); | ||
}); | ||
|
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.
@jwforres I think the following 3 tests are now accurate. Thoughts?
test/spec/services/apiServiceSpec.js
Outdated
// at minimum, prove with tests that it is deduplicating by ignoring openshift! | ||
it('should return list of kinds that are scoped to a namespace by default', function() { | ||
var namespacedKinds = _.map(APIService.availableKinds(), 'kind'); | ||
// from the fixtures included, we should have 51 namespaced kinds |
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.
can you update the comments, they are still based on your old version of the test
test/spec/services/apiServiceSpec.js
Outdated
it('should return list of kinds that are scoped to a namespace by default', function() { | ||
var namespacedKinds = _.map(APIService.availableKinds(), 'kind'); | ||
// from the fixtures included, we should have 51 namespaced kinds | ||
expect( _.difference(bothSample, namespacedKinds).length ).toEqual(0); |
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 doesnt validate that cluster kinds are not included, you need two expectations. So you need a second line here that checks the difference between cluster sample and all kinds is not 0
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.
agree! updating.
test/spec/services/apiServiceSpec.js
Outdated
shouldBeFound.push(found); | ||
} | ||
}); | ||
expect(shouldBeFound.length).toEqual(7); |
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.
instead of hardcoding 7 here, the test-case would be more future-proof if you did k8sAPIStillExistsSample.length that way if someone updates the list they dont need to remember to update the number here
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.
agree, updating
test/spec/services/apiServiceSpec.js
Outdated
}); | ||
|
||
// When a kind is promoted from openshift to kube, for a time, we will allow it to exist in both api groups | ||
it('should not return duplicate kinds, except for those we have promoted from openshift to kube', function() { |
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.
i would eliminate this test altogether, its just not true. there may always be duplicate kinds when we have aggregated api servers doing any number of things, i think your other two tests confirm the right thing, which is that we no longer include oapi in the list of available kinds, but that we do still include /api
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.
ok dropping this one.
ba7388a
to
fd83d82
Compare
updated |
test/spec/services/apiServiceSpec.js
Outdated
|
||
it('should not return list cluster scoped kinds by default', function() { | ||
var namespacedKinds = _.map(APIService.availableKinds(), 'kind'); | ||
expect( _.difference(onlyClusterSample, namespacedKinds).length ).toEqual(6); |
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.
dont hardcode this to '6', set it to onlyClusterSample.length
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.
ah, agree. oop.
…vice.calculateAvailableKinds()
fd83d82
to
8c94a43
Compare
Add logic to dedupe kinds by ignoring "openshift" namespace in APIService.calculateAvailableKinds().
Before:

After:

Updated Fixtures & tests as well.