-
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
feat(fakeclient): push event on watched channel on add/update/delete #57504
feat(fakeclient): push event on watched channel on add/update/delete #57504
Conversation
4045923
to
de205ec
Compare
de205ec
to
9016565
Compare
BTW I previously submitted a PR and it's merged. Why didn't I have 'Contributor' tag on my dialog? |
/ok-to-test |
9016565
to
125a30d
Compare
/assign @lavalamp |
b4c2fb2
to
3efe6a2
Compare
@deads2k Hi~ PTAL, thx. |
decoder runtime.Decoder | ||
lock sync.RWMutex | ||
objects map[schema.GroupVersionResource][]runtime.Object | ||
watchers map[schema.GroupVersionResource]map[string][]*watch.FakeWatcher |
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.
godoc explaining the map keys and values.
Minor comment. Squash into "real" and "generated" commits, then lgtm /approve |
@stts @lavalamp @piosz @DirectXMan12 |
Don't forget about the squash to two commits |
fix races with watch call add test for non-namespace resource watch add matching for all-namespace-watch fix delete namespace watch & restrict test fix multiple invocation on same resource & namespace add descriptive doc for tracker.watchers
08fdfc9
to
6f381ab
Compare
@deads2k |
@@ -71,7 +71,15 @@ func NewSimpleClientset(objects ...runtime.Object) *Clientset { | |||
|
|||
fakePtr := testing.Fake{} | |||
fakePtr.AddReactor("*", "*", testing.ObjectReaction(o)) | |||
fakePtr.AddWatchReactor("*", testing.DefaultWatchReactor(watch.NewFake(), nil)) |
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.
@sttts where does this get generated from?
@@ -127,7 +127,15 @@ func NewSimpleClientset(objects ...runtime.Object) *Clientset { | |||
|
|||
fakePtr := testing.Fake{} | |||
fakePtr.AddReactor("*", "*", testing.ObjectReaction(o)) | |||
fakePtr.AddWatchReactor("*", testing.DefaultWatchReactor(watch.NewFake(), nil)) | |||
fakePtr.AddWatchReactor("*", func(action testing.Action) (handled bool, ret watch.Interface, err error) { |
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.
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.
@sttts if its good for you, we can apply the label. The other changes are just for the generated code. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED Approval requirements bypassed by manually added approval. This pull-request has been approved by: deads2k, yue9944882 Associated issue: #54075 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
Automatic merge from submit-queue (batch tested with PRs 61195, 61479). 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>. Use RaceFreeFakeWatcher in ObjectTracker to fix racy watch panics **What this PR does / why we need it**: The `FakeWatcher` added to `ObjectTracker` in #57504 allows sends on the result channel after it's closed; for example calling `Stop()` then `Add(obj)` will cause a panic. In my experience this has led to flaky tests when informers and controllers are running. Replacing `FakeWatcher` with `RaceFreeFakeWatcher` fixes the problem, since `RaceFreeFakeWatcher` ignores additional events that occur after the watcher is stopped. It also panics instead of blocking when the result channel is full, which seems like a more useful behavior in tests than blocking. I removed the `FakeWatchBufferSize` constant since `RaceFreeFakeWatcher` doesn't take a buffer size argument anymore. This seems fine since the `DefaultChanSize` constant is close to the `FakeWatchBufferSize` value (100 vs 128). **Special notes for your reviewer**: I can provide a minimal repro of a flaky test caused by the earlier behavior if necessary. **Release note**: ```release-note Fix racy panics when using fake watches with ObjectTracker ```
What this PR does / why we need it:
This PR enables watch function for kubernetes fakeclient.
This fake client add watchReactorFunction by wrapping watch.NewFake 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 #(, fixes #<issue_number>, ...) format, will close the issue(s) when PR gets merged):
Fixes #54075
Special notes for your reviewer:
Release note: