Skip to content

Commit b9b5b47

Browse files
author
deathaxe
committed
WIP setup/teardown
1 parent 1bcef75 commit b9b5b47

File tree

1 file changed

+64
-26
lines changed

1 file changed

+64
-26
lines changed

tests/test_3141596.py

+64-26
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
BASEDIR = os.path.dirname(os.path.abspath(__file__))
1414

1515

16-
def set_package(packages_path, package):
16+
def setup_package(package):
17+
packages_path = sublime.packages_path()
1718
package_path = os.path.join(packages_path, package)
1819
try:
1920
shutil.rmtree(package_path)
@@ -30,20 +31,19 @@ def set_package(packages_path, package):
3031
pass
3132

3233

33-
def cleanup_package(packages_path, package):
34+
def cleanup_package(package):
3435
try:
35-
shutil.rmtree(os.path.join(packages_path, package))
36+
shutil.rmtree(os.path.join(sublime.packages_path(), package))
3637
except FileNotFoundError:
3738
pass
3839

3940

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):
4243
def wrapper(func):
4344
@wraps(func)
4445
def real_wrapper(self):
4546
packages_path = sublime.packages_path()
46-
set_package(packages_path, package)
4747

4848
if output:
4949
# set by _Output/unittesting.json
@@ -53,7 +53,6 @@ def real_wrapper(self):
5353
outfile = os.path.join(packages_path, "User", "UnitTesting", package, "result")
5454
result_file = outfile
5555

56-
yield delay
5756
yield AWAIT_WORKER
5857

5958
kwargs = {"package": package}
@@ -89,8 +88,6 @@ def condition():
8988
if isiterable(deferred):
9089
yield from deferred
9190

92-
cleanup_package(packages_path, package)
93-
9491
yield
9592

9693
return real_wrapper
@@ -112,54 +109,84 @@ def assertOk(self, txt, msg=None):
112109

113110
class TestUnitTesting(UnitTestingTestCase):
114111

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")
116130
def test_success(self, txt):
117131
self.assertOk(txt)
118132

119-
@prepare_package("_Failure")
133+
@test_package("_Failure")
120134
def test_failure(self, txt):
121135
self.assertRegexContains(txt, r'^FAILED \(failures=1\)')
122136

123-
@prepare_package("_Error")
137+
@test_package("_Error")
124138
def test_error(self, txt):
125139
self.assertRegexContains(txt, r'^ERROR')
126140

127-
@prepare_package("_Empty")
141+
@test_package("_Empty")
128142
def test_empty(self, txt):
129143
self.assertRegexContains(txt, r'^No tests are found.')
130144

131-
@prepare_package("_Output", "tests/result")
145+
@test_package("_Output", "tests/result")
132146
def test_output(self, txt):
133147
self.assertOk(txt)
134148

135-
@prepare_package("_Deferred")
149+
@test_package("_Deferred")
136150
def test_deferred(self, txt):
137151
self.assertOk(txt)
138152

139-
@prepare_package("_Async")
153+
@test_package("_Async")
140154
def test_async(self, txt):
141155
self.assertOk(txt)
142156

143157

144158
class TestSyntax(UnitTestingTestCase):
145159

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)
147174
def test_fail_syntax(self, txt):
148175
self.assertRegexContains(txt, r'^FAILED: 1 of 21 assertions in 1 file failed$')
149176

150-
@prepare_package("_Syntax_Success", syntax_test=True, delay=500)
177+
@test_package("_Syntax_Success", syntax_test=True)
151178
def test_success_syntax(self, txt):
152179
self.assertOk(txt)
153180

154-
@prepare_package("_Syntax_Error", syntax_test=True, delay=500)
181+
@test_package("_Syntax_Error", syntax_test=True)
155182
def test_error_syntax(self, txt):
156183
self.assertRegexContains(txt, r'^ERROR: No syntax_test')
157184

158-
@prepare_package("_Syntax_Compat_Failure", syntax_compatibility=True, delay=500)
185+
@test_package("_Syntax_Compat_Failure", syntax_compatibility=True)
159186
def test_fail_syntax_compatibility(self, txt):
160187
self.assertRegexContains(txt, r'^FAILED: 3 errors in 1 of 1 syntax$')
161188

162-
@prepare_package("_Syntax_Compat_Success", syntax_compatibility=True, delay=500)
189+
@test_package("_Syntax_Compat_Success", syntax_compatibility=True)
163190
def test_success_syntax_compatibility(self, txt):
164191
self.assertOk(txt)
165192

@@ -173,13 +200,23 @@ def has_colorschemeunit():
173200

174201

175202
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+
176213
@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)
178215
def test_fail_color_scheme(self, txt):
179216
self.assertRegexContains(txt, r'^There were 14 failures:$')
180217

181218
@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)
183220
def test_success_color_scheme(self, txt):
184221
self.assertOk(txt)
185222

@@ -191,9 +228,10 @@ def tidy_path(path):
191228
class TestTempDirectoryTestCase(TempDirectoryTestCase):
192229

193230
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+
)
197235

198236

199237
class TestViewTestCase(ViewTestCase):

0 commit comments

Comments
 (0)