Skip to content

Commit 31d7746

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

File tree

1 file changed

+54
-16
lines changed

1 file changed

+54
-16
lines changed

tests/test_3141596.py

+54-16
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def wrapper(func):
4343
@wraps(func)
4444
def real_wrapper(self):
4545
packages_path = sublime.packages_path()
46-
set_package(packages_path, package)
46+
# set_package(packages_path, package)
4747

4848
if output:
4949
# set by _Output/unittesting.json
@@ -89,7 +89,7 @@ def condition():
8989
if isiterable(deferred):
9090
yield from deferred
9191

92-
cleanup_package(packages_path, package)
92+
# cleanup_package(packages_path, package)
9393

9494
yield
9595

@@ -112,6 +112,27 @@ def assertOk(self, txt, msg=None):
112112

113113
class TestUnitTesting(UnitTestingTestCase):
114114

115+
def setUp(self):
116+
packages_path = sublime.packages_path()
117+
set_package(packages_path, "_Success")
118+
set_package(packages_path, "_Failure")
119+
set_package(packages_path, "_Error")
120+
set_package(packages_path, "_Empty")
121+
set_package(packages_path, "_Output")
122+
set_package(packages_path, "_Deferred")
123+
set_package(packages_path, "_Async")
124+
yield 500
125+
126+
def tearDown(self):
127+
packages_path = sublime.packages_path()
128+
cleanup_package(packages_path, "_Success")
129+
cleanup_package(packages_path, "_Failure")
130+
cleanup_package(packages_path, "_Error")
131+
cleanup_package(packages_path, "_Empty")
132+
cleanup_package(packages_path, "_Output")
133+
cleanup_package(packages_path, "_Deferred")
134+
cleanup_package(packages_path, "_Async")
135+
115136
@prepare_package("_Success")
116137
def test_success(self, txt):
117138
self.assertOk(txt)
@@ -143,23 +164,40 @@ def test_async(self, txt):
143164

144165
class TestSyntax(UnitTestingTestCase):
145166

146-
@prepare_package("_Syntax_Failure", syntax_test=True, delay=500)
167+
def setUp(self):
168+
packages_path = sublime.packages_path()
169+
set_package(packages_path, "_Syntax_Failure")
170+
set_package(packages_path, "_Syntax_Success")
171+
set_package(packages_path, "_Syntax_Error")
172+
set_package(packages_path, "_Syntax_Compat_Failure")
173+
set_package(packages_path, "_Syntax_Compat_Success")
174+
yield 500
175+
176+
def tearDown(self):
177+
packages_path = sublime.packages_path()
178+
cleanup_package(packages_path, "_Syntax_Failure")
179+
cleanup_package(packages_path, "_Syntax_Success")
180+
cleanup_package(packages_path, "_Syntax_Error")
181+
cleanup_package(packages_path, "_Syntax_Compat_Failure")
182+
cleanup_package(packages_path, "_Syntax_Compat_Success")
183+
184+
@prepare_package("_Syntax_Failure", syntax_test=True)
147185
def test_fail_syntax(self, txt):
148186
self.assertRegexContains(txt, r'^FAILED: 1 of 21 assertions in 1 file failed$')
149187

150-
@prepare_package("_Syntax_Success", syntax_test=True, delay=500)
188+
@prepare_package("_Syntax_Success", syntax_test=True)
151189
def test_success_syntax(self, txt):
152190
self.assertOk(txt)
153191

154-
@prepare_package("_Syntax_Error", syntax_test=True, delay=500)
192+
@prepare_package("_Syntax_Error", syntax_test=True)
155193
def test_error_syntax(self, txt):
156194
self.assertRegexContains(txt, r'^ERROR: No syntax_test')
157195

158-
@prepare_package("_Syntax_Compat_Failure", syntax_compatibility=True, delay=500)
196+
@prepare_package("_Syntax_Compat_Failure", syntax_compatibility=True)
159197
def test_fail_syntax_compatibility(self, txt):
160198
self.assertRegexContains(txt, r'^FAILED: 3 errors in 1 of 1 syntax$')
161199

162-
@prepare_package("_Syntax_Compat_Success", syntax_compatibility=True, delay=500)
200+
@prepare_package("_Syntax_Compat_Success", syntax_compatibility=True)
163201
def test_success_syntax_compatibility(self, txt):
164202
self.assertOk(txt)
165203

@@ -172,16 +210,16 @@ def has_colorschemeunit():
172210
return False
173211

174212

175-
class TestColorScheme(UnitTestingTestCase):
176-
@skipIf(not has_colorschemeunit(), "ColorSchemeUnit is not installed")
177-
@prepare_package("_ColorScheme_Failure", color_scheme_test=True)
178-
def test_fail_color_scheme(self, txt):
179-
self.assertRegexContains(txt, r'^There were 14 failures:$')
213+
# class TestColorScheme(UnitTestingTestCase):
214+
# @skipIf(not has_colorschemeunit(), "ColorSchemeUnit is not installed")
215+
# @prepare_package("_ColorScheme_Failure", color_scheme_test=True)
216+
# def test_fail_color_scheme(self, txt):
217+
# self.assertRegexContains(txt, r'^There were 14 failures:$')
180218

181-
@skipIf(not has_colorschemeunit(), "ColorSchemeUnit is not installed")
182-
@prepare_package("_ColorScheme_Success", color_scheme_test=True)
183-
def test_success_color_scheme(self, txt):
184-
self.assertOk(txt)
219+
# @skipIf(not has_colorschemeunit(), "ColorSchemeUnit is not installed")
220+
# @prepare_package("_ColorScheme_Success", color_scheme_test=True)
221+
# def test_success_color_scheme(self, txt):
222+
# self.assertOk(txt)
185223

186224

187225
def tidy_path(path):

0 commit comments

Comments
 (0)