-
I am writing some tests for a route: from aws_lambda_powertools.event_handler.api_gateway import Router
router = Router()
router.post("/box/<box_id>/send")
def send_box(box_id: str):
print(box_id)
# >>> '<box_id>' I am using the following payload format in my event: {"pathParameters": {"box_id": "foo"}} However the value being set for router.current_event.path_parameters
>>> {"box_id": "foo"} I am aware that |
Beta Was this translation helpful? Give feedback.
Answered by
aalvrz
Mar 18, 2025
Replies: 1 comment 3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@leandrodamascena Sorry I think this was a misunderstanding from my part when writing my unit tests, although I had to spent quite some time trying to figure this out.
Basically I was creating my test event like this:
And I thought that was what the resolver expected. But apparently this was the correct way:
Maybe this needs some more examples in the documentation.