Statistics
| Branch: | Tag: | Revision:

root / kamaki / cli / test.py @ b7ff6e0c

History | View | Annotate | Download (3.6 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 (
39
    Argument, ConfigArgument, RuntimeConfigArgument, FlagArgument,
40
    ValueArgument, IntArgument, DateArgument)
41

    
42

    
43
#  TestCase auxiliary methods
44

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

49
    :param test_name: (str)
50

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

54
    :param failure_collector: (list) collects info of test failures
55

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

    
68

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

    
80

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

    
98

    
99
if __name__ == '__main__':
100
    from sys import argv
101
    main(argv)