Skip to content
Snippets Groups Projects
test.py 1.21 KiB
Newer Older
  • Learn to ignore specific revisions
  • #!/usr/bin/python
    """
    Runs all test cases in alphabetical order. A test case is a file of type '.py' and starts with 'test-'.
    Exit value will 0 if all test cases succeeded otherwise it will be 1.
    """
    import os
    import os.path
    import sys
    import time
    
    import settings
    
    from systemtest.util import printAndFlush, renderDuration
    
    
    startTime = time.time() 
    numberOfTestCases = 0
    numberOfFailedTestCases = 0
    for f in sorted(os.listdir(os.path.dirname(__file__))):
        splittedFileName = f.rsplit('.', 1)
        if len(splittedFileName) > 1:
            moduleName = splittedFileName[0]
            fileType = splittedFileName[1]
            if moduleName.startswith('test_') and fileType == 'py':
                numberOfTestCases += 1
                try:
                    __import__(moduleName)
                except:
                    numberOfFailedTestCases += 1
    
    printAndFlush('=====================================')
    
    printAndFlush("%d test cases executed in %s" % (numberOfTestCases, renderDuration(time.time() - startTime)))
    
        printAndFlush("no test case failed")
    
        printAndFlush("1 test case failed")
    
        printAndFlush("%d test cases failed" % numberOfFailedTestCases)