-
Notifications
You must be signed in to change notification settings - Fork 233
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
[YUNIKORN-2883] Improve sorters & queue_tracker funtion's test coverage #971
base: master
Are you sure you want to change the base?
Conversation
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.
Hi, thank you for the patch. A little question left.
@@ -410,11 +410,7 @@ func (qt *QueueTracker) canRunApp(hierarchy []string, applicationID string, trac | |||
func (qt *QueueTracker) canBeRemoved() bool { | |||
for _, childQT := range qt.childQueueTrackers { | |||
// quick check to avoid further traversal | |||
if childQT.canBeRemovedInternal() { | |||
if !childQT.canBeRemoved() { |
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.
Isn't it meant to do it recursively?
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.
That place seems unreachable.
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.
Could you verify it by adding test case with tree that depth >= 3? I think it's for tree traversal
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.
Did you mean len(qt.childQueueTrackers) == 0
on L426 cause this?
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.
I see how this is going. This function can only remove tree that height=2.
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.
I've already discussion about this code with @manirajv06 please involve him as well.
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.
gentle ping @manirajv06 , are you available to give us some insight?
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #971 +/- ##
=========================================
Coverage ? 81.08%
=========================================
Files ? 97
Lines ? 12522
Branches ? 0
=========================================
Hits ? 10154
Misses ? 2099
Partials ? 269 ☔ View full report in Codecov by Sentry. |
@manirajv06 can you take a look at this? Some of this logic looks suspect to me... |
What is this PR for?
Improve the following funtion's test coverage:
What type of PR is it?
What is the Jira issue?
https://issues.apache.org/jira/browse/YUNIKORN-2883