This is a simple script to send some browser traffic to the dt-orders app with a configurable loop count and base URL.
See the overview repo for how to setup the application.
Assuming the dt-orders app is running, start docker with this command and adjust arguments as needed.
docker run -it \
--env SCRIPT_NUM_LOOPS=1 \
--env APP_URL=http://172.17.0.1 \
dtdemos/dt-orders-broswer:1
Logging level defaults to INFO, but can be changed with addition variable.
Valid values are: DEBUG, INFO, WARNING, ERROR, CRITICAL
docker run -it \
--env SCRIPT_NUM_LOOPS=1 \
--env APP_URL=http://172.17.0.1 \
--env LOGGING_LEVEL=DEBUG \
dtdemos/dt-orders-broswer:1
Use start-browser.sh and stop-browser.sh as a helper script to test the docker image.
# example override of URL to run for 10000 loops, in detached more
sudo ./start-browser.sh http://44.234.152.110 10000
# example override of URL to run for 1 loops, in foreground LOGGING_LEVEL=DEBUG mode
sudo ./start-browser.sh http://44.234.152.110 1 DEBUG
# Install Python 3.x
brew install python
python --version
# Install Pip
pip install pip
pip install --user pipenv
# Install required packaged
pip install -r requirements.txt
See versions here
curl chromedriver.storage.googleapis.com/89.0.4389.23/chromedriver_mac64.zip -o chromedriver_mac64.zip
unzip chromedriver_mac64.zip chromedriver -d /usr/local/bin/
rm chromedriver_mac64.zip
chromedriver --version
-
Edit script and run it
# with no browser showing python app.py --url http://localhost --num_loops 1 # with no browser showing and logging set to DEBUG level python app.py --url http://localhost --num_loops 1 -l DEBUG # with browser showing python app.py --showbrowser --url http://localhost --num_loops 1 -
Use
buildpush.shto build and push the Docker image