A NuGet package that builds on top of the TestServer
class in the Microsoft.AspNetCore.TestHost NuGet package to provide infrastructure to use with end-to-end/integration tests of .NET 6 AWS Lambda Functions using a custom runtime with the LambdaBootstrap
class from the Amazon.Lambda.RuntimeSupport NuGet package.
.NET Core 3.0 on Lambda with AWS Lambda's Custom Runtime
To install the library from NuGet using the .NET SDK run:
dotnet add package MartinCostello.Testing.AwsLambdaTestServer
Before you can use the Lambda test server to test your function, you need to factor your function entry-point
in such a way that you can supply both a HttpClient
and CancellationToken
to it from your tests. This is to allow you to both plug in the HttpClient
for the test server into LambdaBootstrap
, and to stop the Lambda function running at a time of your choosing by signalling the CancellationToken
.
Here's an example of how to do this with a simple Lambda function that takes an array of integers and returns them in reverse order:
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Amazon.Lambda.RuntimeSupport;
using Amazon.Lambda.Serialization.Json;
namespace MyFunctions;
public static class ReverseFunction
{
public static async Task Main()
=> await RunAsync();
public static async Task RunAsync(
HttpClient httpClient = null,
CancellationToken cancellationToken = default)
{
var serializer = new JsonSerializer();
using var handlerWrapper = HandlerWrapper.GetHandlerWrapper<int[], int[]>(ReverseAsync, serializer);
using var bootstrap = new LambdaBootstrap(httpClient ?? new HttpClient(), handlerWrapper);
await bootstrap.RunAsync(cancellationToken);
}
public static Task<int[]> ReverseAsync(int[] values)
=> Task.FromResult(values.Reverse().ToArray());
}
Once you've done that, you can use LambdaTestServer
in your tests with your function to verify how it processes requests.
Here's an example using xunit to verify that ReverseFunction
works as intended:
using System;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using MartinCostello.Testing.AwsLambdaTestServer;
using Xunit;
namespace MyFunctions;
public static class ReverseFunctionTests
{
[Fact]
public static async Task Function_Reverses_Numbers()
{
// Arrange
using var server = new LambdaTestServer();
using var cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(1));
await server.StartAsync(cancellationTokenSource.Token);
int[] value = [1, 2, 3];
string json = JsonSerializer.Serialize(value);
LambdaTestContext context = await server.EnqueueAsync(json);
using var httpClient = server.CreateClient();
// Act
await ReverseFunction.RunAsync(httpClient, cancellationTokenSource.Token);
// Assert
Assert.True(context.Response.TryRead(out LambdaTestResponse response));
Assert.True(response.IsSuccessful);
json = await response.ReadAsStringAsync();
int[] actual = JsonSerializer.Deserialize<int[]>(json);
Assert.Equal([3, 2, 1], actual);
}
}
The key parts to call out here are:
- An instance of
LambdaTestServer
is created and then theStartAsync()
method called with aCancellationToken
that allows the test to stop the function. In the example here the token is signalled with a timeout, but you could also write code to stop the processing based on arbitrary criteria. - The request that the Lambda function should be invoked with is passed to
EnqueueAsync()
. This can be specified with an instance ofLambdaTestRequest
for fine-grained control, but there are overloads that acceptbyte[]
andstring
. You could also make your own extensions to serialize objects to JSON using the serializer of your choice. EnqueueAsync()
returns aLambdaTestContext
. This contains a reference to theLambdaTestRequest
and aChannelReader<LambdaTestResponse>
. This channel reader can be used to await the request being processed by the function under test.- Once the request is enqueued, an
HttpClient
is obtained from the test server and passed to the function to test with the cancellation token and run by callingRunAsync()
. - Once the function processing completes after the
CancellationToken
is signalled, the channel reader is read to obtain theLambdaTestResponse
for the request that was enqueued. - Once this is returned from the channel reader, the response is checked for success using
IsSuccessful
and then theContent
(which is abyte[]
) is deserialized into the expected response to be asserted on. Again, you could make your own extensions to deserialize the response content intostring
or objects from JSON.
The library itself targets net6.0
, net7.0
and net8.0
so requires your test project to target at least .NET 6.
The sequence diagram below illustrates the flow of events for a test using the test server for the above example.
sequenceDiagram
autonumber
participant T as Test Method
participant S as Lambda Test Server
participant F as Lambda Function
participant H as Handler
title How AWS Lambda Test Server Works
note over T:Arrange
T->>+S: Start test server
S->>S:Start HTTP server
S-->>T:
T->>S:Queue request
note over S:Request is queued
S-->>T:LambdaTestContext
T->>+F:Create function with HttpClient for Test Server
note over T:Act
note over T:Wait for request(s)<br/>to be handled
loop Poll for Lambda invocations
F->>S:GET /{LambdaVersion}/runtime/invocation/next
note over S:Request is dequeued
S-->>F:HTTP 200
F->>+H:Invoke Handler
note over H:System Under Test
H-->>-F:Response
alt Invocation is handled successfully
F->>S:POST /{LambdaVersion}/runtime/invocation/{AwsRequestId}/response
else Invocation throws an exception
F->>S:POST /{LambdaVersion}/runtime/invocation/{AwsRequestId}/error
end
note over S:Associate response with<br/>LambdaTestContext
S-)T:Signal request handled<br/>on LambdaTestContext
S-->>F:HTTP 204
T->>F:Stop Lambda function
note over F:Terminate client<br/>listen loop
deactivate F
end
T->>S:Stop server
S->>S:Stop HTTP server
S-->> T:
deactivate S
note over T:Assert
You can find examples of how to factor your Lambda function and how to test it:
- In the samples;
- In the unit tests for this project;
- How I use the library in the tests for my own Alexa skill.
If you use either the ClientContext
or Identity
properties on ILambdaContext
in your function, you can specify the serialized JSON for either property as a string
when enqueueing a request to the test server to be made available to the function invocation.
An example of providing these values from an xunit test is shown below:
using System;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using MartinCostello.Testing.AwsLambdaTestServer;
using Xunit;
namespace MyFunctions;
public static class ReverseFunctionWithMobileSdkTests
{
[Fact]
public static async Task Function_Reverses_Numbers_With_Mobile_Sdk()
{
// Arrange
using var server = new LambdaTestServer();
using var cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(1));
await server.StartAsync(cancellationTokenSource.Token);
int[] value = [1, 2, 3];
string json = JsonSerializer.Serialize(value);
byte[] content = Encoding.UTF8.GetBytes(json);
var request = new LambdaTestRequest(content)
{
ClientContext = """{ "client": { "app_title": "my-app" } }""",
CognitoIdentity = """{ "identityId": "my-identity" }""",
};
LambdaTestContext context = await server.EnqueueAsync(json);
using var httpClient = server.CreateClient();
// Act
await ReverseFunction.RunAsync(httpClient, cancellationTokenSource.Token);
// Assert
Assert.True(context.Response.TryRead(out LambdaTestResponse response));
Assert.True(response.IsSuccessful);
json = await response.ReadAsStringAsync();
int[] actual = JsonSerializer.Deserialize<int[]>(json);
Assert.Equal([3, 2, 1], actual);
}
}
If your function makes use of the various other properties in the ILambdaContext
passed to the function, you can pass an instance of LambdaTestServerOptions
to the constructor of LambdaTestServer
to change the values the server provides to LambdaBootstrap
before it invokes your function.
Options you can specify include the function memory size, timeout and ARN.
The test server does not enforce these values at runtime, unlike the production AWS Lambda environment. They are provided for you to drive the usage of such properties in the code you are testing and should not be relied on to ensure that your function does not take too long to execute or uses too much memory during execution or any other constraints, as appropriate.
An example of this customisation for an xunit test is shown below:
using System;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using MartinCostello.Testing.AwsLambdaTestServer;
using Xunit;
namespace MyFunctions;
public static class ReverseFunctionWithCustomOptionsTests
{
[Fact]
public static async Task Function_Reverses_Numbers_With_Custom_Options()
{
// Arrange
var options = new LambdaTestServerOptions()
{
FunctionMemorySize = 256,
FunctionTimeout = TimeSpan.FromSeconds(30),
FunctionVersion = 42,
};
using var server = new LambdaTestServer(options);
using var cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(1));
await server.StartAsync(cancellationTokenSource.Token);
int[] value = [1, 2, 3];
string json = JsonSerializer.Serialize(value);
LambdaTestContext context = await server.EnqueueAsync(json);
using var httpClient = server.CreateClient();
// Act
await ReverseFunction.RunAsync(httpClient, cancellationTokenSource.Token);
// Assert
Assert.True(context.Response.TryRead(out LambdaTestResponse response));
Assert.True(response.IsSuccessful);
json = await response.ReadAsStringAsync();
int[] actual = JsonSerializer.Deserialize<int[]>(json);
Assert.Equal([3, 2, 1], actual);
}
}
To help diagnose failing tests, the LambdaTestServer
outputs logs of the requests it receives to the emulated AWS Lambda Runtime it provides. To route the logging output to a location of your choosing, you can use the configuration callbacks, such as the constructor overload that accepts an Action<IServiceCollection>
or the Configure
property on the LambdaTestServerOptions
class.
Here's an example of configuring the test server to route its logs to xunit using the xunit-logging library:
using System;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using MartinCostello.Logging.XUnit;
using MartinCostello.Testing.AwsLambdaTestServer;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Xunit;
using Xunit.Abstractions;
namespace MartinCostello.Testing.AwsLambdaTestServer;
public class ReverseFunctionWithLoggingTests : ITestOutputHelperAccessor
{
public ReverseFunctionWithLoggingTests(ITestOutputHelper outputHelper)
{
OutputHelper = outputHelper;
}
public ITestOutputHelper OutputHelper { get; set; }
[Fact]
public async Task Function_Reverses_Numbers_With_Logging()
{
// Arrange
using var server = new LambdaTestServer(
(services) => services.AddLogging(
(builder) => builder.AddXUnit(this)));
using var cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(1));
await server.StartAsync(cancellationTokenSource.Token);
int[] value = [1, 2, 3];
string json = JsonSerializer.Serialize(value);
LambdaTestContext context = await server.EnqueueAsync(json);
using var httpClient = server.CreateClient();
// Act
await ReverseFunction.RunAsync(httpClient, cancellationTokenSource.Token);
// Assert
Assert.True(context.Response.TryRead(out LambdaTestResponse response));
Assert.True(response.IsSuccessful);
json = await response.ReadAsStringAsync();
int[] actual = JsonSerializer.Deserialize<int[]>(json);
Assert.Equal([3, 2, 1], actual);
}
}
This then outputs logs similar to the below into the xunit test results:
Test Name: Function_Reverses_Numbers_With_Logging
Test Outcome: Passed
Result StandardOutput:
[2019-11-04 15:21:06Z] info: Microsoft.AspNetCore.Hosting.Diagnostics[1]
Request starting HTTP/1.1 GET http://localhost/2018-06-01/runtime/invocation/next
[2019-11-04 15:21:06Z] info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint '/{LambdaVersion}/runtime/invocation/next HTTP: GET'
[2019-11-04 15:21:06Z] info: MartinCostello.Testing.AwsLambdaTestServer.RuntimeHandler[0]
Waiting for new request for Lambda function with ARN arn:aws:lambda:eu-west-1:123456789012:function:test-function.
[2019-11-04 15:21:06Z] info: MartinCostello.Testing.AwsLambdaTestServer.RuntimeHandler[0]
Invoking Lambda function with ARN arn:aws:lambda:eu-west-1:123456789012:function:test-function for request Id 7e1a283d-6268-4401-921c-0d0d67da1da4 and trace Id 51792f7f-2c1e-4934-bfd9-f5f7c6f0d628.
[2019-11-04 15:21:06Z] info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint '/{LambdaVersion}/runtime/invocation/next HTTP: GET'
[2019-11-04 15:21:06Z] info: Microsoft.AspNetCore.Hosting.Diagnostics[2]
Request finished in 71.9334ms 200 application/json
[2019-11-04 15:21:06Z] info: Microsoft.AspNetCore.Hosting.Diagnostics[1]
Request starting HTTP/1.1 POST http://localhost/2018-06-01/runtime/invocation/7e1a283d-6268-4401-921c-0d0d67da1da4/response application/json
[2019-11-04 15:21:06Z] info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint '/{LambdaVersion}/runtime/invocation/{AwsRequestId}/response HTTP: POST'
[2019-11-04 15:21:06Z] info: MartinCostello.Testing.AwsLambdaTestServer.RuntimeHandler[0]
Invoked Lambda function with ARN arn:aws:lambda:eu-west-1:123456789012:function:test-function for request Id 7e1a283d-6268-4401-921c-0d0d67da1da4: [3,2,1].
[2019-11-04 15:21:06Z] info: MartinCostello.Testing.AwsLambdaTestServer.RuntimeHandler[0]
Completed processing AWS request Id 7e1a283d-6268-4401-921c-0d0d67da1da4 for Lambda function with ARN arn:aws:lambda:eu-west-1:123456789012:function:test-function in 107 milliseconds.
[2019-11-04 15:21:06Z] info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint '/{LambdaVersion}/runtime/invocation/{AwsRequestId}/response HTTP: POST'
[2019-11-04 15:21:06Z] info: Microsoft.AspNetCore.Hosting.Diagnostics[2]
Request finished in 26.6306ms 204
It is also possible to use LambdaTestServer
with a custom IServer
implementation by overriding the CreateServer()
method in a derived class.
This can be used, for example, to host the Lambda test server in a real HTTP server that can be accessed remotely instead of being hosted in-memory with the TestServer
class.
For examples of this use case, see the MinimalApi
example project and its test project in the samples.
Any feedback or issues can be added to the issues for this project in GitHub.
The repository is hosted in GitHub: https://github.com/martincostello/lambda-test-server.git
This project is licensed under the Apache 2.0 license.
Compiling the library yourself requires Git and the .NET SDK to be installed.
To build and test the library locally from a terminal/command-line, run one of the following set of commands:
git clone https://github.com/martincostello/lambda-test-server.git
cd lambda-test-server
./build.ps1