16a04df3d0
Manila's test framework is pretty old and requires update. Changes: - usage of nose replaced with testr - now all the tests are thread safe - added new options for run_tests.sh, such as --concurrency, --debug, etc... - new '--concurrency' option for run_tests.sh defaults to 1, examples: ./run_tests.sh # will run in 1 thread ./run_tests.sh --concurrency 2 # will run tests in 2 threads - added tools/colorizer.py for colorizing output of testrun with run_tests.sh - tests running with tox use as much threads as cores available by default - examples of testrun with tox: tox # will run test suites defined with 'envlist' in tox.ini, now it is pep8,py26,py27 tox -epy27 # amount of threads is equal to amount of cores tox -epy27 -- --concurrency=2 # amount of threads is 2 tox -epy27 -- --concurrency=4 # amount of threads is 4 - Added 'Database' class to manila.test module, for more conveniant db testing - updated policy file 'manila/tests/policy.json' to allow share-network actions - removed nose-related requirements - added new requirements for testrepository, subunit With merge of this change all old installed virtual environments become incompatible and should be removed with "rm -rf .tox .venv" before testrun. Implements blueprint testr-with-unittests Change-Id: I9579ecd538e29d478dbc12adc7dcc33fc668b397
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
# Copyright 2010 United States Government as represented by the
|
|
# Administrator of the National Aeronautics and Space Administration.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""
|
|
:mod:`manila.tests` -- Manila Unittests
|
|
=====================================================
|
|
|
|
.. automodule:: manila.tests
|
|
:platform: Unix
|
|
.. moduleauthor:: Jesse Andrews <jesse@ansolabs.com>
|
|
.. moduleauthor:: Devin Carlen <devin.carlen@gmail.com>
|
|
.. moduleauthor:: Vishvananda Ishaya <vishvananda@gmail.com>
|
|
.. moduleauthor:: Joshua McKenty <joshua@cognition.ca>
|
|
.. moduleauthor:: Manish Singh <yosh@gimp.org>
|
|
.. moduleauthor:: Andy Smith <andy@anarkystic.com>
|
|
"""
|
|
|
|
import eventlet
|
|
eventlet.monkey_patch()
|
|
|
|
# See http://code.google.com/p/python-nose/issues/detail?id=373
|
|
# The code below enables nosetests to work with i18n _() blocks
|
|
import __builtin__
|
|
setattr(__builtin__, '_', lambda x: x)
|