-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Fake clientset not sending events #54075
Comments
/sig api-machinery |
@kubernetes/sig-api-machinery-bugs |
@JosephSalisbury: Reiterating the mentions to trigger a notification: In response to this:
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. |
The fake clientset has a // setup
client := fake.NewSimpleClientset()
watcher := watch.NewFake()
// note, testcore is "k8s.io/client-go/testing"
client.PrependWatchReactor("pods", testcore.DefaultWatchReactor(watcher, nil))
// simulate add/update/delete watch events
watcher.Add(myPod)
// test something that uses the client to do a watch
someController.doSomething(client) @caesarxuchao @deads2k @sttts do you think it's worth trying to make the fake clientset send out watch events in response to CRUD operations? |
Isn't a fake object always a compromise in terms of completeness? It will never be a full apiserver. Would it make tests much easier if it sent out watch events? |
@sttts I'm happy with the watch reactor semantics we have now. I'd vote that if one wants to test the client CRUD -> watch event flow, it should be an integration test with an apiserver in the middle. |
For context, I'm trying to test a controller/operator that uses a watch internally. Passing in a fake clientset is straightforward, having to simulate the watch events is a bit trickier. I would agree that a larger integration test is probably the 'better' way, but I would like to be able to unit-test watches. Happy to provide some PRs, if there consensus on the value here. |
I would be fine if someone undertook the effort to make the fake clientset generate watch events, but I think we have other avenues we can use right now that make it possible to test (e.g. making the sync handler a function pointer so it's easier to unit test, using the fake watch + reactor pattern). @JosephSalisbury maybe you could expand a bit on how your code is structured and we can see if we can help you determine a way to unit test it? |
I don't object. If added complexity and effort to implement it pays off enough in test coverage & simplicity of tests. |
I couldn't have said it any better. |
@JosephSalisbury sounds like everyone agrees it would be fine to do, but that it's likely to be a lot of work and we're not prepared to do it ourselves. If you want to undertake the effort, I'd suggest starting with converting just a few exemplar packages and having one (or more) of us four look at your approach before tackling the entire codebase. |
@deads2k @sttts @ncdc @JosephSalisbury @caesarxuchao |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. feat(fakeclient): push event on watched channel on add/update/delete **What this PR does / why we need it**: This PR enables watch function for kubernetes [fakeclient](https://github.com/kubernetes/kubernetes/blob/1bcf0b0a227d57057bde1f6fd50f26224483b324/staging/src/k8s.io/client-go/kubernetes/fake/clientset_generated.go#L88). This fake client add watchReactorFunction by wrapping [watch.NewFake](https://github.com/kubernetes/kubernetes/blob/1bcf0b0a227d57057bde1f6fd50f26224483b324/staging/src/k8s.io/client-go/kubernetes/fake/clientset_generated.go#L98) which is a `chan Event` but actually nothing pushes objects into this channel. So all watch function called by fake client will never return or never receive any object. This PR intercepts ReactionFunc of `Create / Update / DeleteActionImpl` and will push the requested object to channel. 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 #54075 **Special notes for your reviewer**: **Release note**: ```dev-release-note enable watch function for fake client ```
Is this a BUG REPORT or FEATURE REQUEST?:
/kind bug
What happened:
executing the following code:
prints
What you expected to happen:
i would expect the "an event occurred" line to be printed, when the watch channel receives the event for the service creation
How to reproduce it (as minimally and precisely as possible):
go build
the above, execute it.Anything else we need to know?:
Environment:
kubectl version
):Latest client-go (
076e344c86e52f088b78615f815b245f6d613537
)uname -a
):The text was updated successfully, but these errors were encountered: