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

homogenize fake discovery #62069

Conversation

yue9944882
Copy link
Member

@yue9944882 yue9944882 commented Apr 3, 2018

What this PR does / why we need it:

Cleans fake discovery and leaves the only one defined in client-go/discovery

Which issue(s) this PR fixes (optional, in fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when PR gets merged):
Fixes #62031

Special notes for your reviewer:

Release note:

NONE

@k8s-ci-robot k8s-ci-robot added release-note-none Denotes a PR that doesn't merit a release note. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. labels Apr 3, 2018
@k8s-ci-robot k8s-ci-robot requested review from soltysh and zmerlynn April 3, 2018 16:12
@yue9944882
Copy link
Member Author

/kind cleanup
/assign
/sig api-machinery

@k8s-ci-robot k8s-ci-robot added kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. labels Apr 3, 2018
@yue9944882 yue9944882 force-pushed the homogenize-fake-discovery-defs branch 5 times, most recently from 213d849 to 1bcb804 Compare April 4, 2018 03:26
@yue9944882
Copy link
Member Author

/cc @liggitt

@k8s-ci-robot k8s-ci-robot requested a review from liggitt April 8, 2018 06:33
@wenjiaswe
Copy link
Contributor

cc @yliaog

Verb: "get",
Resource: schema.GroupVersionResource{Resource: "resource"},
}
c.Invokes(action, nil)
Copy link
Contributor

Choose a reason for hiding this comment

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

what's the reason for the change here?

Copy link
Member Author

Choose a reason for hiding this comment

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

@yliaog I believe these codes are useless here, aren't they? Am I missing sth?

Copy link
Contributor

Choose a reason for hiding this comment

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

i tend to agree with you, however, i don't quite understand why the code for c.Invoke(...) was introduced in the first place, similarly for the other methods ServerResourcesForGroupVersion(), ServerGroups(), ServerVersion()

Copy link
Member Author

Choose a reason for hiding this comment

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

Yeah.. IDK either. But I'm pretty sure it should be cleaned up anyway.

Copy link
Member Author

Choose a reason for hiding this comment

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

Cleaning up for for other methods too :)

@yue9944882
Copy link
Member Author

/test pull-kubernetes-bazel-test

@@ -37,11 +37,6 @@ type FakeDiscovery struct {
}
Copy link
Contributor

Choose a reason for hiding this comment

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

could you update the comment above the type, that mentioned testing.Fake.Invoke

@yliaog
Copy link
Contributor

yliaog commented Apr 17, 2018

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Apr 17, 2018
@yue9944882 yue9944882 force-pushed the homogenize-fake-discovery-defs branch from ba4ef7c to d35a278 Compare April 17, 2018 17:39
@k8s-ci-robot k8s-ci-robot removed the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Apr 17, 2018
@yue9944882
Copy link
Member Author

@yliaog I just rebased to fix the bazel build failure. Could you please take another look at this once it's all green in the CI? :)

@yliaog
Copy link
Contributor

yliaog commented Apr 17, 2018

Sure

@yue9944882
Copy link
Member Author

@yliaog PTAL thx :)

@yliaog
Copy link
Contributor

yliaog commented Apr 18, 2018

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Apr 18, 2018
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: yliaog, yue9944882
To fully approve this pull request, please assign additional approvers.
We suggest the following additional approver: smarterclayton

Assign the PR to them by writing /assign @smarterclayton in a comment when ready.

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@soltysh
Copy link
Contributor

soltysh commented Apr 19, 2018

Please squash your changes into a single commit then I'll approve the kubectl bits, you still need approval for the client-go, though.

@yue9944882 yue9944882 force-pushed the homogenize-fake-discovery-defs branch from d35a278 to bb728a5 Compare April 19, 2018 09:48
@k8s-ci-robot
Copy link
Contributor

New changes are detected. LGTM label has been removed.

@k8s-ci-robot k8s-ci-robot removed the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Apr 19, 2018
@yue9944882
Copy link
Member Author

@soltysh Thanks, PTAL

@yue9944882
Copy link
Member Author

/cc @deads2k How do you think about approving this PR plz?

@yue9944882
Copy link
Member Author

/test pull-kubernetes-e2e-kops-aws

@deads2k
Copy link
Contributor

deads2k commented Apr 19, 2018

We need to be able to track actions. There are two reasons for using a mock:

  1. to get back a return value (you've solved this I think)
  2. to make sure that your code is calling the correct client methods.

this pull eliminates the ability to do item 2.

Verb: "get",
Resource: schema.GroupVersionResource{Resource: "group"},
}
c.Invokes(action, nil)
Copy link
Contributor

Choose a reason for hiding this comment

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

I think we need this or something very much like it.

@yue9944882
Copy link
Member Author

  1. to make sure that your code is calling the correct client methods.

@deads2k Thanks. But it somehow still looks confusing to me THO, because these code might only make a difference by panics when *testing.Fake is nil.

I'll revert the changes of this part.

@yue9944882 yue9944882 force-pushed the homogenize-fake-discovery-defs branch from bb728a5 to 69c7b04 Compare April 19, 2018 14:50
cleaning up fake discovery impl

update fake discovery comment

rebase and fixes bazel compilation failure
@yue9944882 yue9944882 force-pushed the homogenize-fake-discovery-defs branch from 69c7b04 to 6b3ab65 Compare April 19, 2018 14:51
@yue9944882
Copy link
Member Author

/test pull-kubernetes-kubemark-e2e-gce

1 similar comment
@yue9944882
Copy link
Member Author

/test pull-kubernetes-kubemark-e2e-gce

@yue9944882
Copy link
Member Author

@deads2k Friendly ping for a review 😃

@k8s-ci-robot
Copy link
Contributor

@yue9944882: PR needs rebase.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Apr 26, 2018
@fejta-bot
Copy link

Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually close.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jul 25, 2018
@fejta-bot
Copy link

Stale issues rot after 30d of inactivity.
Mark the issue as fresh with /remove-lifecycle rotten.
Rotten issues close after an additional 30d of inactivity.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/lifecycle rotten

@k8s-ci-robot k8s-ci-robot added lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. and removed lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. labels Aug 24, 2018
@fejta-bot
Copy link

Rotten issues close after 30d of inactivity.
Reopen the issue with /reopen.
Mark the issue as fresh with /remove-lifecycle rotten.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/close

@k8s-ci-robot
Copy link
Contributor

@fejta-bot: Closing this PR.

In response to this:

Rotten issues close after 30d of inactivity.
Reopen the issue with /reopen.
Mark the issue as fresh with /remove-lifecycle rotten.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/close

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. release-note-none Denotes a PR that doesn't merit a release note. sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Too many defs of FakeDiscovery: Needs to be homogenized
7 participants