Skip to content
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

Handle JSONException while reading Renovate configuration file #1130

Merged
merged 7 commits into from
Feb 13, 2024

Conversation

avimanyum
Copy link
Contributor

No description provided.

@github-actions github-actions bot added the tests Improvements / maintenance to tests label Feb 13, 2024
Copy link

codecov bot commented Feb 13, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (ee90f18) 85.91% compared to head (01dbc9d) 85.93%.

❗ Current head 01dbc9d differs from pull request most recent head 1b2fa73. Consider uploading reports for the commit 1b2fa73 to get more accurate results

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff              @@
##               main    #1130      +/-   ##
============================================
+ Coverage     85.91%   85.93%   +0.02%     
  Complexity      390      390              
============================================
  Files            27       27              
  Lines          1292     1294       +2     
  Branches        167      167              
============================================
+ Hits           1110     1112       +2     
  Misses          146      146              
  Partials         36       36              
Files Coverage Δ
...orce/dockerfileimageupdate/utils/PullRequests.java 100.00% <100.00%> (ø)

Comment on lines 71 to 72
} catch (JSONException e) {
log.debug("Exception while trying to read the renovate configuration file. Exception: {}", e.getMessage());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Its helpful to state what the expected return value is in the error message for this situation. For example we can add the phase returning false to the message.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cjneasbi Updated

cjneasbi
cjneasbi previously approved these changes Feb 13, 2024
@@ -64,9 +65,11 @@ protected boolean isRenovateEnabled(List<String> filePaths, GitHubContentToProce
//If the file has the key 'enabled' set to false, it indicates that while the repo has been onboarded to renovate, it has been disabled for some reason
return readJsonFromContent(fork.getParent().getFileContent(filePath)).optBoolean("enabled", true);
} catch (FileNotFoundException e) {
log.debug("The file with name {} not found in the repository. Exception: {}", filePath, e.getMessage());
log.debug("The file with name {} not found in the repository.Returning false. Exception: {}", filePath, e.getMessage());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FileNotFoundException error should be in the debug log because we are expecting this for most of the repos. But do we want to do that for IO and JSON exceptions as well? We should log it in warn mode if they are expected to be raised in corner cases

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jeetchoudhary Updated

@avimanyum avimanyum merged commit f409bf1 into salesforce:main Feb 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
tests Improvements / maintenance to tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants