Fix CalculateSHA256 function to validate file type #699
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.
This pull request includes several changes aimed at improving file hashing, adding commit message instructions, and enhancing testing. The most important changes are grouped into improvements to file hashing, commit message instructions, and testing.
Improvements to file hashing:
internal/helpers/hash.go: Added checks to ensure the file is a regular file and not a symbolic link before attempting to calculate its SHA256 hash.Commit message instructions:
.github/copilot-commit-message-instructions.md: Added instructions to write commit messages conforming to the Convention Commits 1.0.0 specification..vscode/settings.json: Updated settings to include the path to the commit message instructions file.Testing enhancements:
internal/helpers/hash_fuzz_test.go: Added a fuzz test for theCalculateSHA256function to ensure it handles various edge cases and errors gracefully.Additionally, a change log entry was added to document the improvement in file hashing:
.changes/unreleased/fixed-20250411-043430.yaml: Documented the improvement in file hashing to check if a file is a real file and not a symbolic link.