-
Notifications
You must be signed in to change notification settings - Fork 40.9k
test: code coverage increase for kubelet/preemption #132607
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
base: master
Are you sure you want to change the base?
test: code coverage increase for kubelet/preemption #132607
Conversation
This issue is currently awaiting triage. If a SIG or subproject determines this is a relevant issue, they will accept it by applying the The 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-sigs/prow repository. |
Hi @ylink-lfs. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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-sigs/prow repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: ylink-lfs The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/release-note-none |
48a3365
to
d1b088c
Compare
d1b088c
to
9b0d973
Compare
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.
Pull Request Overview
This PR improves unit test coverage for the pkg/kubelet/preemption
package by refactoring the existing eviction test, adding new test scenarios for failure reasons, and introducing a focused test for resource‐comparison logic.
- Renamed and expanded
TestEvictPodsToFreeRequests
toTestHandleAdmissionFailure
, now covering multiple failure scenarios and filtering reasons. - Added
TestSmallerResourceRequest
to validate thesmallerResourceRequest
function across diverse resource combinations. - Introduced
getPredicateFailureReasons
helper to simulate predicate failures in tests.
Comments suppressed due to low confidence (2)
pkg/kubelet/preemption/preemption_test.go:199
- The
%b
verb is for binary formatting of integers, butr.expectReasons
is a slice. Use%v
or%#v
to format slices correctly.
t.Fatalf("expect reasons %b, got reasons %v", r.expectReasons, filteredReason)
pkg/kubelet/preemption/preemption_test.go:638
- [nitpick] The parameter
otherReasonExist
could be clearer. Consider renaming it toincludeOtherReason
orhasOtherReason
to better convey its boolean intent.
func getPredicateFailureReasons(insufficientCPU, insufficientMemory, insufficientPods int, otherReasonExist bool) (reasonByPredicate []lifecycle.PredicateFailureReason) {
9b0d973
to
21ccc7c
Compare
What type of PR is this?
/kind cleanup
/sig node
What this PR does / why we need it:
Test coverage increase for kubelet package
Which issue(s) this PR is related to:
Part of #109717
Special notes for your reviewer:
Before the commits are made, the coverage of kubelet-client is 74.5%:
This commit increases the coverage to 89.8%:
Note that function
evictPodsToFreeRequests
is only called byHandleAdmissionFailure
, so changing UT related toevictPodsToFreeRequests
toHandleAdmissionFailure
should be a safe change.Does this PR introduce a user-facing change?
NONE
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:
NONE