configurationengine/source/cone/core/tests/__init__.py
changeset 0 2e8eeb919028
child 3 e7e0ae78773e
equal deleted inserted replaced
-1:000000000000 0:2e8eeb919028
       
     1 #
       
     2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 # All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Nokia Corporation - initial contribution.
       
    11 #
       
    12 # Contributors:
       
    13 #
       
    14 # Description: 
       
    15 #
       
    16 
       
    17 import unittest, os, sys
       
    18 
       
    19 ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
       
    20 SOURCE_ROOT = os.path.normpath(os.path.join(ROOT_PATH, '../../..'))
       
    21 TESTAUTO_ROOT = os.path.normpath(os.path.join(ROOT_PATH, '../../../testautomation'))
       
    22 if SOURCE_ROOT not in sys.path:
       
    23     sys.path.append(SOURCE_ROOT)
       
    24 if TESTAUTO_ROOT not in sys.path:
       
    25     sys.path.insert(0,TESTAUTO_ROOT)
       
    26     
       
    27 # Find all unittest_*.py files in this folder
       
    28 import re
       
    29 __all__ = filter(lambda name: re.match(r'^unittest_.*\.py$', name) != None, os.listdir(ROOT_PATH))
       
    30 # Strip .py endings
       
    31 __all__ = map(lambda name: name[:-3], __all__)
       
    32 
       
    33 def collect_suite():  
       
    34     sys.path.insert(0, ROOT_PATH)
       
    35     try:
       
    36         suite = unittest.TestSuite()
       
    37         for test_module in __all__:
       
    38             # Load the test module dynamically and add it to the test suite
       
    39             module = __import__(test_module)
       
    40             suite.addTests(unittest.TestLoader().loadTestsFromModule(module))
       
    41         return suite
       
    42     finally:
       
    43         del sys.path[0]
       
    44 
       
    45 def runtests():
       
    46     unittest.TextTestRunner(verbosity=2).run(collect_suite())
       
    47 
       
    48 if __name__ == '__main__':
       
    49     runtests()