Integration tests for StackLight plugins
Go to file
Guillaume Thouvenin 1aadb186aa Add script to generate certificate for plugins
This patch adds a script that generates a certificate signed by
the StackLight authority. The PEM file generated can be used to
configure plugins with HTTPs support.

Change-Id: I6ad092fa197d5d61a03f721304c8d9fe6d0a3ee1
2016-06-28 09:43:28 +02:00
doc Add toolchain test to check Nova metrics 2016-06-07 11:36:41 +03:00
fixtures Add script to generate certificate for plugins 2016-06-28 09:43:28 +02:00
stacklight_tests Really use the dedicated virtual IP for Nagios UI 2016-06-24 14:49:52 +02:00
utils Yet another dirty dependency hack 2016-06-27 10:28:51 +00:00
.gitignore Move openrc file 2016-05-12 10:36:32 +02:00
.gitreview Added .gitreview 2016-04-22 10:50:26 +00:00
openrc.default Add Grafana dashboards UI test 2016-05-26 18:58:50 +03:00
README.md Add Grafana dashboards UI test 2016-05-26 18:58:50 +03:00
requirements.txt Bump oslo.i18n to 3.1.0 2016-06-14 16:04:27 +02:00
tox.ini Generate documentation automatically 2016-05-20 16:49:07 +02:00

StackLight tests

This project contains the functional tests for the StackLight plugins.

It is based on two other projects:

Getting started

  1. Provision the SQL database for fuel-qa (see the official documentation for the detailed procedure).

  2. Prepare the environment:

     cp openrc.default openrc
     # Edit the openrc file as needed
     . openrc
     ./utils/fuel-qa-builder/prepare_env.sh
    
  3. Activate the Python virtual environment:

     . $VENV_PATH/bin/activate
    
  4. If you want to run UI test in headless mode, install these packages:

     sudo apt-get install xvfb firefox -y
    
  5. Run the tests:

     ./utils/jenkins/system_tests.sh -k -K -j fuelweb_test -t test -w $(pwd) -o --group=<your_test_group_to_run>
    

Documentation

The test cases include comments that can be turned into human-readable documentation:

    tox -edocs

The generated documentation is available at doc/_build/html/index.html.

Contributing

If you would like to contribute to the development of this plugin, you must follow the OpenStack development workflow instructions.

Patch reviews take place on the OpenStack Gerrit system.

Guidelines:

  • Run tox before submitting a review.

  • Declare test groups using the @test decorator (see the Proboscis documentation for details)

@test(groups=["<full_unique_name_of_test>",
              "<test_method_purpose>",
              "<plugin_name>",
              "<test_category>"])

For example

@test(groups=["install_influxdb_grafana",
              "install",
              "influxdb_grafana",
              "smoke"])
def install_influxdb_grafana():
    ....

Communication

The OpenStack Development Mailing List is the preferred way to communicate with the members of the project. Emails should be sent to openstack-dev@lists.openstack.org with the subject prefixed by [fuel][plugins][lma].