fix: patch checksum validation logic#118
Merged
Merged
Conversation
Reviewer's GuideThis PR fixes the checksum validation logic for production tools by adding proper parentheses around the missing/empty checksum checks in the Sequence Diagram: Corrected Checksum Validation in process_filessequenceDiagram
participant Caller
participant RegisterObjectsEndpoint
participant FileBeingProcessed
Caller->>RegisterObjectsEndpoint: process_files()
loop For each file (_file)
RegisterObjectsEndpoint->>RegisterObjectsEndpoint: Check self.data['is_production']
alt self.data['is_production'] is true
RegisterObjectsEndpoint->>FileBeingProcessed: Access _file['file_wrapper'] to check checksum
alt 'checksum' is missing or empty in _file['file_wrapper']
RegisterObjectsEndpoint->>RegisterObjectsEndpoint: Log error: "Production tools must contain checksum..."
RegisterObjectsEndpoint->>Caller: Raise BadRequest (due to checksum issue)
else Checksum is valid for production tool's file
RegisterObjectsEndpoint->>RegisterObjectsEndpoint: Continue processing _file
end
else is_production is false (checksum validation skipped)
RegisterObjectsEndpoint->>RegisterObjectsEndpoint: Continue processing _file
end
end
Class Diagram: Update to RegisterObjectsEndpoint ClassclassDiagram
class RegisterObjectsEndpoint {
+process_files(): void
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #118 +/- ##
=======================================
Coverage 94.88% 94.88%
=======================================
Files 12 12
Lines 586 586
=======================================
Hits 556 556
Misses 30 30 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Hey @anuragxxd - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟡 General issues: 1 issue found
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
uniqueg
approved these changes
May 27, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Fixes # (issue)
Type of change
Please delete options that are not relevant.
Checklist:
Summary by Sourcery
Bug Fixes: