colwin / load-test

A load-test script & container for Sock Shop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Load / Integration Tests

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

Parameters

  • [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)

Running locally

Requirements

  • locust pip install locustio

./runLocust.sh -h [host] -c [number of clients] -r [number of requests]

Running in Docker Container

  • Build docker build -t load-test .
  • Run docker run load-test -h [host] -c [number of clients] -r [number of requests]

About

A load-test script & container for Sock Shop

License:Apache License 2.0


Languages

Language:Shell 72.4%Language:Python 21.3%Language:Dockerfile 6.2%