2fbe6d3260 | ||
---|---|---|
.. | ||
autoclassify | ||
changelog | ||
client | ||
e2e | ||
etl | ||
extract | ||
intermittents_commenter | ||
log_parser | ||
model | ||
perf | ||
perfalert | ||
push_health | ||
sample_data | ||
selenium | ||
services | ||
seta | ||
test_worker | ||
ui | ||
utils | ||
webapp | ||
README.md | ||
__init__.py | ||
conftest.py | ||
env.bat | ||
sample_data_generator.py | ||
sampledata.py | ||
settings.py | ||
test_middleware.py | ||
test_setup.py | ||
test_utils.py |
README.md
Backend development
The backend test suite can be run outside the Docker container.
Start the services
We need all but the main backend
service running. Since multiple backend
instances are allowed, we will simply start everything up
# ENSURE THE IMAGES ARE CLEAN
docker rm "/mysql"
docker rm "/frontend"
docker rm "/rabbitmq"
docker rm "/redis"
docker rm "/backend"
docker-compose down
docker volume rm treeherder_mysql_data
# SETUP ALL IMAGES
docker-compose up --build
Install into virtual environment
Treeherder requires specific library versions that will likely interfere with what you have installed. It is best to setup a virtual environment to contain the quirks it introduces.
Be sure you are in the treeherder
main directory
python -m venv .venv # IMPORTANT: Notice the dot in the name
source .venv/bin/activate
pip install -r requirements/dev.txt
pip install -r requirements/common.txt
...or Windows...
python -m pip install virtualenv
rem IMPORTANT: Notice the dot in `.venv`
python -m virtualenv .venv
.venv\Scripts\activate
pip install -r requirements\dev.txt
pip install -r requirements\common.txt
The pip install order is important: We want the
common
requirements to overwrite thedev
requirements (in the event there are conflicts)
Set environment variables
For Windows, Treeherder requires a number of environment variables that point to the services. In our case, those services are in local docker containers.
.\tests\env.bat
If you plan to use an IDE, here is the same, as a very long line
BROKER_URL=localhost//guest:guest@rabbitmq//;DATABASE_URL=mysql://root@localhost:3306/treeherder;REDIS_URL=redis://localhost:6379;SITE_URL=http://backend:8000/;TREEHERDER_DEBUG=True;TREEHERDER_DJANGO_SECRET_KEY=secret-key-of-at-least-50-characters-to-pass-check-deploy;NEW_RELIC_DEVELOPER_MODE=True
Ensure everything is working
Django can perform a number of checks to ensure you are configured correctly
./manage.py check
Running tests
Be sure docker-compose is up, you are in the treeherder
main directory, your virtual environment is activated, and your environment variables are set:
source .venv/bin/activate
Followed by either one of the two commands below.
All tests
pytest tests
Start TDD-enhanced test runner in the background
Whenever code changes are detected within the project, command below will run only the associated tests. Test runs will be triggered for either application or tests code changes.
This workflow ensures a considerably faster feedback loop for those wanting to do test driven development.
ptw --runner "pytest --testmon" --clear
Pre commit checks
If you made some changes, and want to submit a pull request; run the ./runtests.sh
script (found in the main directory). It will run some linters to check your submission.
For Windows, you can run the checks in a container (see below)
Run tests in container
After docker-compose up
, you may spin up any number of backend
containers. You may want to run ingestion tasks, go exploring, or run the tests.
docker-compose exec backend bash
docker-compose has three execution modes
exec
- run just the service, and assume the others are runningrun
- run all the services, but do not open their portsup
- run all the services with ports open
More can be read here: docker-composes up vs run vs exec
Inside this container
pytest tests
Setup git pre-commit hook
Running checks locally will allow you to catch linting errors faster. We put the git pre-commit hook into the virtual environment to avoid polluting your dev machine
.venv\Scripts\activate
pip install pre-commit
pre-commit install