Implement tests for error handling middleware - #248
Closed
mspandey wants to merge 1 commit into
Closed
Conversation
Added tests for various error handlers including 400, 401, 403, 429, and 500 status codes.### Description This pull request expands `backend/tests/test_error_handling.py` to achieve 100% test coverage of the centralized error-handling middleware for Issue #169 (url?id=#169). #### Details: * **400 Bad Request:** Added `test_400_handler` to trigger and verify `BAD_REQUEST` error code and structure. * **401 Unauthorized:** Added `test_401_handler` to verify unauthenticated access returns `AUTHENTICATION_ERROR`. * **403 Forbidden:** Added `test_403_handler` to verify forbidden actions return `FORBIDDEN`. * **429 Rate Limited:** Added `test_429_handler` to verify rate-limiting responses return `RATE_LIMITED`. * **500 Internal Error:** Added `test_500_handler` using mocking to simulate server exceptions, ensuring `INTERNAL_ERROR` is returned without leaking raw stack traces. Closes #169
|
@mspandey is attempting to deploy a commit to the himanshipathak-240263-3015's projects Team on Vercel. A member of the Team first needs to authorize it. |
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.
Added tests for various error handlers including 400, 401, 403, 429, and 500 status codes.### Description This pull request expands
backend/tests/test_error_handling.pyto achieve 100% test coverage of the centralized error-handling middleware for Issue #169 (url?id=#169).Details:
test_400_handlerto trigger and verifyBAD_REQUESTerror code and structure.test_401_handlerto verify unauthenticated access returnsAUTHENTICATION_ERROR.test_403_handlerto verify forbidden actions returnFORBIDDEN.test_429_handlerto verify rate-limiting responses returnRATE_LIMITED.test_500_handlerusing mocking to simulate server exceptions, ensuringINTERNAL_ERRORis returned without leaking raw stack traces.Closes #169