Skip to content
Snippets Groups Projects
test.py 2.69 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
    
    from systemtest.util import printAndFlush, renderDuration
    
    startTime = time.time()
    testCases = [] 
    failedTestCases = {}
    
    for f in sorted(os.listdir(os.path.dirname(os.path.abspath(__file__)))):
    
        splittedFileName = f.rsplit('.', 1)
        if len(splittedFileName) > 1:
            moduleName = splittedFileName[0]
            fileType = splittedFileName[1]
    
            if moduleName.startswith('test_') and fileType == 'py':
    
                testCases.append(moduleName)
    
                    failedTestCases[moduleName] = sys.exc_info()
    
                testCaseDurations[moduleName] = time.time() - moduleStartTime
    
    renderedStartTime = time.strftime('%Y-%m-%dT%H:%M:%S', time.localtime(startTime))
    
    duration = time.time() - startTime
    
    testResultsFolder = 'targets/test-results'
    if not os.path.exists(testResultsFolder):
        os.mkdir(testResultsFolder)
    with open('targets/test-results/TEST-integration.xml', 'w') as out:
        out.write('<?xml version="1.1" encoding="UTF-8"?>\n') 
        out.write("<testsuite name='integration' tests='%s' failures='%s' errors='0' timestamp='%s' time='%s'>\n"
    
                  % (len(testCases), len(failedTestCases), renderedStartTime, int(1000*duration)))
    
        for testCase in testCases:
    
            testCaseDuration = int(1000*testCaseDurations[testCase])
    
            if testCase in failedTestCases:
    
                out.write("  <testcase name='%s' time='%s'>\n" % (testCase, testCaseDuration))
    
                exceptionInfo = failedTestCases[testCase]
    
                out.write("    <failure>\n")
    
                msgs = traceback.format_exception(exceptionInfo[0], exceptionInfo[1], exceptionInfo[2])
                for msg in msgs:
    
                    out.write("      <![CDATA[\n      %s\n      ]]>\n" % msg)
    
                out.write("    </failure>\n")
                out.write("  </testcase>\n")
            else:
    
                out.write("  <testcase name='%s' time='%s'/>\n" % (testCase, testCaseDuration))
    
        out.write("</testsuite>\n") 
    
    printAndFlush('=====================================')
    
    printAndFlush("%d test cases executed in %s" % (len(testCases), renderDuration(duration)))
    
    numberOfFailedTestCases = len(failedTestCases)
    
        printAndFlush("no test case failed")
    
        printAndFlush("1 test case failed")
    
        printAndFlush("%d test cases failed" % len(failedTestCases))