Please note: The main version of this repository is https://bitbucket.org/atlassian/localstack, please raise PRs against that repo.
LocalStack provides an easy-to-use test/mocking framework for developing Cloud applications.
Currently, the focus is primarily on supporting the AWS cloud stack.
LocalStack spins up the following core Cloud APIs on your local machine:
- API Gateway at http://localhost:4567
- Kinesis at http://localhost:4568
- DynamoDB at http://localhost:4569
- DynamoDB Streams at http://localhost:4570
- Elasticsearch at http://localhost:4571
- S3 at http://localhost:4572
- Firehose at http://localhost:4573
- Lambda at http://localhost:4574
- SNS at http://localhost:4575
- SQS at http://localhost:4576
- Redshift at http://localhost:4577
Additionally, LocalStack provides a powerful set of tools to interact with the cloud services, including a fully featured KCL Kinesis client with Python binding, simple setup/teardown integration for nosetests, as well as an Environment abstraction that allows to easily switch between local and remote Cloud execution.
LocalStack builds on existing best-of-breed mocking/testing tools, most notably kinesalite/dynalite and moto. While these tools are awesome (!), they lack functionality for certain use cases. LocalStack combines the tools, makes them interoperable, and adds important missing functionality on top of them:
- Error injection: LocalStack allows to inject errors frequently occurring in real Cloud environments,
for instance
ProvisionedThroughputExceededException
which is thrown by Kinesis or DynamoDB if the amount of read/write throughput is exceeded. - Actual HTTP REST services: All services in LocalStack allow actual HTTP connections on a TCP port. In contrast,
moto uses boto client proxies that are injected into all methods annotated with
@mock_sqs
. These client proxies do not perform an actual REST call, but rather call a local mock service method that lives in the same process as the test code. - Language agnostic: Although LocalStack is written in Python, it works well with arbitrary programming languages and environments, due to the fact that we are using the actual REST APIs via HTTP.
- Isolated processes: All services in LocalStack run in separate processes. The overhead of additional processes is negligible, and the entire stack can easily be executed on any developer machine and CI server. In moto, components are often hard-wired in RAM (e.g., when forwarding a message on an SNS topic to an SQS queue, the queue endpoint is looked up in a local hash map). In contrast, LocalStack services live in isolation (separate processes available via HTTP), which fosters true decoupling and more closely resembles the real cloud environment.
- Pluggable services: All services in LocalStack are easily pluggable (and replaceable), due to the fact that we are using isolated processes for each service. This allows us to keep the framework up-to-date and select best-of-breed mocks for each individual service (e.g., kinesalite is much more advanced than its moto counterpart).
make
python
(currently only Python 2 supported)pip
(python package manager)npm
(node.js package manager)java
/javac
(Java runtime environment and compiler)mvn
(Maven, the build system for Java)
The easiest way to install LocalStack is via pip
:
pip install localstack
You can also spin up LocalStack without any installation requirements, using Docker:
docker run -it -p 4567-4578:4567-4578 -p 8080:8080 atlassianlabs/localstack
... or simply use the make
target which runs the same command:
make docker-run
You can pass the following environment variables to LocalStack:
SERVICES
: Comma-separated list of service names and (optional) ports they should run on. If no port is specified, a default port is used. Service names basically correspond to the service names of the AWS CLI (kinesis
,lambda
,sqs
, etc), although LocalStack only supports a subset of them. Example value:kinesis,lambda:4569,sqs:4570
to start Kinesis on the default port, Lambda on port 4569, and SQS on port 4570.DEFAULT_REGION
: AWS region to use when talking to the API (defaults tous-east-1
).HOSTNAME
: If you need to expose your services on a specific host (defaults tolocalhost
).KINESIS_ERROR_PROBABILITY
: Decimal value between 0.0 (default) and 1.0 to randomly injectProvisionedThroughputExceededException
errors into Kinesis API responses.
If you pull the repo in order to extend/modify LocalStack, run this command to install all the dependencies:
make install
This will install the required pip dependencies in a local Python virtualenv directory
.venv
(your global python packages will remain untouched), as well as some node modules
in ./localstack/node_modules/
. Depending on your system, some pip/npm modules may require
additional native libs installed.
The project comes with a set of unit and integration tests which can be kicked off via a make target:
make test
The Makefile contains a target to conveniently run the local infrastructure.
make infra
Then you can point your aws
CLI to use the local infrastructure, for example:
aws --endpoint-url=http://localhost:4568 kinesis list-streams
{
"StreamNames": []
}
If you are accessing the cloud APIs from within yout Python code, you can also use boto3
and use
the endpoint_url
parameter to connect to the respective service on localhost
.
See localstack.utils.aws.aws_stack
for convenience methods to connect to the local services.
If you want to use LocalStack in your integration tests (e.g., nosetests), simply fire up the infrastructure in your test setup method and then clean up everything in your teardown method:
from localstack.mock import infra
def setup():
infra.start_infra(async=True)
def teardown():
infra.stop_infra()
def my_app_test():
# here goes your test logic
See the example test file tests/test_integration.py
for more details.
In order to use LocalStack with Java, the project ships with a simple JUnit runner. Take a look
at the example JUnit test in ext/java
. When you run the test, all dependencies are automatically
downloaded and installed to a temporary directory in your system.
@RunWith(LocalstackTestRunner.class)
public class MyCloudAppTest {
@Test
public void testLocalS3API() {
AmazonS3 s3 = new AmazonS3Client(...);
s3.setEndpoint(LocalstackTestRunner.getEndpointS3());
List<Bucket> buckets = s3.listBuckets();
...
}
}
The projects also comes with a simple Web dashboard that allows to view the deployed AWS components and the relationship between them.
make install-web
make web
- v0.3.10: Add initial support for S3 bucket notifications; fix subprocess32 installation
- v0.3.9: Make services/ports configurable via $SERVICES; add tests for Firehose+S3
- v0.3.8: Fix Elasticsearch via local bind and proxy; refactoring; improve error logging
- v0.3.5: Fix lambda handler name; fix host name for S3 API; install web libs on pip install
- v0.3.4: Fix file permissions in build; fix and add UI to Docker image; add stub of ES API
- v0.3.3: Add version tags to Docker images
- v0.3.2: Add support for Redshift API; code refactoring
- v0.3.1: Add Dockerfile and push image to Docker Hub
- v0.3.0: Add simple integration for JUnit; improve process signal handling
- v0.2.11: Refactored the AWS assume role function
- v0.2.10: Added AWS assume role functionality.
- v0.2.9: Kinesis error response formatting
- v0.2.7: Throw Kinesis errors randomly
- v0.2.6: Decouple SNS/SQS: intercept SNS calls and forward to subscribed SQS queues
- v0.2.5: Return error response from Kinesis if flag is set
- v0.2.4: Allow Lambdas to use file (import from file instead of exec'ing)
- v0.2.3: Improve Kinesis/KCL auto-checkpointing (leases in DDB)
- v0.2.0: Speed up installation time by lazy loading libraries
- v0.1.19: Pass shard_id in records sent from KCL process
- v0.1.16: Minor restructuring and refactoring (create separate kinesis_util.py)
- v0.1.14: Fix AWS tokens when creating Elasticsearch client
- v0.1.11: Add startup/initialization notification for KCL process
- v0.1.10: Bump version of amazon_kclpy to 1.4.1
- v0.1.9: Add initial support for SQS/SNS
- v0.1.8: Fix installation of JARs in amazon_kclpy if localstack is installed transitively
- v0.1.7: Bump version of amazon_kclpy to 1.4.0
- v0.1.6: Add travis-ci and coveralls configuration
- v0.1.5: Refactor Elasticsearch utils; fix bug in method to delete all ES indexes
- v0.1.4: Enhance logging; extend java KCL credentials provider (support STS assumed roles)
- v0.1.2: Add configurable KCL log output
- v0.1.0: Initial release
We welcome feedback, bug reports, and pull requests!
For pull requests, please stick to the following guidelines:
- Add tests for any new features and bug fixes. Ideally, each PR should increase the test coverage.
- Follow the existing code style (e.g., indents). A PEP8 code linting target is included in the Makefile.
- Put a reasonable amount of comments into the code.
- Separate unrelated changes into multiple pull requests.
Please note that we need to collect a signed Contributors License Agreement from each individual developer who contributes code to this repository. Please refer to the following links:
- https://developer.atlassian.com/opensource/
- https://na2.docusign.net/Member/PowerFormSigning.aspx?PowerFormId=3f94fbdc-2fbe-46ac-b14c-5d152700ae5d
Copyright (c) 2016 Atlassian and others.
LocalStack is released under the Apache License, Version 2.0 (see LICENSE.txt).
We build on a number of third-party software tools, with the following licenses:
Third-Party software | License |
---|---|
Python/pip modules: | |
airspeed | BSD License |
amazon_kclpy | Amazon Software License |
boto3 | Apache License 2.0 |
coverage | Apache License 2.0 |
docopt | MIT License |
elasticsearch | Apache License 2.0 |
flask | BSD License |
flask_swagger | MIT License |
jsonpath-rw | Apache License 2.0 |
moto | Apache License 2.0 |
nose | GNU LGPL |
pep8 | Expat license |
requests | Apache License 2.0 |
sh | MIT License |
subprocess32 | PSF License |
Node.js/npm modules: | |
dynalite | MIT License |
kinesalite | MIT License |
Other tools: | |
Elasticsearch | Apache License 2.0 |