Files
watcher/doc/source/dev/environment.rst
David TARDIVEL f763d6c608 refactoring documentation
Change-Id: I47ac167a3d96497fe4211e8a24ec97d0d32db35c
2015-10-29 17:54:58 +01:00

249 lines
7.1 KiB
ReStructuredText

..
============================================
Setting up a Watcher development environment
============================================
This document describes getting the source from watcher `Git repository`_
for development purposes.
To install Watcher from packaging, refer instead to Watcher `User
Documentation`_.
.. _`Git Repository`: http://git.openstack.org/cgit/openstack/watcher
.. _`User Documentation`: https://factory.b-com.com/www/watcher/doc/watcher/
Prerequisites
=============
This document assumes you are using Ubuntu or Fedora, and that you have the following tools available on your system:
- Python_ 2.7 and 3.4
- git_
- setuptools_
- pip_
- msgfmt (part of the gettext package)
- virtualenv and virtualenvwrapper_
**Reminder**: If you're successfully using a different platform, or a
different version of the above, please document your configuration here!
.. _Python: http://www.python.org/
.. _git: http://git-scm.com/
.. _setuptools: http://pypi.python.org/pypi/setuptools
.. _virtualenvwrapper: https://virtualenvwrapper.readthedocs.org/en/latest/install.html
Getting the latest code
=======================
Make a clone of the code from our `Git repository`:
.. code-block:: bash
$ git clone https://git.openstack.org/openstack/watcher.git
When that is complete, you can:
.. code-block:: bash
$ cd watcher
Installing dependencies
=======================
Watcher maintains two lists of dependencies::
requirements.txt
test-requirements.txt
The first is the list of dependencies needed for running Watcher, the second list includes dependencies used for active development and testing of Watcher itself.
These dependencies can be installed from PyPi_ using the Python tool pip_.
.. _PyPi: http://pypi.python.org/
.. _pip: http://pypi.python.org/pypi/pip
However, your system *may* need additional dependencies that `pip` (and by
extension, PyPi) cannot satisfy. These dependencies should be installed
prior to using `pip`, and the installation method may vary depending on
your platform.
* Ubuntu 14.04:
.. code-block:: bash
$ sudo apt-get install python-dev libssl-dev libmysqlclient-dev libffi-dev
* Fedora 19+:
.. code-block:: bash
$ sudo yum install openssl-devel libffi-devel mysql-devel
PyPi Packages and VirtualEnv
----------------------------
We recommend establishing a virtualenv to run Watcher within. virtualenv
limits the Python environment to just what you're installing as dependencies,
useful to keep a clean environment for working on Watcher.
.. code-block:: bash
$ mkvirtualenv watcher
$ git clone https://git.openstack.org/openstack/watcher
# Use 'python setup.py' to link Watcher into Python's site-packages
$ cd watcher && python setup.py install
# Install the dependencies for running Watcher
$ pip install -r ./requirements.txt
# Install the dependencies for developing, testing, and running Watcher
$ pip install -r ./test-requirements.txt
This will create a local virtual environment in the directory ``$WORKON_HOME``.
The virtual environment can be disabled using the command:
.. code-block:: bash
$ deactivate
You can re-activate this virtualenv for your current shell using:
.. code-block:: bash
$ workon watcher
For more information on virtual environments, see virtualenv_.
.. _virtualenv: http://www.virtualenv.org/
Verifying Watcher is set up
===========================
Once set up, either directly or within a virtualenv, you should be able to
invoke Python and import the libraries. If you're using a virtualenv, don't
forget to activate it:
.. code-block:: bash
$ workon watcher
You should then be able to `import watcher` using Python without issue:
.. code-block:: bash
$ python -c "import watcher"
If you can import watcher without a traceback, you should be ready to develop.
Run Watcher unit tests
======================
All unit tests should be run using tox. To run the unit tests under py27 and also run the pep8 tests:
.. code-block:: bash
$ workon watcher
(watcher) $ pip install tox
(watcher) $ cd watcher
(watcher) $ tox -epep8 -epy27
You may pass options to the test programs using positional arguments. To run a specific unit test, this passes the -r option and desired test (regex string) to os-testr:
.. code-block:: bash
$ workon watcher
(watcher) $ tox -epy27 -- tests.api
When you're done, deactivate the virtualenv:
.. code-block:: bash
$ deactivate
Build the Watcher documentation
===============================
you can easily build the HTML documentation from ``doc/source`` files, by using tox:
.. code-block:: bash
$ workon watcher
(watcher) $ cd watcher
(watcher) $ tox -edocs
The HTML files are available into ``doc/build`` directory.
Configure the Watcher modules
=============================
Watcher modules requires a configuration file. There is a sample configuration file that can be used to get started:
.. code-block:: bash
$ cp etc/watcher.conf.sample etc/watcher.conf
The defaults are enough to get you going, but you can make any changes if needed.
Create Watcher SQL database
===========================
When initially getting set up, after you've configured which databases to use, you're probably going to need to run the following to your database schema in place:
.. code-block:: bash
$ workon watcher
(watcher) $ watcher-db-manage --create_schema
Running Watcher modules
=======================
To run Watcher API server instance, use:
.. code-block:: bash
$ workon watcher
(watcher) $ watcher-api
To run Watcher Decision Engine instance, use:
.. code-block:: bash
$ workon watcher
(watcher) $ watcher-decision-engine
To run Watcher Applier instance, use:
.. code-block:: bash
$ workon watcher
(watcher) $ watcher-applier
Default configuration of these modules are available into ``/etc/watcher`` directory. See :doc:`../deploy/configuration` for details on how Watcher is configured. By default, Watcher is configured with SQL backends.
Interact with Watcher
=====================
You can also interact with Watcher through its REST API. There is a Python Watcher client library `python-watcherclient`_ which interacts exclusively through the REST API, and which Watcher itself uses to provide its command-line interface.
When initially getting set up, after you've configured which databases to use, you're probably going to need to run the following to your database schema in place:
.. _`python-watcherclient`: https://github.com/openstack/python-watcherclient
Exercising the Watcher Services Locally
=======================================
If you would like to exercise the Watcher services in isolation within a local virtual environment, you can do this without starting any other OpenStack services. For example, this is useful for rapidly prototyping and debugging interactions over the RPC channel, testing database migrations, and so forth.
You will find in the `watcher-tools`_ project, Ansible playbooks and Docker template files to easily play with Watcher modules within a minimal OpenStack isolated environment (Identity, Message Bus, SQL database, Horizon, ...).
.. _`watcher-tools`: https://github.com/b-com/watcher-tools