-
-
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 manager #14608
base: trunk
Are you sure you want to change the base?
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
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
.