13
13
BASEDIR = os .path .dirname (os .path .abspath (__file__ ))
14
14
15
15
16
- def set_package (packages_path , package ):
16
+ def setup_package (package ):
17
+ packages_path = sublime .packages_path ()
17
18
package_path = os .path .join (packages_path , package )
18
19
try :
19
20
shutil .rmtree (package_path )
@@ -30,20 +31,19 @@ def set_package(packages_path, package):
30
31
pass
31
32
32
33
33
- def cleanup_package (packages_path , package ):
34
+ def cleanup_package (package ):
34
35
try :
35
- shutil .rmtree (os .path .join (packages_path , package ))
36
+ shutil .rmtree (os .path .join (sublime . packages_path () , package ))
36
37
except FileNotFoundError :
37
38
pass
38
39
39
40
40
- def prepare_package (package , output = None , syntax_test = False , syntax_compatibility = False ,
41
- color_scheme_test = False , delay = 200 , wait_timeout = 5000 ):
41
+ def test_package (package , output = None , syntax_test = False , syntax_compatibility = False ,
42
+ color_scheme_test = False , wait_timeout = 5000 ):
42
43
def wrapper (func ):
43
44
@wraps (func )
44
45
def real_wrapper (self ):
45
46
packages_path = sublime .packages_path ()
46
- set_package (packages_path , package )
47
47
48
48
if output :
49
49
# set by _Output/unittesting.json
@@ -53,7 +53,6 @@ def real_wrapper(self):
53
53
outfile = os .path .join (packages_path , "User" , "UnitTesting" , package , "result" )
54
54
result_file = outfile
55
55
56
- yield delay
57
56
yield AWAIT_WORKER
58
57
59
58
kwargs = {"package" : package }
@@ -89,8 +88,6 @@ def condition():
89
88
if isiterable (deferred ):
90
89
yield from deferred
91
90
92
- cleanup_package (packages_path , package )
93
-
94
91
yield
95
92
96
93
return real_wrapper
@@ -112,54 +109,84 @@ def assertOk(self, txt, msg=None):
112
109
113
110
class TestUnitTesting (UnitTestingTestCase ):
114
111
115
- @prepare_package ("_Success" )
112
+ def setUp (self ):
113
+ setup_package ("_Success" )
114
+ setup_package ("_Failure" )
115
+ setup_package ("_Empty" )
116
+ setup_package ("_Output" )
117
+ setup_package ("_Deferred" )
118
+ setup_package ("_Async" )
119
+ yield 500
120
+
121
+ def tearDown (self ):
122
+ cleanup_package ("_Success" )
123
+ cleanup_package ("_Failure" )
124
+ cleanup_package ("_Empty" )
125
+ cleanup_package ("_Output" )
126
+ cleanup_package ("_Deferred" )
127
+ cleanup_package ("_Async" )
128
+
129
+ @test_package ("_Success" )
116
130
def test_success (self , txt ):
117
131
self .assertOk (txt )
118
132
119
- @prepare_package ("_Failure" )
133
+ @test_package ("_Failure" )
120
134
def test_failure (self , txt ):
121
135
self .assertRegexContains (txt , r'^FAILED \(failures=1\)' )
122
136
123
- @prepare_package ("_Error" )
137
+ @test_package ("_Error" )
124
138
def test_error (self , txt ):
125
139
self .assertRegexContains (txt , r'^ERROR' )
126
140
127
- @prepare_package ("_Empty" )
141
+ @test_package ("_Empty" )
128
142
def test_empty (self , txt ):
129
143
self .assertRegexContains (txt , r'^No tests are found.' )
130
144
131
- @prepare_package ("_Output" , "tests/result" )
145
+ @test_package ("_Output" , "tests/result" )
132
146
def test_output (self , txt ):
133
147
self .assertOk (txt )
134
148
135
- @prepare_package ("_Deferred" )
149
+ @test_package ("_Deferred" )
136
150
def test_deferred (self , txt ):
137
151
self .assertOk (txt )
138
152
139
- @prepare_package ("_Async" )
153
+ @test_package ("_Async" )
140
154
def test_async (self , txt ):
141
155
self .assertOk (txt )
142
156
143
157
144
158
class TestSyntax (UnitTestingTestCase ):
145
159
146
- @prepare_package ("_Syntax_Failure" , syntax_test = True , delay = 500 )
160
+ def setUp (self ):
161
+ setup_package ("_Syntax_Failure" )
162
+ setup_package ("_Syntax_Success" )
163
+ setup_package ("_Syntax_Compat_Failure" )
164
+ setup_package ("_Syntax_Compat_Success" )
165
+ yield 500
166
+
167
+ def tearDown (self ):
168
+ cleanup_package ("_Syntax_Failure" )
169
+ cleanup_package ("_Syntax_Success" )
170
+ cleanup_package ("_Syntax_Compat_Failure" )
171
+ cleanup_package ("_Syntax_Compat_Success" )
172
+
173
+ @test_package ("_Syntax_Failure" , syntax_test = True )
147
174
def test_fail_syntax (self , txt ):
148
175
self .assertRegexContains (txt , r'^FAILED: 1 of 21 assertions in 1 file failed$' )
149
176
150
- @prepare_package ("_Syntax_Success" , syntax_test = True , delay = 500 )
177
+ @test_package ("_Syntax_Success" , syntax_test = True )
151
178
def test_success_syntax (self , txt ):
152
179
self .assertOk (txt )
153
180
154
- @prepare_package ("_Syntax_Error" , syntax_test = True , delay = 500 )
181
+ @test_package ("_Syntax_Error" , syntax_test = True )
155
182
def test_error_syntax (self , txt ):
156
183
self .assertRegexContains (txt , r'^ERROR: No syntax_test' )
157
184
158
- @prepare_package ("_Syntax_Compat_Failure" , syntax_compatibility = True , delay = 500 )
185
+ @test_package ("_Syntax_Compat_Failure" , syntax_compatibility = True )
159
186
def test_fail_syntax_compatibility (self , txt ):
160
187
self .assertRegexContains (txt , r'^FAILED: 3 errors in 1 of 1 syntax$' )
161
188
162
- @prepare_package ("_Syntax_Compat_Success" , syntax_compatibility = True , delay = 500 )
189
+ @test_package ("_Syntax_Compat_Success" , syntax_compatibility = True )
163
190
def test_success_syntax_compatibility (self , txt ):
164
191
self .assertOk (txt )
165
192
@@ -173,13 +200,23 @@ def has_colorschemeunit():
173
200
174
201
175
202
class TestColorScheme (UnitTestingTestCase ):
203
+
204
+ def setUp (self ):
205
+ setup_package ("_ColorScheme_Failure" )
206
+ setup_package ("_ColorScheme_Success" )
207
+ yield 500
208
+
209
+ def tearDown (self ):
210
+ cleanup_package ("_ColorScheme_Failure" )
211
+ cleanup_package ("_ColorScheme_Success" )
212
+
176
213
@skipIf (not has_colorschemeunit (), "ColorSchemeUnit is not installed" )
177
- @prepare_package ("_ColorScheme_Failure" , color_scheme_test = True )
214
+ @test_package ("_ColorScheme_Failure" , color_scheme_test = True )
178
215
def test_fail_color_scheme (self , txt ):
179
216
self .assertRegexContains (txt , r'^There were 14 failures:$' )
180
217
181
218
@skipIf (not has_colorschemeunit (), "ColorSchemeUnit is not installed" )
182
- @prepare_package ("_ColorScheme_Success" , color_scheme_test = True )
219
+ @test_package ("_ColorScheme_Success" , color_scheme_test = True )
183
220
def test_success_color_scheme (self , txt ):
184
221
self .assertOk (txt )
185
222
@@ -191,9 +228,10 @@ def tidy_path(path):
191
228
class TestTempDirectoryTestCase (TempDirectoryTestCase ):
192
229
193
230
def test_temp_dir (self ):
194
- self .assertTrue (tidy_path (
195
- self ._temp_dir ),
196
- tidy_path (self .window .folders ()[0 ]))
231
+ self .assertTrue (
232
+ tidy_path (self ._temp_dir ),
233
+ tidy_path (self .window .folders ()[0 ])
234
+ )
197
235
198
236
199
237
class TestViewTestCase (ViewTestCase ):
0 commit comments