10
10
11
11
12
12
class ViewTestCaseMixin :
13
+ view_settings = {
14
+ "detect_indentation" : False ,
15
+ "translate_tabs_to_spaces" : False ,
16
+ "word_wrap" : False ,
17
+ }
18
+
13
19
def setUp (self ):
14
- self .view = sublime .active_window ().new_file ()
20
+ self .window = sublime .active_window ()
21
+ self .view = self .window .new_file ()
15
22
16
23
# make sure we have a window to work with
17
24
settings = sublime .load_settings ("Preferences.sublime-settings" )
18
- settings .set ("close_windows_when_empty" , False )
25
+ self ._orig_close_empty_window = settings .get ("close_windows_when_empty" )
26
+ if self ._orig_close_empty_window :
27
+ settings .set ("close_windows_when_empty" , False )
19
28
29
+ # apply pre-defined settings
20
30
settings = self .view .settings ()
21
31
default_settings = getattr (self .__class__ , "view_settings" , {})
22
32
for key , value in default_settings .items ():
@@ -27,29 +37,64 @@ def tearDown(self):
27
37
self .view .set_scratch (True )
28
38
self .view .close ()
29
39
40
+ # restore original settings
41
+ settings = sublime .load_settings ("Preferences.sublime-settings" )
42
+ if self ._orig_close_empty_window :
43
+ settings .set ("close_windows_when_empty" , self ._orig_close_empty_window )
44
+ self ._orig_close_empty_window = False
45
+
30
46
def addCaretAt (self , row , col ):
31
- """Add caret to given point (row, col)."""
47
+ """
48
+ Add caret to given point (row, col).
49
+
50
+ :param row: The 0-based row number specifying target caret position.
51
+ :param col: The 0-based column number specifying target caret position.
52
+ """
32
53
self .view .sel ().add (self .textPoint (row , col ))
33
54
34
55
def setCaretTo (self , row , col ):
35
- """Move caret to given point (row, col)."""
56
+ """
57
+ Move caret to given position (row, col).
58
+
59
+ :param row: The 0-based row number specifying target caret position.
60
+ :param col: The 0-based column number specifying target caret position.
61
+ """
36
62
self .view .sel ().clear ()
37
63
self .view .sel ().add (self .textPoint (row , col ))
38
64
39
65
def textPoint (self , row , col ):
40
- """Return textpoint for given row,col coordinats."""
66
+ """
67
+ Return textpoint for given row,col coordinats.
68
+
69
+ This method is an alias for ``self.view.text_point(row, col)``.
70
+
71
+ :param row: The 0-based row number.
72
+ :param col: The 0-based column number.
73
+
74
+ :returns: Integer value of text point, belowing to row,col combination.
75
+ """
41
76
return self .view .text_point (row , col )
42
77
43
78
def getRowText (self , row ):
44
- """Return given row's content text."""
79
+ """
80
+ Return given row's content text.
81
+
82
+ :param row: The row to return contents for.
83
+
84
+ :return: unicode string with content of given row.
85
+ """
45
86
return self .view .substr (self .view .line (self .view .text_point (row , 0 )))
46
87
47
88
def getText (self ):
48
89
"""Return view's content text."""
49
90
return self .view .substr (sublime .Region (0 , self .view .size ()))
50
91
51
92
def setText (self , text ):
52
- """Set whole view's content, replacing anything existing."""
93
+ """
94
+ Set whole view's content, replacing anything existing.
95
+
96
+ :param text: The text to replace the view's content with.
97
+ """
53
98
self .clearText ()
54
99
self .insertText (text )
55
100
@@ -59,17 +104,114 @@ def clearText(self):
59
104
self .view .run_command ("right_delete" )
60
105
61
106
def insertText (self , text ):
62
- """Insert text at current position."""
107
+ """
108
+ Insert text at current position.
109
+
110
+ :param text: The text to insert at current caret position.
111
+ """
63
112
self .view .run_command ("insert" , {"characters" : text })
64
113
114
+ def assertCaretAt (self , row , col ):
115
+ """
116
+ Assert caret to be located at a certain position.
117
+
118
+ :param row: The 0-based row number.
119
+ :param col: The 0-based column number.
120
+ """
121
+ self .assertEqual (self .view .sel ()[0 ].begin (), self .textPoint (row , col ))
122
+
123
+ def assertCaretsAt (self , carets ):
124
+ """
125
+ Assert carets to be located at a certain positions.
126
+
127
+ :param carets:
128
+ The tuple of (row, col) tuples of 0-based row, col numbers.
129
+ """
130
+ expected = tuple (self .textPoint (row , col ) for row , col in carets )
131
+ found = tuple (sel .begin () for sel in self .view .sel ())
132
+ self .assertEqual (found , expected )
133
+
134
+ def assertRowContentsEqual (self , row , text ):
135
+ """
136
+ Expect given row's content to match ``text``.
137
+
138
+ :param row: The 0-based row number.
139
+ :param col: The 0-based column number.
140
+ :param text: The expected content of given row.
141
+ """
142
+ self .assertEqual (self .getRowText (row ), text )
143
+
65
144
def assertViewContentsEqual (self , text ):
66
- self .assertEqual (self .getText (), text )
145
+ """
146
+ Expect view's content to match ``text``.
67
147
148
+ :param text: The expected content of the view.
149
+ """
150
+ self .assertEqual (self .getText (), text )
68
151
69
152
70
153
class ViewTestCase (ViewTestCaseMixin , TestCase ):
154
+ """
155
+ This class describes a view test case.
156
+
157
+ This class provides infrastructure to run unit tests on dedicated ``sublime.View()`` objects.
158
+
159
+ A new ``view`` object is created within the active ``window`` for each ``ViewTestCase``.
160
+
161
+ The view is accessible via ``self.view`` from within each test method.
162
+
163
+ The owning window can be accessed via ``self.window``.
164
+
165
+ ```py
166
+ class MyTestCase(ViewTestCase):
167
+ # settings to apply to the created view
168
+ view_settings = {
169
+ "detect_indentation": False,
170
+ "tab_size": 4,
171
+ "translate_tabs_to_spaces": False,
172
+ "word_wrap": False,
173
+ }
174
+
175
+ def test_editing(self):
176
+ self.setText("foo")
177
+ self.setCaretTo(0, 0)
178
+ self.assertRowContentsEqual(0, "foofoo")
179
+ ```
180
+ """
181
+
71
182
pass
72
183
73
184
74
185
class DeferrableViewTestCase (ViewTestCaseMixin , DeferrableTestCase ):
186
+ """
187
+ This class describes a deferrable view test case.
188
+
189
+ This class provides infrastructure to run unit tests on dedicated ``sublime.View()`` objects,
190
+ which includes catching asynchronous events.
191
+
192
+ A new ``view`` object is created within the active ``window`` for each ``ViewTestCase``.
193
+
194
+ The view is accessible via ``self.view`` from within each test method.
195
+
196
+ The owning window can be accessed via ``self.window``.
197
+
198
+ ```py
199
+ class MyTestCase(DeferrableViewTestCase):
200
+ # settings to apply to the created view
201
+ view_settings = {
202
+ "detect_indentation": False,
203
+ "tab_size": 4,
204
+ "translate_tabs_to_spaces": False,
205
+ "word_wrap": False,
206
+ }
207
+
208
+ def test_editing(self):
209
+ self.setText("foo")
210
+ self.setCaretTo(0, 0)
211
+ self.defer(100, self.insertText, "foo")
212
+ yield 200
213
+ self.assertRowContentsEqual(0, "foofoo")
214
+ ```
215
+ """
216
+
75
217
pass
0 commit comments