charm-cinder/tests
Corey Bryant 6a427372de Overall refresh to current install from source approach 2015-03-21 02:18:45 +00:00
..
charmhelpers Sync charm-helpers 2015-03-21 01:41:02 +00:00
00-setup Initial support for deploying from git 2015-03-07 21:27:57 -05:00
14-basic-precise-icehouse add basic amulet tests; update Makefile publish and *test targets 2014-07-31 15:27:14 +00:00
15-basic-trusty-icehouse add basic amulet tests; update Makefile publish and *test targets 2014-07-31 15:27:14 +00:00
16-basic-trusty-icehouse-git Overall refresh to current install from source approach 2015-03-21 02:18:45 +00:00
17-basic-trusty-juno Overall refresh to current install from source approach 2015-03-21 02:18:45 +00:00
18-basic-trusty-juno-git Overall refresh to current install from source approach 2015-03-21 02:18:45 +00:00
README Amulet test fixes: 2014-10-07 18:32:59 +00:00
basic_deployment.py Overall refresh to current install from source approach 2015-03-21 02:18:45 +00:00

README

This directory provides Amulet tests that focus on verification of Cinder
deployments.

In order to run tests, you'll need charm-tools installed (in addition to
juju, of course):
    sudo add-apt-repository ppa:juju/stable
    sudo apt-get update
    sudo apt-get install charm-tools

If you use a web proxy server to access the web, you'll need to set the
AMULET_HTTP_PROXY environment variable to the http URL of the proxy server.

The following examples demonstrate different ways that tests can be executed.
All examples are run from the charm's root directory.

  * To run all tests (starting with 00-setup):

      make test

  * To run a specific test module (or modules):

      juju test -v -p AMULET_HTTP_PROXY 15-basic-trusty-icehouse

  * To run a specific test module (or modules), and keep the environment
    deployed after a failure:

      juju test --set-e -v -p AMULET_HTTP_PROXY 15-basic-trusty-icehouse

  * To re-run a test module against an already deployed environment (one
    that was deployed by a previous call to 'juju test --set-e'):

      ./tests/15-basic-trusty-icehouse


For debugging and test development purposes, all code should be idempotent.
In other words, the code should have the ability to be re-run without changing
the results beyond the initial run.  This enables editing and re-running of a
test module against an already deployed environment, as described above.

Additional testing and debug information:

  * Use DEBUG to turn on debug logging, use ERROR otherwise.

      u = OpenStackAmuletUtils(ERROR)
      u = OpenStackAmuletUtils(DEBUG)

  * To interact with the deployed environment:

      export OS_USERNAME=admin
      export OS_PASSWORD=openstack
      export OS_TENANT_NAME=admin
      export OS_REGION_NAME=RegionOne
      export OS_AUTH_URL=${OS_AUTH_PROTOCOL:-http}://`juju-deployer -e trusty -f keystone`:5000/v2.0
      keystone user-list
      cinder list

  * Handy commands for watching these tests run or manually poking around:

      watch "cinder list && cinder snapshot-list && glance image-list"
      watch "juju get cinder | egrep 'verbose|debug|true|false'"
      watch "juju ssh cinder/0 'sudo lvs && sudo status cinder-api && sudo status cinder-volume'"
      juju set cinder verbose=false && juju set cinder debug=false

  * Be aware that method names that start with 'test_' are called in alpha/num
    order.  Test methods which are order-sensitive can be numbered to ensure
    that they run in the expected order.  ex:

      test_000_earlytest
      test_300_sometest
      test_999_latertest

  * Preserving the deployed environment:
    Even with juju --set-e, amulet will tear down the juju environment
    when all tests pass.  This force_fail 'test' can be used in basic_deployment.py
    to simulate a failed test and keep the environment.

    def test_zzzz_fake_fail(self):
        '''Force a fake fail to keep juju environment after a successful test run'''
        # Useful in test writing, when used with:   juju test --set-e
        amulet.raise_status(amulet.FAIL, msg='using fake fail to keep juju environment')