source: sasview/test/utest_sansview.py @ aa01d07b

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 aa01d07b was aa01d07b, checked in by Mathieu Doucet <doucetm@…>, 11 years ago

skip test if wx can't be found (we're only testing the framework)

  • 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
23SANSVIEW_DIR = os.pardir
24COMMAND_SEP = ';'
25if os.name == 'nt':
26    COMMAND_SEP = '&'
27
28def run_tests():
29    passed = 0
30    failed = 0
31    n_tests = 0
32    n_errors = 0
33    n_failures = 0
34   
35    for d in os.listdir(SANSVIEW_DIR):
36       
37        # Check for modules to be skipped
38        if d in SKIPPED_DIRS:
39            continue
40       
41        # Go through modules looking for unit tests
42        module_dir = os.path.join(os.getcwd(),SANSVIEW_DIR,d,"test")
43        if os.path.isdir(module_dir):
44            for f in os.listdir(module_dir):
45                file_path = os.path.join(module_dir,f)
46                if os.path.isfile(file_path) and f.startswith("utest_") and f.endswith(".py"):
47                    module_name,_ = os.path.splitext(f)
48                    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)
49                    code += "from %s import *;" % module_name
50                    code += "unittest.main(testRunner=xmlrunner.XMLTestRunner(output='logs'))\""
51                    proc = subprocess.Popen(code, shell=True, stdout=subprocess.PIPE, stderr = subprocess.STDOUT)
52                    std_out, std_err = proc.communicate()
53                    has_failed = True
54                    m = re.search("Ran ([0-9]+) test", std_out)
55                    if m is not None:
56                        has_failed = False
57                        n_tests += int(m.group(1))
58
59                    m = re.search("FAILED \(errors=([0-9]+)\)", std_out)
60                    if m is not None:
61                        has_failed = True
62                        n_errors += int(m.group(1))
63                   
64                    m = re.search("FAILED \(failures=([0-9]+)\)", std_out)
65                    if m is not None:
66                        has_failed = True
67                        n_failures += int(m.group(1))
68                   
69                    if has_failed:
70                        failed += 1
71                        print "Result for %s (%s): FAILED" % (module_name, module_dir)
72                        print std_out
73                    else:
74                        passed += 1
75                        print "Result for %s: SUCCESS" % module_name
76                       
77    print "\n----------------------------------------------"
78    print "Results by test modules:"
79    print "    PASSED: %d" % passed
80    ratio = 100.0*failed/(failed+passed)
81    print "    FAILED: %d    (%2.2g%%)" % (failed,ratio) 
82   
83    print "Results by tests:"
84    print "    Tests run:    %d" % n_tests
85    print "    Tests failed: %d" % n_failures
86    print "    Test errors:  %d" % n_errors
87    print "----------------------------------------------"
88   
89    return failed
90
91if __name__ == '__main__':
92    if run_tests()>0:
93        sys.exit(1)
94   
Note: See TracBrowser for help on using the repository browser.