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

Dedupe kinds returned by APIService.availableKinds() #51

Merged
merged 1 commit into from
May 2, 2017

Conversation

benjaminapetersen
Copy link
Contributor

Add logic to dedupe kinds by ignoring "openshift" namespace in APIService.calculateAvailableKinds().

Before:
screen shot 2017-04-25 at 3 03 42 pm

After:
screen shot 2017-04-25 at 3 03 25 pm

Updated Fixtures & tests as well.

@benjaminapetersen
Copy link
Contributor Author

@jwforres @spadgett @jeff-phillips-18 @dtaylor113 I assume I should bump the package.json and bower.json versions, correct?

0.0.17.

@dtaylor113
Copy link
Contributor

@jwforres @spadgett @jeff-phillips-18 @dtaylor113 I assume I should bump the package.json and bower.json versions, correct?

I believe so, and in the updated origin-web-common dir, execute 'npm publish'

@benjaminapetersen
Copy link
Contributor Author

Special perms for that? Covers bower as well?

@jwforres
Copy link
Member

jwforres commented Apr 26, 2017 via email

@spadgett
Copy link
Member

I wouldn't worry about the version bump. We can do it as a follow on.

'ImageStreamImage', 'ImageStreamImport', 'ImageStreamMapping', 'ImageStream', 'ImageStreamTag', 'EgressNetworkPolicy',
'PodDisruptionBudget', 'AppliedClusterResourceQuota', 'Route', 'PodSecurityPolicyReview',
'PodSecurityPolicySelfSubjectReview', 'PodSecurityPolicySubjectReview', 'Template', 'TemplateInstance'
];
Copy link
Member

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?

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 I'm open to ideas here. This is not ideal, agree. Think a subset provides enough assurance?

Copy link
Member

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.

@jwforres
Copy link
Member

jwforres commented Apr 26, 2017 via email

@spadgett
Copy link
Member

Yes checking this whole list is probably excessive, but the test is running off of fixture data not live data

Ah then I'm no so concerned

@benjaminapetersen
Copy link
Contributor Author

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?

result[kind]++;
return result;
}, {});
// TODO: need a review, not sure why these are still duplicated
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@spadgett @jwforres need a comment here. These two still end up with duplication, not sure why. Assuming it is ok?

@benjaminapetersen
Copy link
Contributor Author

@spadgett I did include a bump to the versions because I assume I need to update this dependency in origin-web-console to finish off the trello card. If that doesn't make sense I can drop it back.

@spadgett
Copy link
Member

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 npm publish when this merges.

@benjaminapetersen
Copy link
Contributor Author

Cool, works for me. easy to roll that back.

@jwforres
Copy link
Member

jwforres commented Apr 26, 2017 via email

@benjaminapetersen
Copy link
Contributor Author

Ok, I'll keep this whitelist in the test then.

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);
Copy link
Member

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

Copy link
Contributor Author

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

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);
Copy link
Member

Choose a reason for hiding this comment

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

take this out

Copy link
Contributor Author

Choose a reason for hiding this comment

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

will do

expect( _.difference(onlyClusterSample, allKinds).length ).toEqual(0);
});

it('should not duplicate kinds that exist in both an api group & the openshift namespace', function() {
Copy link
Member

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

Copy link
Contributor Author

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.

expect( _.difference(bothSample, allKinds).length ).toEqual(0);
expect( _.difference(onlyClusterSample, allKinds).length ).toEqual(0);
});

Copy link
Contributor Author

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?

// 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
Copy link
Member

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

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);
Copy link
Member

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

agree! updating.

shouldBeFound.push(found);
}
});
expect(shouldBeFound.length).toEqual(7);
Copy link
Member

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

agree, updating

});

// 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() {
Copy link
Member

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ok dropping this one.

@benjaminapetersen benjaminapetersen force-pushed the dedupe-kinds branch 2 times, most recently from ba7388a to fd83d82 Compare May 1, 2017 15:57
@benjaminapetersen
Copy link
Contributor Author

updated


it('should not return list cluster scoped kinds by default', function() {
var namespacedKinds = _.map(APIService.availableKinds(), 'kind');
expect( _.difference(onlyClusterSample, namespacedKinds).length ).toEqual(6);
Copy link
Member

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ah, agree. oop.

@jwforres jwforres merged commit a5da18d into openshift:master May 2, 2017
@benjaminapetersen benjaminapetersen deleted the dedupe-kinds branch May 2, 2017 14:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants