Jens Knipper

Recording and Slides of My Talk "Local testing of AWS serverless lambda functions" at an OpenValue Meetup

10.11.2022 | 1 Minute Read

L ast week I hold my talk “Local testing of AWS serverless lambda functions” at a virtual meetup of OpenValue. In this post, you can find the slides and the recording of my talk.

I really enjoyed the evening and the opportunity to speak at the meetup from OpenValue, thank you very much. Special thanks to Sebastian Konieczek for organizing the meetups.

Abstract

There are a lot of resources and best practices about testing of microservices. Serverless functions like AWS Lambdas are still mostly tested manually after a deployment, especially concerning logic provided by AWS. Though it is possible to start the application locally and even test it. But how does it work for a (relatively) closed system like the AWS cloud? Through smart usage of LocalStack, TestContainers and the AWS SDK it is possible to automatically execute component tests and uncover possible errors in the usage of the lambda function.

Recording

Slides

Code

The code examples shown in the talk are available on GitHub.