source: sasview/test/utest_sansview.py @ 17b1873

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 17b1873 was 17b1873, checked in by Mathieu Doucet <doucetm@…>, 11 years ago

Update test script for new code structure

  • Property mode set to 100644
File size: 3.2 KB
RevLine 
[1810613]1import os
2import subprocess
3import re
[08dcf6c8]4import sys
[849fa92]5try:
6    import xmlrunner
7except:
8    print "xmlrunner needs to be installed to run these tests"
[c04af1b]9    print "Try easy_install unittest-xml-reporting"
[1810613]10
[e89bb46]11# Check whether we have matplotlib installed
[aa01d07b]12HAS_MPL_WX = True
[e89bb46]13try:
14    import matplotlib
[aa01d07b]15    import wx
[e89bb46]16except:
[aa01d07b]17    HAS_MPL_WX = False
[e89bb46]18
[61f557b]19SKIPPED_DIRS = ["sansrealspace", "calculatorview"]
[aa01d07b]20if not HAS_MPL_WX:
[e89bb46]21    SKIPPED_DIRS.append("sansguiframe")
22
[111e52a]23COMMAND_SEP = ';'
24if os.name == 'nt':
25    COMMAND_SEP = '&'
[1810613]26
27def run_tests():
28    passed = 0
29    failed = 0
30    n_tests = 0
31    n_errors = 0
32    n_failures = 0
33   
[17b1873]34    for d in os.listdir(os.getcwd()):
[1810613]35       
36        # Check for modules to be skipped
37        if d in SKIPPED_DIRS:
38            continue
39       
40        # Go through modules looking for unit tests
[17b1873]41        module_dir = os.path.join(os.getcwd(),d,"test")
[1810613]42        if os.path.isdir(module_dir):
43            for f in os.listdir(module_dir):
44                file_path = os.path.join(module_dir,f)
45                if os.path.isfile(file_path) and f.startswith("utest_") and f.endswith(".py"):
46                    module_name,_ = os.path.splitext(f)
[08dcf6c8]47                    code = "cd %s%s%s -c \"import sys;import xmlrunner;import unittest;sys.path.insert(0, '%s');" % (module_dir, COMMAND_SEP, sys.executable, module_dir)
[1810613]48                    code += "from %s import *;" % module_name
[6232a6f]49                    code += "unittest.main(testRunner=xmlrunner.XMLTestRunner(output='logs'))\""
[1810613]50                    proc = subprocess.Popen(code, shell=True, stdout=subprocess.PIPE, stderr = subprocess.STDOUT)
51                    std_out, std_err = proc.communicate()
[6232a6f]52                    has_failed = True
[117a1d6]53                    m = re.search("Ran ([0-9]+) test", std_out)
[1810613]54                    if m is not None:
[6232a6f]55                        has_failed = False
[1810613]56                        n_tests += int(m.group(1))
57
58                    m = re.search("FAILED \(errors=([0-9]+)\)", std_out)
59                    if m is not None:
60                        has_failed = True
61                        n_errors += int(m.group(1))
62                   
63                    m = re.search("FAILED \(failures=([0-9]+)\)", std_out)
64                    if m is not None:
65                        has_failed = True
66                        n_failures += int(m.group(1))
67                   
68                    if has_failed:
69                        failed += 1
[117a1d6]70                        print "Result for %s (%s): FAILED" % (module_name, module_dir)
[1810613]71                        print std_out
72                    else:
73                        passed += 1
74                        print "Result for %s: SUCCESS" % module_name
75                       
76    print "\n----------------------------------------------"
77    print "Results by test modules:"
78    print "    PASSED: %d" % passed
79    ratio = 100.0*failed/(failed+passed)
80    print "    FAILED: %d    (%2.2g%%)" % (failed,ratio) 
81   
82    print "Results by tests:"
83    print "    Tests run:    %d" % n_tests
84    print "    Tests failed: %d" % n_failures
85    print "    Test errors:  %d" % n_errors
86    print "----------------------------------------------"
87   
[d7b49576]88    return failed
[1810613]89
90if __name__ == '__main__':
[d7b49576]91    if run_tests()>0:
92        sys.exit(1)
93   
Note: See TracBrowser for help on using the repository browser.