This is a backend daemon that listens to fedmsg and queries PDC to determine which artifacts are affected. It will then trigger the appropriate rebuilds of these components.
Set up a python virtualenv:
$ sudo dnf -y install python-virtualenvwrapper $ source ~/.bashrc $ mkvirtualenv outhouse
Setup outhouse and its dependencies:
$ workon outhouse $ pip install -r requirements.txt $ python setup.py develop
Try running the test suite:
$ pip install -r test-requirements.txt $ nosetests
Check test suite coverage:
$ pip install coverage $ nosetests --with-coverage --cover-package=pdcupdater
...from https://pdc.fedoraproject.org/
-H 'Accept: application/json'
, to tell the API you want dataCopy fedmsg.d/pdcupdater-example.py
to fedmsg.d/pdcupdater.py
and fill
in your token there.
Run it for real:
$ fedmsg-hub
Finally, you can take the dev instructions from the-new-hotness and learn how to set up a local fedmsg-relay so you can replay production messages and more fully test out outhouse.
A fake bodhi update can then be sent to test the consumer:
echo '{"update": {"builds": [{"nvr": "kernel-4.3.4-200.fc24"}], "release": {"long_name": "Fedora 24"}}}' | fedmsg-logger --modname bodhi --topic update.complete.stable --json-input