]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
Fix up the test framework
authorMichael Kerrin <michael.kerrin@hp.com>
Thu, 16 May 2013 08:10:27 +0000 (08:10 +0000)
committerMichael Kerrin <michael.kerrin@hp.com>
Fri, 14 Jun 2013 14:02:17 +0000 (14:02 +0000)
commit930f5891b0815e1b49b9b2cc840e0c24b2796e84
treeb38eb951ec7c9c940ae5d1929a5d9de7abd465ff
parent0a26b70c986135c24db643ca9ecaa23660dcb41a
Fix up the test framework

When trying to test a bug the cinder test framework was
running all the tests when I just wanted one to run.

Instead of fixing this problem in nose I tried to move cinder to
testr. I copied a fair bit of code from nova to get this to work.
This way at least if some one makes an improvement to the nova
test framework cinder can improve here also.

Note that now all the tests a thread safe. Added a concurrency argument
to run_tests.sh that defaults to 1. You can specify your own level then
and take the risk of intermittent failures. Tell jenkins to use a
concurrency level of 1 to avoid failing gate jobs.

Note One of these tests is broken and I have disabled for now. There
is a bug for this here: https://bugs.launchpad.net/cinder/+bug/1173266

Note: cinder.api.openstack.FaultWrapper is deprecated and is causing
a circular import when I try and import cinder.tests.test_wsgi. This
is fixed by only importing the openstack.FaultWrapper during the
__init__ phase of the wsgi middleware.

Fixes: bug 1183434
Fixes: bug 1177924
Change-Id: I5e10b55c5b236eb81a6a3e0e9ea56af8ca4ef8e1
16 files changed:
.testr.conf [new file with mode: 0644]
cinder/api/openstack/__init__.py
cinder/test.py
cinder/tests/__init__.py
cinder/tests/api/contrib/test_admin_actions.py
cinder/tests/integrated/test_volumes.py
cinder/tests/test_netapp_nfs.py
cinder/tests/test_scality.py
cinder/tests/test_volume_rpcapi.py
cinder/tests/windows/basetestcase.py
run_tests.sh
setup.cfg
test-requirements.txt
tools/colorizer.py [new file with mode: 0755]
tools/with_venv.sh
tox.ini