-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[java] Fix SpotBugs bugs in the Selenium manager #14608
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
c4ca319
to
c363bd9
Compare
cbb17e4
to
675447a
Compare
675447a
to
6c2a3aa
Compare
Hello, Are there any updates regarding this PR? |
Hey! I think it looks good to me. There was a failing test for re-running the CI. It should be good to go once that is sorted. |
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.
LGTM as well
Co-authored-by: Viet Nguyen Duc <nguyenducviet4496@gmail.com>
User description
Description
As described in this comment, SpotBugs found some additional bugs in the code.
In this PR I fix part of the found problems.
SpotBugs errors:
Solutions:
NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE
to ignore potential null value from thebinary.getParent()
call - SpotBugs exclusion forgetParent
call is common, for example fororg.openqa.selenium.firefox.FirefoxBinary
path.toFile().mkdirs()
withFiles.createDirectories(path)
- use ofFiles.createDirectories
is common in the code base, so it is consistentMotivation and Context
Fixing the actual problems is necessary before enabling full SpotBugs analysis, in order to not break the build.
Types of changes
Checklist
PR Type
Bug fix
Description
SeleniumManager
by replacingmkdirs()
withFiles.createDirectories()
.SeleniumManagerOutput.fromJson
to handle unexpected JSON values.SeleniumManager
.Changes walkthrough 📝
SeleniumManager.java
Improve directory creation error handling in SeleniumManager
java/src/org/openqa/selenium/manager/SeleniumManager.java
mkdirs()
withFiles.createDirectories()
for better errorhandling.
SeleniumManagerOutput.java
Add default case to switch statement in fromJson
java/src/org/openqa/selenium/manager/SeleniumManagerOutput.java
fromJson
.spotbugs-excludes.xml
Update SpotBugs exclusions for SeleniumManager
java/spotbugs-excludes.xml
NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE
.