[IMP]Odoo shell helpers function signature improved
This commit is contained in:
parent
d076bb9230
commit
edff1295de
@ -20,21 +20,39 @@
|
||||
from imp import reload
|
||||
import unittest
|
||||
|
||||
def run_test(module, test_names='ALL', test_class_name='DEFAULT'):
|
||||
def run_test(module, test_names=False, test_class_name=''):
|
||||
""" Helper to allow testing of single method or all from TestCase
|
||||
Takes module as python module, and names as strings
|
||||
module is automatically reloaded for recent updates in shell
|
||||
test_names can be only one string or an array of strings
|
||||
test_class_name can be automatically found from module name """
|
||||
test_class_name can be automatically found from module name.
|
||||
|
||||
For example, from Odoo SHELL, first, import the modules :
|
||||
|
||||
>>> from shell_helpers import run_test
|
||||
>>> from odoo.addons.addon.tests import test_file
|
||||
|
||||
Then, launch all tests from the module, and guessed className (here TestFile) :
|
||||
|
||||
>>> run_test(test_file)
|
||||
|
||||
Or launch only some tests :
|
||||
|
||||
>>> run_test(test_file, ['test_one', 'test_two'])
|
||||
|
||||
Or launch all tests from specific className :
|
||||
|
||||
>>> run_test(test_file, test_class_name='TestModelOne')
|
||||
"""
|
||||
module = reload(module)
|
||||
suite = unittest.TestSuite()
|
||||
if test_class_name == 'DEFAULT':
|
||||
if not test_class_name:
|
||||
module_name = module.__name__.split('.')[-1]
|
||||
test_class_name = ''.join(map(str.capitalize, module_name.split('_')))
|
||||
if test_class_name not in dir(module):
|
||||
raise Exception('Generated class name (%s) not found in module, please '
|
||||
'specify' % test_class_name)
|
||||
if test_names == 'ALL':
|
||||
if not test_names:
|
||||
testCase = getattr(module, test_class_name)
|
||||
tests = unittest.TestLoader().loadTestsFromTestCase(testCase)
|
||||
suite.addTests(tests)
|
||||
|
Loading…
Reference in New Issue
Block a user