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

Apply newly defined NotFound exceptions to handle resource not found errors. #5927

Merged
merged 7 commits into from
Aug 9, 2023

Conversation

Aadesh-Baral
Copy link
Contributor

@Aadesh-Baral Aadesh-Baral commented Jun 21, 2023

This PR does the floowing:

  • Apply new Notfound Exception replacing the prev implementation. i.e backend.exceptions.NotFound (defined in Define custom exceptions for better handling backend errors #5909) replaces backend.models.postgis.utils.Notfound all over the code.
  • Removes NotFound exception from try except blocks as this new exception will be handled by flask itself and desired error response will be created on the exception class itself with the use of subcode and other provided parameters.
  • Updates test cases to reflect the change.

How to review:
Going through each commit in turn is advised because this PR has numerous file modifications. The change is explained in the commit message.

@Aadesh-Baral
Copy link
Contributor Author

Before moving on to the next stages of this change, #5933 must be merged.

@Aadesh-Baral Aadesh-Baral changed the title Apply newly defined exceptions to handle errors. Apply newly defined NotFound exceptions to handle resource not found errors. Jul 18, 2023
@Aadesh-Baral Aadesh-Baral marked this pull request as ready for review July 18, 2023 05:43
@Aadesh-Baral Aadesh-Baral requested a review from d-rita July 18, 2023 05:49
Copy link
Contributor

@d-rita d-rita left a comment

Choose a reason for hiding this comment

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

Tested almost all endpoints (except annotations and some…) and the Not Found exception handler works very well. 
However, I noted some issues (some of which may be beyond the scope of this PR as well) but have to be noted either way:

API Resource Endpoint Method Issues Status
Tasks projects/project_id/tasks GET Getting particular tasks: non-existent task results in an internal server error Fixed
Tasks stop-validation POST Does not show 404 for non-existent mapping issue category Out of scope
Tasks tasks/xml, tasks/gpx GET Does not include non-existent task_id in error message Fixed
Teams project/teams GET Returns empty list for non-existent project Fixed
Teams project/teams/team_id DELETE 1. Docstrings do not include the project_id and team_id parameters. 2. user_id is not being captured hence resulting in an internal server error. Out of scope
Teams teams/team_id/actions/leave POST Remove existent but non-member from a team results in an internal server error Fixed
Comments projects/project_id/comments/tasks/task_id POST, DELETE Does not check if the project exists first. Hence error message does not show non existent project Fixed
Projects /projects GET Getting all organisations with varying non existent parameters results in an empty list Needs Investigation (Out of scope)
Projects /projects/project_id (get project including its area) GET Does not serve the 404 error. It is logged but it gives an internal server error for non existent projects Fixed
Projects projects/proj_id/actions/transfer-ownership POST Returns internal server error for non-existent project Fixed
Projects projects/proj_id/queries/nogeometries   Internal server error for non-existent project Fixed
Organisations /organisations POST 1. Add type parameter to docstrings since it is required. 2. If other parts of the request body already exist, it gives the same error, i.e. Name already exists. Needs Investigation (Out of scope)
Organisations /organisations/org_id GET Non existent org _id not availed in error message (which is inconsistent with the PATCH method 404 error where it is shown) Fixed
Organisations organisations/org_slug GET Non existent org_slug not availed in 404 error Fixed
Organisations /organisations GET Returns empty list for non-existent manager parameter Needs Investigation (Out of scope)
Messages notifications/message_id GET, DELETE MessageService.get_message() - raise NotFound Fixed
Campaigns organisations/org_id/campaigns/ GET Returns empty list for non-existent organisation Fixed
Campaigns organisations/org_id/campaigns/campaign_id POST Internal server error for non existent campaignInternal server error for non existent organisation Fixed
Campaigns organisations/org_id/campaigns/campaign_id DELETE Internal server error if both org and campaign are real but unassigned. Fixed
Campaigns projects/proj_id/campaigns/campaign_id DELETE Generic Not found for existing campaign and project that are not attached Fixed
Comments projects/project_id/comments/tasks/task_id GET Remove body from dosctrings Out of scope
Grid projects/actions/intersecting-tiles   Docstrings don’t show all required fields in the example schema. Out of scope

backend/services/mapping_service.py Show resolved Hide resolved
backend/services/messaging/chat_service.py Show resolved Hide resolved
backend/models/postgis/message.py Outdated Show resolved Hide resolved
Copy link
Contributor

@d-rita d-rita left a comment

Choose a reason for hiding this comment

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

We don't have tests for the Project Teams but the Project Teams API endpoints are failing since the user_id is not being read. That issue is solved for in this PR #5631 containing the tests and fix.
cc: @Aadesh-Baral

@Aadesh-Baral
Copy link
Contributor Author

@d-rita Is #5631 ready for review?

------------------------------------
We defined custom HttpExceptions on #5899 to better handle errors but these exceptions were not used anywhere. This commit has replaced the previous NotFound custom exception which was simply a basic exceptio class with the new implementation.
----------------------------------------
We are now using our new NotFound exception, which derives from the werkzeug HTTPException class.
We no longer need to use it in the try except block to catch and return error message because Flask will handle this HTTPException automatically.
…n appropriate error messages

In the prev implementation even if the project id is non existent  error message was returned as project_id and task_id are primary keys for tasks. THis addition will check if the project exists before checking for task so we would already know if project exists and return  error.
@sonarcloud
Copy link

sonarcloud bot commented Aug 7, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 1 Code Smell

No Coverage information No Coverage information
0.0% 0.0% Duplication

@Aadesh-Baral
Copy link
Contributor Author

@d-rita Thanks for thorough testing. The problems that were stated and fall under the scope of this PR has been solved. The table has been updated with the status of each problems. Can you open a new issue for the problems that this PR doesn't cover?

Copy link
Contributor

@d-rita d-rita left a comment

Choose a reason for hiding this comment

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

LGTM

@Aadesh-Baral Aadesh-Baral merged commit 43556b0 into develop Aug 9, 2023
9 checks passed
@Aadesh-Baral Aadesh-Baral deleted the enhance/5912-error-handling branch August 9, 2023 04:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants