test: Add comprehensive @WebMvcTest for PatronProfileController #24
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.
test: Add comprehensive @WebMvcTest for PatronProfileController
Summary
Added comprehensive unit tests for
PatronProfileControllerusing Spring Boot's@WebMvcTestand Spock/Groovy. The controller previously had zero test coverage despite being a critical 189-line REST controller handling all patron profile operations.Test Coverage:
Technical Approach:
@WebMvcTest(PatronProfileController.class)for isolated controller testingPatronProfiles,PlacingOnHold,CancelingHoldDetachedMockFactoryto create mock beans compatible with Spring>>stubbing)Review & Testing Checklist for Human
$._embedded.holdListvs$._embedded.holds)DetachedMockFactoryapproach works correctly with@WebMvcTest(this is the first such test in the codebase)IllegalArgumentException→ 404 mapping incancelHold)Test Plan Recommendation
Notes
@WebMvcTestin the codebase, so the mock configuration pattern is newLink to Devin run: https://app.devin.ai/sessions/7ee31a93a2ef4f1eb5e32a7b205738f7
Requested by: Callum Miles (@callummiles)