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

Is it possible to test LambdaFunctionURL lambdas with aws-lambda-rie ? #99

Open
mpatou opened this issue Sep 13, 2023 · 1 comment
Open

Comments

@mpatou
Copy link

mpatou commented Sep 13, 2023

I have a 2 lambdas:

  • One that take a CloudWatchEvent as the second argument of the Handle()function
  • One that take a LambdaFunctionURLRequestas the second argument of the Handle()function

I'm able to successfully test with aws-lambda-riethe first Lambda but not the second one

Even with a quite naive handler:

func  Handle(ctx context.Context, request events.LambdaFunctionURLRequest) error {
  log.Printf("body: %s", request.RawPath)
  return nil
}

Is it possible to test this "new" kind of lambdas using aws-lambda-runtime ? Am I doing something wrong ?

@bschulz87
Copy link

bschulz87 commented Apr 2, 2024

You have to setup the payload to match the LambdaFunctionURLRequest event.
Take a look at https://github.com/aws/aws-lambda-go/blob/main/events/testdata/lambda-urls-request.json

Note that you have to stringify JSON for the "body" Field.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants