Statistics
| Branch: | Tag: | Revision:

root / kamaki / cli / test.py @ f17d6cb5

History | View | Annotate | Download (3.5 kB)

1
# Copyright 2013 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from unittest import makeSuite, TestSuite, TextTestRunner, TestCase
35
from inspect import getmembers, isclass
36

    
37
from kamaki.cli.command_tree.test import Command, CommandTree
38
from kamaki.cli.argument.test import Argument
39

    
40

    
41
#  TestCase auxiliary methods
42

    
43
def runTestCase(cls, test_name, args=[], failure_collector=[]):
44
    """
45
    :param cls: (TestCase) a set of Tests
46

47
    :param test_name: (str)
48

49
    :param args: (list) these are prefixed with test_ and used as params when
50
        instantiating cls
51

52
    :param failure_collector: (list) collects info of test failures
53

54
    :returns: (int) total # of run tests
55
    """
56
    suite = TestSuite()
57
    if args:
58
        suite.addTest(cls('_'.join(['test'] + args)))
59
    else:
60
        suite.addTest(makeSuite(cls))
61
    print('* Test * %s *' % test_name)
62
    r = TextTestRunner(verbosity=2).run(suite)
63
    failure_collector += r.failures
64
    return r.testsRun
65

    
66

    
67
def get_test_classes(module=__import__(__name__), name=''):
68
    module_stack = [module]
69
    while module_stack:
70
        module = module_stack[-1]
71
        module_stack = module_stack[:-1]
72
        for objname, obj in getmembers(module):
73
            if (objname == name or not name):
74
                if isclass(obj) and objname != 'TestCase' and (
75
                        issubclass(obj, TestCase)):
76
                    yield (obj, objname)
77

    
78

    
79
def main(argv):
80
    found = False
81
    failure_collector = list()
82
    num_of_tests = 0
83
    for cls, name in get_test_classes(name=argv[1] if len(argv) > 1 else ''):
84
        found = True
85
        num_of_tests += runTestCase(cls, name, argv[2:], failure_collector)
86
    if not found:
87
        print('Test "%s" not found' % ' '.join(argv[1:]))
88
    else:
89
        for i, failure in enumerate(failure_collector):
90
            print('Failure %s: ' % (i + 1))
91
            for field in failure:
92
                print('\t%s' % field)
93
        print('\nTotal tests run: %s' % num_of_tests)
94
        print('Total failures: %s' % len(failure_collector))
95

    
96

    
97
if __name__ == '__main__':
98
    from sys import argv
99
    main(argv)