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@…>, 10 years ago

Update test script for new code structure

  • Property mode set to 100644
File size: 3.2 KB
Line 
1import os
2import subprocess
3import re
4import sys
5try:
6    import xmlrunner
7except:
8    print "xmlrunner needs to be installed to run these tests"
9    print "Try easy_install unittest-xml-reporting"
10
11# Check whether we have matplotlib installed
12HAS_MPL_WX = True
13try:
14    import matplotlib
15    import wx
16except:
17    HAS_MPL_WX = False
18
19SKIPPED_DIRS = ["sansrealspace", "calculatorview"]
20if not HAS_MPL_WX:
21    SKIPPED_DIRS.append("sansguiframe")
22
23COMMAND_SEP = ';'
24if os.name == 'nt':
25    COMMAND_SEP = '&'
26
27def run_tests():
28    passed = 0
29    failed = 0
30    n_tests = 0
31    n_errors = 0
32    n_failures = 0
33   
34    for d in os.listdir(os.getcwd()):
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
41        module_dir = os.path.join(os.getcwd(),d,"test")
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)
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)
48                    code += "from %s import *;" % module_name
49                    code += "unittest.main(testRunner=xmlrunner.XMLTestRunner(output='logs'))\""
50                    proc = subprocess.Popen(code, shell=True, stdout=subprocess.PIPE, stderr = subprocess.STDOUT)
51                    std_out, std_err = proc.communicate()
52                    has_failed = True
53                    m = re.search("Ran ([0-9]+) test", std_out)
54                    if m is not None:
55                        has_failed = False
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
70                        print "Result for %s (%s): FAILED" % (module_name, module_dir)
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   
88    return failed
89
90if __name__ == '__main__':
91    if run_tests()>0:
92        sys.exit(1)
93   
Note: See TracBrowser for help on using the repository browser.