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

feat(event_handler): add route-level custom response validation in OpenAPI utility #6341

Open
wants to merge 26 commits into
base: develop
Choose a base branch
from

Conversation

amin-farjadi
Copy link
Contributor

@amin-farjadi amin-farjadi commented Mar 25, 2025

Issue number: #6245

Summary

Adds custom http code for when response validation fails per route.

Changes

  • Added custom_response_validation_http_code argument for Route
  • Added said argument to route method in Router and APIGatewayResolver
  • Added _validate_route_response_validation_error_http_code method to APIGatewayResolver
  • Added has_route_custom_response_validation argument to the _serialize_response method in OpenAPIValidationMiddleware
  • Added response_validation_error_response_definition to open api types

User experience

After the merge of #6189, users could add custom response validation error http code at the app level

from aws_lambda_powertools.event_handler import APIGatewayRestResolver

app = APIGatewayRestResolver(enable_validation=True, response_validation_error_http_code=500)

Now, users can customise the response validation http code at route level as well as at app level

from aws_lambda_powertools.event_handler import APIGatewayRestResolver

app = APIGatewayRestResolver(enable_validation=True, response_validation_error_http_code=500)

@app.get(
    "/response_validation_error_with_422",
    custom_response_validation_http_code=422,
)
def handler() -> list:
    return {"body": "hi"}

Checklist

If your change doesn't seem to apply, please leave them unchecked.

Is this a breaking change?

RFC issue number:

Checklist:

  • Migration process documented
  • Implement warnings (if it can live side by side)

Acknowledgment

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

Disclaimer: We value your time and bandwidth. As such, any pull requests created on non-triaged issues might not be successful.

@amin-farjadi amin-farjadi requested a review from a team as a code owner March 25, 2025 08:55
@boring-cyborg boring-cyborg bot added documentation Improvements or additions to documentation event_handlers tests labels Mar 25, 2025
@pull-request-size pull-request-size bot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Mar 25, 2025
@leandrodamascena leandrodamascena linked an issue Mar 25, 2025 that may be closed by this pull request
2 tasks
@github-actions github-actions bot added feature New feature or functionality and removed documentation Improvements or additions to documentation labels Mar 25, 2025
@boring-cyborg boring-cyborg bot added the documentation Improvements or additions to documentation label Mar 25, 2025
@amin-farjadi
Copy link
Contributor Author

n.b. tests/functional/metrics/datadog/test_metrics_datadog.py::test_datadog_disable_write_to_log_with_env_variable fails in local machine which I believe is expected

@leandrodamascena
Copy link
Contributor

n.b. tests/functional/metrics/datadog/test_metrics_datadog.py::test_datadog_disable_write_to_log_with_env_variable fails in local machine which I believe is expected

Try to run make dev and it will install a dev dependency that fix this.

Copy link

codecov bot commented Mar 25, 2025

Codecov Report

Attention: Patch coverage is 88.46154% with 3 lines in your changes missing coverage. Please review.

Project coverage is 96.30%. Comparing base (5642a4a) to head (3e5fb6e).
Report is 7 commits behind head on develop.

Files with missing lines Patch % Lines
aws_lambda_powertools/event_handler/api_gateway.py 84.21% 2 Missing and 1 partial ⚠️
Additional details and impacted files
@@             Coverage Diff             @@
##           develop    #6341      +/-   ##
===========================================
- Coverage    96.31%   96.30%   -0.02%     
===========================================
  Files          242      242              
  Lines        11710    11731      +21     
  Branches       871      875       +4     
===========================================
+ Hits         11279    11297      +18     
- Misses         337      339       +2     
- Partials        94       95       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@leandrodamascena
Copy link
Contributor

Looking at this now.

Copy link
Contributor

@leandrodamascena leandrodamascena left a comment

Choose a reason for hiding this comment

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

Hi @amin-farjadi! Super thanks for this another PR. It took me a few more days than I expected to review this PR because I had some internal priorities.

Overall this PR is pretty good, but there is 1 critical item that needs to be fixed before I can do a final review and merge.

Please let me know if you need any help.

middlewares: list[Callable[..., Response]] | None
The list of route middlewares to be called in order.
# TODO
Copy link
Contributor

Choose a reason for hiding this comment

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

leftover?

@@ -49,6 +49,18 @@
},
}

response_validation_error_response_definition = {
Copy link
Contributor

Choose a reason for hiding this comment

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

You need to include this as part of the OpenAPI specification, otherwise customer will have the following code as part of the OpenAPI schema, but ResponseValidationError will be an unknown object.

operation_responses[http_code] = {
                "description": "Response Validation Error",
                "content": {"application/json": {"schema": {"$ref": f"{COMPONENT_REF_PREFIX}ResponseValidationError"}}},
            }

Check here: https://github.com/aws-powertools/powertools-lambda-python/blob/develop/aws_lambda_powertools/event_handler/api_gateway.py#L634

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation event_handlers feature New feature or functionality size/L Denotes a PR that changes 100-499 lines, ignoring generated files. tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature request: Custom response validation status code on routes
2 participants