- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 8.6k
 
[java] Fix SpotBugs bugs in the Selenium manager #14608
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
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 <[email protected]>
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_VALUEto ignore potential null value from thebinary.getParent()call - SpotBugs exclusion forgetParentcall is common, for example fororg.openqa.selenium.firefox.FirefoxBinarypath.toFile().mkdirs()withFiles.createDirectories(path)- use ofFiles.createDirectoriesis 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
SeleniumManagerby replacingmkdirs()withFiles.createDirectories().SeleniumManagerOutput.fromJsonto handle unexpected JSON values.SeleniumManager.Changes walkthrough 📝
SeleniumManager.java
Improve directory creation error handling in SeleniumManagerjava/src/org/openqa/selenium/manager/SeleniumManager.java
mkdirs()withFiles.createDirectories()for better errorhandling.
SeleniumManagerOutput.java
Add default case to switch statement in fromJsonjava/src/org/openqa/selenium/manager/SeleniumManagerOutput.java
fromJson.spotbugs-excludes.xml
Update SpotBugs exclusions for SeleniumManagerjava/spotbugs-excludes.xml
NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE.