File: testtext.py

package info (click to toggle)
pida 0.3.1-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,408 kB
  • ctags: 4,300
  • sloc: python: 19,400; sh: 124; makefile: 21; xml: 11
file content (458 lines) | stat: -rw-r--r-- 17,932 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
__license__ = "MIT <http://www.opensource.org/licenses/mit-license.php>"
__author__ = "Tiago Cogumbreiro <cogumbreiro@users.sf.net>"
__copyright__ = "Copyright 2005, Tiago Cogumbreiro"

import unittest
from text import *

class TestLineIterator(unittest.TestCase):
    def test_empty(self):
        buff = gtk.TextBuffer()
        buff.set_text("")
        bounds = buff.get_bounds()
        iters = list(line_iterator(buff, *bounds))
        self.assertEquals(1, len(iters))
        assert iters[0].equal(bounds[0])
        assert iters[0].equal(bounds[1])
    
    def test_one_line(self):
        buff = gtk.TextBuffer()
        buff.set_text("\n")
        bounds = buff.get_bounds()
        iters = list(line_iterator(buff, *bounds))
        self.assertEquals(2, len(iters))
        assert iters[0].equal(bounds[0])
        assert iters[1].equal(bounds[1])

    def test_many_lines(self):
        buff = gtk.TextBuffer()
        buff.set_text("a\nb\nbar")
        bounds = buff.get_bounds()
        iters = list(line_iterator(buff, *bounds))
        self.assertEquals(3, len(iters))
    
    def test_middle_line(self):
        buff = gtk.TextBuffer()
        buff.set_text("123\n\nbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(4)
        self.assertEquals("23\n\n", buff.get_text(start_iter, end_iter))
        iters = list(line_iterator(buff, start_iter, end_iter))

        self.assertEquals(3, len(iters))




class TestSelectedLineIterator(unittest.TestCase):
    def test_empty(self):
        buff = gtk.TextBuffer()
        buff.set_text("")
        iters = list(selected_line_iterator(buff))
        self.assertEquals(0, len(iters))

    def test_empty2(self):
        buff = gtk.TextBuffer()
        buff.set_text("foo\nbar\ngaz")
        iters = list(selected_line_iterator(buff))
        self.assertEquals(0, len(iters))

    def test_middle_line(self):
        # In this case we only select the '2'
        # The only iterator should be the begining of the first line
        buff = gtk.TextBuffer()
        buff.set_text("123\nbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(1)
        self.assertEquals("2", buff.get_text(start_iter, end_iter))
        buff.select_range(start_iter, end_iter)
        self.assertEquals("2", buff.get_text(*buff.get_selection_bounds()))
        iters = list(selected_line_iterator(buff))
        self.assertEquals(1, len(iters))
        
        assert iters[0].equal(buff.get_start_iter())

    def test_middle_line2(self):
        # In this case we only select the '23\nb'
        # The first iterator should be the begining of the first line
        # The second should be the begining of the second line
        buff = gtk.TextBuffer()
        buff.set_text("123\nbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(4)
        self.assertEquals("23\nb", buff.get_text(start_iter, end_iter))
        buff.select_range(start_iter, end_iter)
        self.assertEquals("23\nb", buff.get_text(*buff.get_selection_bounds()))
        iters = list(selected_line_iterator(buff))
        self.assertEquals(2, len(iters))
        
        assert iters[0].equal(buff.get_start_iter())
        assert iters[1].starts_line()

    def test_skip_line(self):
        # In this case we only select the '23' and an empty line
        # The first iterator should be the begining of the first line
        # It must be the only iterator there
        buff = gtk.TextBuffer()
        buff.set_text("123\n\nbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(4)
        self.assertEquals("23\n\n", buff.get_text(start_iter, end_iter))
        buff.select_range(start_iter, end_iter)
        self.assertEquals("23\n\n", buff.get_text(*buff.get_selection_bounds()))

        iters = list(selected_line_iterator(buff))

        self.assertEquals(1, len(iters))
        assert iters[0].equal(buff.get_start_iter())

    def test_skip_first_line(self):
        # In this case we only select the '23' and an empty line
        # The first iterator should be the begining of the first line
        # It must be the only iterator there
        buff = gtk.TextBuffer()
        buff.set_text("\n\nbar\ngaz")
        start_iter = buff.get_start_iter()
        end_iter = start_iter.copy()
        end_iter.forward_chars(3)
        self.assertEquals("\n\nb", buff.get_text(start_iter, end_iter))
        buff.select_range(start_iter, end_iter)
        self.assertEquals("\n\nb", buff.get_text(*buff.get_selection_bounds()))
        iters = list(selected_line_iterator(buff))
        
        self.assertEquals(1, len(iters))

    def test_skip_middle_line(self):
        # In this case we select the '23' an empty line and a 'b'
        # The first iterator should be the begining of the first line
        # The second iterator should be the begining of the third line
        buff = gtk.TextBuffer()
        buff.set_text("123\n\nbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(5)
        self.assertEquals("23\n\nb", buff.get_text(start_iter, end_iter))
        buff.select_range(start_iter, end_iter)
        self.assertEquals("23\n\nb", buff.get_text(*buff.get_selection_bounds()))
        iters = list(selected_line_iterator(buff))
        self.assertEquals(2, len(iters))
        
        assert iters[0].equal(buff.get_start_iter())
        assert iters[1].starts_line()


    def test_full(self):
        # In this case we select the '23' an empty line and a 'b'
        # The first iterator should be the begining of the first line
        # The second iterator should be the begining of the third line
        buff = gtk.TextBuffer()
        buff.set_text("123\n\nbar\ngaz")
        start_iter, end_iter = buff.get_bounds()
        self.assertEquals("123\n\nbar\ngaz", buff.get_text(start_iter, end_iter))
        buff.select_range(start_iter, end_iter)
        self.assertEquals("123\n\nbar\ngaz", buff.get_text(*buff.get_selection_bounds()))
        iters = list(selected_line_iterator(buff))
        self.assertEquals(3, len(iters))
        
        assert iters[0].equal(buff.get_start_iter())
        assert iters[1].starts_line()
        assert iters[2].starts_line()
    

class TestIndentSelected(unittest.TestCase):
    def checkSelected(self, buff, text):
        self.assertEquals(text, buff.get_text(*buff.get_bounds()))
    
    def test_empty(self):
        buff = gtk.TextBuffer()
        buff.set_text("")
        indent_selected(buff, "\t")
        self.checkSelected(buff, "")

    def test_empty2(self):
        buff = gtk.TextBuffer()
        buff.set_text("ffoo\nbar\n")
        indent_selected(buff, "\t")
        self.checkSelected(buff, "ffoo\nbar\n")

    def test_select_middle(self):
        # In this case we only select the '2'
        # The only iterator should be the begining of the first line
        buff = gtk.TextBuffer()
        buff.set_text("123\nbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(1)
        buff.select_range(start_iter, end_iter)
        
        indent_selected(buff, "\t")
        self.checkSelected(buff, "\t123\nbar\ngaz")

    def test_middle_line2(self):
        # In this case we only select the '23\nb'
        # The first iterator should be the begining of the first line
        # The second should be the begining of the second line
        buff = gtk.TextBuffer()
        buff.set_text("123\nbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(4)
        buff.select_range(start_iter, end_iter)

        indent_selected(buff, "\t")
        self.checkSelected(buff, "\t123\n\tbar\ngaz")

    def test_skip_line(self):
        # In this case we only select the '23' and an empty line
        # The first iterator should be the begining of the first line
        # It must be the only iterator there
        buff = gtk.TextBuffer()
        buff.set_text("123\n\nbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(4)
        buff.select_range(start_iter, end_iter)
        self.assertEquals("23\n\n", buff.get_text(*buff.get_selection_bounds()))
        indent_selected(buff, "\t")
        self.checkSelected(buff, "\t123\n\nbar\ngaz")
        
    def test_skip_first_line(self):
        # In this case we only select the '23' and an empty line
        # The first iterator should be the begining of the first line
        # It must be the only iterator there
        buff = gtk.TextBuffer()
        buff.set_text("\n\nbar\ngaz")
        start_iter = buff.get_start_iter()
        end_iter = start_iter.copy()
        end_iter.forward_chars(3)
        buff.select_range(start_iter, end_iter)
        self.assertEquals("\n\nb", buff.get_text(*buff.get_selection_bounds()))
        indent_selected(buff, "\t")
        self.checkSelected(buff, "\n\n\tbar\ngaz")

    def test_skip_middle_line(self):
        # In this case we select the '23' an empty line and a 'b'
        # The first iterator should be the begining of the first line
        # The second iterator should be the begining of the third line
        buff = gtk.TextBuffer()
        buff.set_text("123\n\nbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(5)
        buff.select_range(start_iter, end_iter)
        self.assertEquals("23\n\nb", buff.get_text(*buff.get_selection_bounds()))

        indent_selected(buff, "\t")
        self.checkSelected(buff, "\t123\n\n\tbar\ngaz")

    def test_skip_middle_line2(self):
        buff = gtk.TextBuffer()
        buff.set_text("123\nbar\n\ngaz")
        start_iter = buff.get_start_iter()
        end_iter = start_iter.copy()
        end_iter.forward_chars(9)
        # Selected the first two lines
        buff.select_range(start_iter, end_iter)
        self.assertEquals("123\nbar\n\n", buff.get_text(*buff.get_selection_bounds()))

        indent_selected(buff, "\t")
        self.checkSelected(buff, "\t123\n\tbar\n\ngaz")


    def test_full(self):
        # In this case we select the '23' an empty line and a 'b'
        # The first iterator should be the begining of the first line
        # The second iterator should be the begining of the third line
        buff = gtk.TextBuffer()
        buff.set_text("123\n\nbar\ngaz")
        start_iter, end_iter = buff.get_bounds()
        buff.select_range(start_iter, end_iter)
        self.assertEquals("123\n\nbar\ngaz", buff.get_text(*buff.get_selection_bounds()))
        
        indent_selected(buff, "\t")
        self.checkSelected(buff, "\t123\n\n\tbar\n\tgaz")
        

class TestUnindentSelected(unittest.TestCase):
    def checkSelected(self, buff, text):
        self.assertEquals(text, buff.get_text(*buff.get_bounds()))
    
    def test_empty(self):
        buff = gtk.TextBuffer()
        buff.set_text("")
        unindent_selected(buff, "\t")
        self.checkSelected(buff, "")

    def test_empty2(self):
        # Because the carret is on the start of the file the first
        # tab must be removed.
        buff = gtk.TextBuffer()
        buff.set_text("\tffoo\nbar\n")
        # Move the carret to the begining of the text
        start_iter = buff.get_start_iter()
        buff.move_mark(buff.get_insert(), start_iter)
        unindent_selected(buff, "\t")
        self.checkSelected(buff, "ffoo\nbar\n")

    def test_select_middle(self):
        # In this case we only select the '2'
        # The only iterator should be the begining of the first line
        buff = gtk.TextBuffer()
        buff.set_text("\t123\n\tbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(1)
        buff.select_range(start_iter, end_iter)
        
        unindent_selected(buff, "\t")
        self.checkSelected(buff, "123\n\tbar\ngaz")

    def test_middle_line2(self):
        # In this case we only select the '23\nb'
        # The first iterator should be the begining of the first line
        # The second should be the begining of the second line
        buff = gtk.TextBuffer()
        buff.set_text("\t123\n\tbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(6)
        # '23\n\tb'
        buff.select_range(start_iter, end_iter)

        unindent_selected(buff, "\t")
        self.checkSelected(buff, "123\nbar\ngaz")

    def test_middle_line3(self):
        # In this case we only select the '23\nb'
        # The first iterator should be the begining of the first line
        # The second should be the begining of the second line
        buff = gtk.TextBuffer()
        buff.set_text("123\n\tbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(5)
        # '23\n\tb'
        buff.select_range(start_iter, end_iter)

        unindent_selected(buff, "\t")
        self.checkSelected(buff, "123\nbar\ngaz")

    def test_middle_line4(self):
        # In this case we only select the '23\nb'
        # The first iterator should be the begining of the first line
        # The second should be the begining of the second line
        buff = gtk.TextBuffer()
        buff.set_text("\t\t123\n\tbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(6)
        # '23\n\tb'
        buff.select_range(start_iter, end_iter)

        unindent_selected(buff, "\t\t")
        self.checkSelected(buff, "123\nbar\ngaz")

    def test_middle_line5(self):
        # In this case we only select the '23\nb'
        # The first iterator should be the begining of the first line
        # The second should be the begining of the second line
        buff = gtk.TextBuffer()
        buff.set_text("\t\t123\n\tbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(1)
        end_iter = start_iter.copy()
        end_iter.forward_chars(5)
        # '23\n\tb'
        buff.select_range(start_iter, end_iter)

        unindent_selected(buff, "\t\t")
        self.checkSelected(buff, "123\n\tbar\ngaz")

    def test_skip_line(self):
        # In this case we only select the '23' and an empty line
        # The first iterator should be the begining of the first line
        # It must be the only iterator there
        buff = gtk.TextBuffer()
        buff.set_text("\t123\n\n\tbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(2)
        end_iter = start_iter.copy()
        end_iter.forward_chars(4)
        buff.select_range(start_iter, end_iter)
        self.assertEquals("23\n\n", buff.get_text(*buff.get_selection_bounds()))
        
        unindent_selected(buff, "\t")
        self.checkSelected(buff, "123\n\n\tbar\ngaz")
        
    def test_skip_line2(self):
        # In this case we only select the '23' and an empty line
        # The first iterator should be the begining of the first line
        # It must be the only iterator there
        buff = gtk.TextBuffer()
        buff.set_text("\t123\n\n\tbar\ngaz")
        start_iter = buff.get_start_iter()
        start_iter.forward_chars(2)
        end_iter = start_iter.copy()
        end_iter.forward_chars(5)
        buff.select_range(start_iter, end_iter)
        self.assertEquals("23\n\n\t", buff.get_text(*buff.get_selection_bounds()))
        
        unindent_selected(buff, "\t")
        self.checkSelected(buff, "123\n\nbar\ngaz")

    def test_full(self):
        # In this case we select the '23' an empty line and a 'b'
        # The first iterator should be the begining of the first line
        # The second iterator should be the begining of the third line
        buff = gtk.TextBuffer()
        buff.set_text("\t123\n\n\tbar\n\tgaz")
        start_iter, end_iter = buff.get_bounds()
        buff.select_range(start_iter, end_iter)
        self.assertEquals("\t123\n\n\tbar\n\tgaz", buff.get_text(*buff.get_selection_bounds()))
        
        unindent_selected(buff, "\t")
        self.checkSelected(buff, "123\n\nbar\ngaz")
    
    def test_chomp(self):
        """This test verifies if unindent eats characters or not"""
        def checkUnindent(src, dst):
            buff = gtk.TextBuffer()
            buff.set_text(src)
            buff.select_range(*buff.get_bounds())
            unindent_selected(buff, "    ")
            self.assertEquals(dst, buff.get_text(*buff.get_bounds()))
        
        checkUnindent("foo", "foo")
        checkUnindent(" foo", "foo")
        checkUnindent("  foo", "foo")
        checkUnindent("   foo", "foo")
        checkUnindent("    foo", "foo")
        checkUnindent(" " * 5 + "foo", " " * 1 + "foo")
        checkUnindent(" " * 6 + "foo", " " * 2 + "foo")
        checkUnindent(" " * 7 + "foo", " " * 3 + "foo")
        checkUnindent(" " * 8 + "foo", " " * 4 + "foo")
        

# TODO: when the text is indented the start should move back to the start of the
# of the line
# and the end should finish on the end of the line

if __name__ == '__main__':
    unittest.main()