These tests simulate actual end user usage of the application. They are used to validate the overall functionality and can also be used to put simulated load on the system. The tests are written using locust.io
[host]
- The hostname (and port if applicable) where the application is exposed. (Required)[number of clients]
- The nuber of concurrent end users to simulate. (Optional: Default is 2)[number of requests]
- The total number of requests to run before terminating the tests. (Optional: Default is 10)
- locust
pip install locustio
./runLocust.sh -h [host] -c [number of clients] -r [number of requests]
- Build
docker build -t load-test .
- Run
docker run load-test -h [host] -c [number of clients] -r [number of requests]