1
1
import os
2
2
import re
3
3
import shutil
4
- from functools import partial , wraps
4
+ from functools import wraps
5
5
from unittest import skipIf
6
6
from unittesting .utils import isiterable
7
7
from unittesting import DeferrableTestCase
11
11
import sublime
12
12
13
13
BASEDIR = os .path .dirname (os .path .abspath (__file__ ))
14
- UUTDIR = os .path .join (
15
- sublime .packages_path (), 'User' , 'UnitTesting' )
16
14
17
15
18
- def set_package (package ):
16
+ def setup_package (package ):
17
+ packages_path = sublime .packages_path ()
18
+ package_path = os .path .join (packages_path , package )
19
19
try :
20
- shutil .rmtree (os . path . join ( sublime . packages_path (), package ) )
21
- except Exception :
20
+ shutil .rmtree (package_path )
21
+ except FileNotFoundError :
22
22
pass
23
23
try :
24
- shutil .copytree (
25
- os .path .join (BASEDIR , package ),
26
- os .path .join (sublime .packages_path (), package ))
27
- except Exception :
24
+ shutil .copytree (os .path .join (BASEDIR , package ), package_path )
25
+ except FileNotFoundError :
28
26
pass
29
27
try :
30
- shutil .rmtree (os .path .join (UUTDIR , package ))
31
- except Exception :
28
+ shutil .rmtree (os .path .join (packages_path , "User" , "UnitTesting" , package ))
29
+ except FileNotFoundError :
32
30
pass
33
31
34
32
35
33
def cleanup_package (package ):
36
34
try :
37
35
shutil .rmtree (os .path .join (sublime .packages_path (), package ))
38
- except Exception :
36
+ except FileNotFoundError :
39
37
pass
40
38
41
39
42
- def prepare_package (package , output = None , syntax_test = False , syntax_compatibility = False ,
43
- color_scheme_test = False , delay = 1000 , wait_timeout = 5000 ):
40
+ def with_package (package , output = None , syntax_test = False , syntax_compatibility = False ,
41
+ color_scheme_test = False , wait_timeout = 5000 ):
44
42
def wrapper (func ):
45
43
@wraps (func )
46
44
def real_wrapper (self ):
47
- set_package (package )
45
+ packages_path = sublime .packages_path ()
46
+
48
47
if output :
49
- # set by _Ooutput /unittesting.json
48
+ # set by _Output /unittesting.json
50
49
outfile = None
51
- result_file = os .path .join (sublime . packages_path () , package , output )
50
+ result_file = os .path .join (packages_path , package , output )
52
51
else :
53
- outfiledir = os .path .join (UUTDIR , package )
54
- outfile = os .path .join (outfiledir , "result" )
52
+ outfile = os .path .join (packages_path , "User" , "UnitTesting" , package , "result" )
55
53
result_file = outfile
56
- os .makedirs (outfiledir , exist_ok = True )
57
54
58
- yield delay
59
55
yield AWAIT_WORKER
60
56
61
- args = {"package" : package }
57
+ kwargs = {"package" : package }
62
58
if outfile :
63
- # Command args have the highest precedence. Passing down
59
+ # Command kwargs have the highest precedence. Passing down
64
60
# 'None' is not what we want, the intention is to omit it
65
61
# so that the value from 'unittesting.json' wins.
66
- args ["output" ] = outfile
62
+ kwargs ["output" ] = outfile
67
63
68
64
if syntax_test :
69
- sublime .run_command ("unit_testing_syntax" , args )
65
+ sublime .run_command ("unit_testing_syntax" , kwargs )
70
66
elif syntax_compatibility :
71
- sublime .run_command ("unit_testing_syntax_compatibility" , args )
67
+ sublime .run_command ("unit_testing_syntax_compatibility" , kwargs )
72
68
elif color_scheme_test :
73
- sublime .run_command ("unit_testing_color_scheme" , args )
69
+ sublime .run_command ("unit_testing_color_scheme" , kwargs )
74
70
else :
75
- sublime .run_command ("unit_testing" , args )
71
+ sublime .run_command ("unit_testing" , kwargs )
76
72
77
- def condition (result_file ):
78
- with open (result_file , 'r' ) as f :
79
- txt = f .read ()
80
- return "UnitTesting: Done." in txt
73
+ def condition ():
74
+ try :
75
+ with open (result_file , 'r' ) as f :
76
+ txt = f .read ()
77
+ return "UnitTesting: Done." in txt
78
+ except FileNotFoundError :
79
+ return False
81
80
82
- yield {"condition" : partial ( condition , result_file ) , "timeout" : wait_timeout }
81
+ yield {"condition" : condition , "period" : 200 , "timeout" : wait_timeout }
83
82
84
83
with open (result_file , 'r' ) as f :
85
84
txt = f .read ()
@@ -88,14 +87,24 @@ def condition(result_file):
88
87
if isiterable (deferred ):
89
88
yield from deferred
90
89
91
- cleanup_package (package )
92
-
93
90
yield
91
+
94
92
return real_wrapper
93
+
95
94
return wrapper
96
95
97
96
98
97
class UnitTestingTestCase (DeferrableTestCase ):
98
+ fixtures = ()
99
+
100
+ def setUp (self ):
101
+ for fixture in self .fixtures :
102
+ setup_package (fixture )
103
+ yield 500
104
+
105
+ def tearDown (self ):
106
+ for fixture in self .fixtures :
107
+ cleanup_package (fixture )
99
108
100
109
def assertRegexContains (self , txt , expr , msg = None ):
101
110
if re .search (expr , txt , re .MULTILINE ) is None :
@@ -108,75 +117,85 @@ def assertOk(self, txt, msg=None):
108
117
109
118
110
119
class TestUnitTesting (UnitTestingTestCase ):
120
+ fixtures = (
121
+ "_Success" , "_Failure" , "_Empty" , "_Output" , "_Deferred" , "_Async"
122
+ )
111
123
112
- @prepare_package ("_Success" )
124
+ @with_package ("_Success" )
113
125
def test_success (self , txt ):
114
126
self .assertOk (txt )
115
127
116
- @prepare_package ("_Failure" )
128
+ @with_package ("_Failure" )
117
129
def test_failure (self , txt ):
118
130
self .assertRegexContains (txt , r'^FAILED \(failures=1\)' )
119
131
120
- @prepare_package ("_Error" )
132
+ @with_package ("_Error" )
121
133
def test_error (self , txt ):
122
134
self .assertRegexContains (txt , r'^ERROR' )
123
135
124
- @prepare_package ("_Empty" )
136
+ @with_package ("_Empty" )
125
137
def test_empty (self , txt ):
126
138
self .assertRegexContains (txt , r'^No tests are found.' )
127
139
128
- @prepare_package ("_Output" , "tests/result" )
140
+ @with_package ("_Output" , "tests/result" )
129
141
def test_output (self , txt ):
130
142
self .assertOk (txt )
131
143
132
- @prepare_package ("_Deferred" )
144
+ @with_package ("_Deferred" )
133
145
def test_deferred (self , txt ):
134
146
self .assertOk (txt )
135
147
136
- @prepare_package ("_Async" )
148
+ @with_package ("_Async" )
137
149
def test_async (self , txt ):
138
150
self .assertOk (txt )
139
151
140
152
141
153
class TestSyntax (UnitTestingTestCase ):
142
-
143
- @prepare_package ("_Syntax_Failure" , syntax_test = True )
154
+ fixtures = (
155
+ "_Syntax_Failure" ,
156
+ "_Syntax_Success" ,
157
+ "_Syntax_Compat_Failure" ,
158
+ "_Syntax_Compat_Success" ,
159
+ )
160
+
161
+ @with_package ("_Syntax_Failure" , syntax_test = True )
144
162
def test_fail_syntax (self , txt ):
145
163
self .assertRegexContains (txt , r'^FAILED: 1 of 21 assertions in 1 file failed$' )
146
164
147
- @prepare_package ("_Syntax_Success" , syntax_test = True )
165
+ @with_package ("_Syntax_Success" , syntax_test = True )
148
166
def test_success_syntax (self , txt ):
149
167
self .assertOk (txt )
150
168
151
- @prepare_package ("_Syntax_Error" , syntax_test = True )
169
+ @with_package ("_Syntax_Error" , syntax_test = True )
152
170
def test_error_syntax (self , txt ):
153
171
self .assertRegexContains (txt , r'^ERROR: No syntax_test' )
154
172
155
- @prepare_package ("_Syntax_Compat_Failure" , syntax_compatibility = True )
173
+ @with_package ("_Syntax_Compat_Failure" , syntax_compatibility = True )
156
174
def test_fail_syntax_compatibility (self , txt ):
157
175
self .assertRegexContains (txt , r'^FAILED: 3 errors in 1 of 1 syntax$' )
158
176
159
- @prepare_package ("_Syntax_Compat_Success" , syntax_compatibility = True )
177
+ @with_package ("_Syntax_Compat_Success" , syntax_compatibility = True )
160
178
def test_success_syntax_compatibility (self , txt ):
161
179
self .assertOk (txt )
162
180
163
181
164
182
def has_colorschemeunit ():
165
- if "ColorSchemeUnit.sublime-package" in os .listdir (sublime .installed_packages_path ()):
166
- return True
167
- elif "ColorSchemeUnit" in os .listdir (sublime .packages_path ()):
168
- return True
169
- return False
183
+ return (
184
+ os .path .isfile (os .path .join (sublime .installed_packages_path (), "ColorSchemeUnit.sublime-package" )) or
185
+ os .path .isdir (os .path .join (sublime .packages_path (), "ColorSchemeUnit" ))
186
+ )
170
187
171
188
172
189
class TestColorScheme (UnitTestingTestCase ):
190
+ fixtures = ("_ColorScheme_Failure" , "_ColorScheme_Success" )
191
+
173
192
@skipIf (not has_colorschemeunit (), "ColorSchemeUnit is not installed" )
174
- @prepare_package ("_ColorScheme_Failure" , color_scheme_test = True )
193
+ @with_package ("_ColorScheme_Failure" , color_scheme_test = True )
175
194
def test_fail_color_scheme (self , txt ):
176
195
self .assertRegexContains (txt , r'^There were 14 failures:$' )
177
196
178
197
@skipIf (not has_colorschemeunit (), "ColorSchemeUnit is not installed" )
179
- @prepare_package ("_ColorScheme_Success" , color_scheme_test = True )
198
+ @with_package ("_ColorScheme_Success" , color_scheme_test = True )
180
199
def test_success_color_scheme (self , txt ):
181
200
self .assertOk (txt )
182
201
@@ -188,9 +207,10 @@ def tidy_path(path):
188
207
class TestTempDirectoryTestCase (TempDirectoryTestCase ):
189
208
190
209
def test_temp_dir (self ):
191
- self .assertTrue (tidy_path (
192
- self ._temp_dir ),
193
- tidy_path (self .window .folders ()[0 ]))
210
+ self .assertTrue (
211
+ tidy_path (self ._temp_dir ),
212
+ tidy_path (self .window .folders ()[0 ])
213
+ )
194
214
195
215
196
216
class TestViewTestCase (ViewTestCase ):
0 commit comments