1 | #!/usr/bin/env python |
---|
2 | from __future__ import print_function |
---|
3 | |
---|
4 | import os |
---|
5 | import subprocess |
---|
6 | import re |
---|
7 | import sys |
---|
8 | |
---|
9 | import logging |
---|
10 | import logging.config |
---|
11 | LOGGER_CONFIG_FILE = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'logging.ini') |
---|
12 | logging.config.fileConfig(LOGGER_CONFIG_FILE) |
---|
13 | logger = logging.getLogger(__name__) |
---|
14 | |
---|
15 | try: |
---|
16 | import xmlrunner |
---|
17 | except: |
---|
18 | logger.error("xmlrunner needs to be installed to run these tests") |
---|
19 | logger.error("Try easy_install unittest-xml-reporting") |
---|
20 | sys.exit(1) |
---|
21 | |
---|
22 | # Check whether we have matplotlib installed |
---|
23 | HAS_MPL_WX = True |
---|
24 | try: |
---|
25 | import matplotlib |
---|
26 | import wx |
---|
27 | except: |
---|
28 | HAS_MPL_WX = False |
---|
29 | |
---|
30 | SKIPPED_DIRS = ["sasrealspace", "calculatorview"] |
---|
31 | if not HAS_MPL_WX: |
---|
32 | SKIPPED_DIRS.append("sasguiframe") |
---|
33 | |
---|
34 | #COMMAND_SEP = ';' |
---|
35 | #if os.name == 'nt': |
---|
36 | # COMMAND_SEP = '&' |
---|
37 | |
---|
38 | def run_tests(dirs=None, all=False): |
---|
39 | test_root = os.path.abspath(os.path.dirname(__file__)) |
---|
40 | run_one_py = os.path.join(test_root, 'run_one.py') |
---|
41 | passed = 0 |
---|
42 | failed = 0 |
---|
43 | n_tests = 0 |
---|
44 | n_errors = 0 |
---|
45 | n_failures = 0 |
---|
46 | |
---|
47 | for d in (dirs if dirs else os.listdir(test_root)): |
---|
48 | |
---|
49 | # Check for modules to be skipped |
---|
50 | if d in SKIPPED_DIRS: |
---|
51 | continue |
---|
52 | |
---|
53 | |
---|
54 | # Go through modules looking for unit tests |
---|
55 | module_dir = os.path.join(test_root, d, "test") |
---|
56 | if os.path.isdir(module_dir): |
---|
57 | for f in os.listdir(module_dir): |
---|
58 | file_path = os.path.join(module_dir,f) |
---|
59 | if os.path.isfile(file_path) and f.startswith("utest_") and f.endswith(".py"): |
---|
60 | module_name,_ = os.path.splitext(f) |
---|
61 | code = '"%s" %s %s'%(sys.executable, run_one_py, file_path) |
---|
62 | proc = subprocess.Popen(code, shell=True, stdout=subprocess.PIPE, stderr = subprocess.STDOUT) |
---|
63 | std_out, std_err = proc.communicate() |
---|
64 | #print std_out |
---|
65 | #sys.exit() |
---|
66 | has_failed = True |
---|
67 | m = re.search("Ran ([0-9]+) test", std_out) |
---|
68 | if m is not None: |
---|
69 | has_failed = False |
---|
70 | n_tests += int(m.group(1)) |
---|
71 | |
---|
72 | m = re.search("FAILED \(errors=([0-9]+)\)", std_out) |
---|
73 | if m is not None: |
---|
74 | has_failed = True |
---|
75 | n_errors += int(m.group(1)) |
---|
76 | |
---|
77 | m = re.search("FAILED \(failures=([0-9]+)\)", std_out) |
---|
78 | if m is not None: |
---|
79 | has_failed = True |
---|
80 | n_failures += int(m.group(1)) |
---|
81 | |
---|
82 | if has_failed: |
---|
83 | failed += 1 |
---|
84 | print("Result for %s (%s): FAILED" % (module_name, module_dir)) |
---|
85 | print(std_out) |
---|
86 | else: |
---|
87 | passed += 1 |
---|
88 | print("Result for %s: SUCCESS" % module_name) |
---|
89 | |
---|
90 | print("\n----------------------------------------------") |
---|
91 | if n_tests == 0: |
---|
92 | print("No tests.") |
---|
93 | else: |
---|
94 | print("Results by test modules:") |
---|
95 | print(" PASSED: %d" % passed) |
---|
96 | ratio = 100.0*failed/(failed+passed) |
---|
97 | print(" FAILED: %d (%.0f%%)" % (failed,ratio)) |
---|
98 | |
---|
99 | print("Results by tests:") |
---|
100 | print(" Tests run: %d" % n_tests) |
---|
101 | print(" Tests failed: %d" % n_failures) |
---|
102 | print(" Test errors: %d" % n_errors) |
---|
103 | print("----------------------------------------------") |
---|
104 | |
---|
105 | return failed |
---|
106 | |
---|
107 | if __name__ == '__main__': |
---|
108 | all = (len(sys.argv) > 1 and sys.argv[1] == '-all') |
---|
109 | dirs = sys.argv[1:] if not all else sys.argv[2:] |
---|
110 | if run_tests(dirs=dirs, all=all)>0: |
---|
111 | sys.exit(1) |
---|
112 | |
---|