An open API service indexing awesome lists of open source software.

https://github.com/paulogoncalvesbh/running-playwright-on-aws-lambda

Running hundreds of Playwright E2E tests in a few seconds with AWS Lambda
https://github.com/paulogoncalvesbh/running-playwright-on-aws-lambda

lambda-functions playwright serverless

Last synced: about 2 months ago
JSON representation

Running hundreds of Playwright E2E tests in a few seconds with AWS Lambda

Awesome Lists containing this project

README

        

# Running hundreds of Playwright tests in a few seconds with AWS Lambda


Give the repository a star ⭐, it encourages me to create advanced software quality content 100% free


This project has a playwright implementation so that it is consumed via AWS Lambda, allowing to parallelize the execution of all files and making the execution much faster.

The success of this implementation demonstrates that, in scenarios where E2E testing is needed to validate critical behaviors that are not possible in another type of test, it is possible to use AWS Lambda to run this same test on all Pull Requests, not just a few times in day.

> _**Note:** This project was created as a result of study. Identify whether the parallelism presented here suits your case._

## Result

With playwright on serverless it was possible to run 110 files parallelized, with 221 tests, in less than 25 seconds.
This same test running without parallelization would take 23 minutes.

> To see the execution in detail, you can access the [pipeline log by clicking here](https://github.com/PauloGoncalvesBH/running-playwright-on-aws-lambda/actions/workflows/test-serverless.yml).

The gif below demonstrates the execution:


Gif showing playwright execution

## Pricing

Running hundreds of Lambda functions that last a few seconds has little impact on the final cost. To implement this parallelism in your project, perform the price calculation.

AWS Lambda Price:

> The AWS Lambda free usage tier includes 1M free requests per month and 400,000 GB-seconds of compute time per month.

Source: https://aws.amazon.com/lambda/pricing/

## Application diagram


Diagram

## CloudWatch metrics

Below are some important CloudWatch metrics.

110 lambda functions were invoked, however my account has a limit of 50 parallel executions, which made the total execution double in time.

The average time that a lambda function takes to run is 7 seconds, which is less than the total of 23 seconds that takes to run the test.

**However 23 seconds is a quiet time to wait when running an E2E test in a pipeline. I think we both agree that it's better than 23 minutes.**

### Parallel executions

Limited to 50.


Parallel runs limited to 50

### Invocations

1 invocation per test file in [./tests/E2E](./tests/E2E).


Number of calls equal to 110, 1 per test file

### Duration

The longest running lambda function was 10.2 seconds, less than half of the total execution time of all functions.

With a higher concurrent execution we would have better results in total time.


Duration showing the longest lambda was 10.2 seconds

## More information

> To understand how tests are run and AWS Lambda is built I recommend accessing the pipelines in [./.github/workflows/](./.github/workflows/) and the [Makefile](./Makefile).

### Deploying at AWS Lambda

1. Install serverless globally:

```sh
npm install --global [email protected]
```

2. Create AWS Acess keys: https://www.serverless.com/framework/docs/providers/aws/guide/credentials/#creating-aws-access-keys

3. Configure the Serverless Framework CLI to use AWS access keys

```sh
serverless config credentials \
--provider aws \
--key \
--secret
```

> More at: https://www.serverless.com/framework/docs/providers/aws/cli-reference/config-credentials#configure-the-default-profile

4. And, finally, deploy the application at AWS Lambda:

```sh
make deploy
```

### Run tests at AWS Lambda

After deploying run the tests using the following command:

```sh
make test-serverless
```

### Run locally (without using AWS Lambda)

Acess the directory [./tests](./tests) and execute:

```sh
npm ci
```

Run the test with:

```sh
npm test
```

___

[LICENSE GNU General Public License v3.0](./LICENSE)