File: test_wrap.tcl

package info (click to toggle)
tkrat 1%3A2.2cvs20100105-true-dfsg-6.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,340 kB
  • ctags: 9,259
  • sloc: ansic: 96,057; tcl: 25,667; makefile: 1,638; sh: 282
file content (594 lines) | stat: -rw-r--r-- 12,150 bytes parent folder | download | duplicates (4)
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
puts "$HEAD Test wrapping"

namespace eval test_wrap {
}

proc test_wrap::test_cited_wrap {} {
    lappend texts [list {
>  1.1) If you use a "reply" function, its not possible, you must choose one
>       and only one of the two messages.
} {
>  1.1) If you use a "reply" function, its not possible, you must choose
>       one and only one of the two messages.
}]

    lappend texts [list {
>  - If you use a "reply" function, its not possible, you must choose one
>    and only one of the two messages.
>    and only one of the two messages.
} {
>  - If you use a "reply" function, its not possible, you must choose
>    one and only one of the two messages.
>    and only one of the two messages.
}]

    lappend texts [list {
> Martin,
>     I discussed the issues surrounding separate versus combined daemons
> for firewatch and monitor with Nathan.  We came up with a slightly
> different proposal that I'd like to see what you think about it.
} {
> Martin,
>     I discussed the issues surrounding separate versus combined
> daemons for firewatch and monitor with Nathan.  We came up with a
> slightly different proposal that I'd like to see what you think about
> it.
}]

    lappend texts [list {
> Ok.  Thanks for updating that.  I agree with everything you have.  So, going
> with your list we are down to fixing:
> 696
> 789
} {
> Ok.  Thanks for updating that.  I agree with everything you have.  So,
> going with your list we are down to fixing:
> 696
> 789
}]

    lappend texts [list {
> Hur r det tnkt att man skall kunna stoppa individuella services? Idag
> stoppar man ju portforwards i portforwardtabben. Skall man infra ett
> 'stop service' val i menyn man fr upp om man hgerklickar p ikonen fr
> servicen (i Client). I Connect skulle man kunna byta texten 'run' p
> kanppen intill service ikonen till 'stop' nr man vl startat en service.
} {
> Hur r det tnkt att man skall kunna stoppa individuella services?
> Idag stoppar man ju portforwards i portforwardtabben. Skall man infra
> ett 'stop service' val i menyn man fr upp om man hgerklickar p
> ikonen fr servicen (i Client). I Connect skulle man kunna byta texten
> 'run' p kanppen intill service ikonen till 'stop' nr man vl startat
> en service.
}]

    lappend texts [list {
>> > 1. r allt nedan som str under 3.3 med i 3.3 och det under 4.0 med i 4.0
>> >    (och inte redan implementerat i 3.3 eller tvrt om)?
} {
>> > 1. r allt nedan som str under 3.3 med i 3.3 och det under 4.0 med
>> >    i 4.0 (och inte redan implementerat i 3.3 eller tvrt om)?
}]

lappend texts [list {
> - when using the Color-Config "Steel Blue" the Balloon Help is unreadable
>   because of white text on yellow background. (I hunted in the src for
>   the balloon-help color-config, because I wanted to send you a diff, but
>   sorry, seems that I am to unfamiliar with Tk)
} {
> - when using the Color-Config "Steel Blue" the Balloon Help is
>   unreadable because of white text on yellow background. (I hunted in
>   the src for the balloon-help color-config, because I wanted to send
>   you a diff, but sorry, seems that I am to unfamiliar with Tk)
}]

lappend texts [list {
> 1.)	Only doing the changes on Mercury
> 
> 		results: Venus was inaccessible because of the differences in the appgate.conf
} {
> 1.)	Only doing the changes on Mercury
> 
> 		results: Venus was inaccessible because of the
> 		differences in the appgate.conf
}]

lappend texts [list {
> 2.)	Doing changes on Mercury and Venus and restarting the daemons on both.
} {
> 2.)	Doing changes on Mercury and Venus and restarting the daemons on
>    	both.
}]

lappend texts [list {
> 2.)	Doing changes on Mercury and Venus and restarting the daemons on both.
> 	Also a hypotetical second line which should force yet another wrap.
} {
> 2.)	Doing changes on Mercury and Venus and restarting the daemons on
>    	both. Also a hypotetical second line which should force yet
>    	another wrap.
}]

lappend texts [list {
> 2.)	Doing changes on Mercury and Venus and restarting the daemons on both.
> 		Result:		Everything works until we add or delete something that requires a Commit. At that time we get the error back in the Appgate.conf.
} {
> 2.)	Doing changes on Mercury and Venus and restarting the daemons on
>    	both.
> 		Result:		Everything works until we add or delete
> 		something that requires a Commit. At that time we get
> 		the error back in the Appgate.conf.
}]

lappend texts [list {
> should not wrap} {
> should not wrap}]

lappend texts [list {
> detta r det frsta meddelande jag skickar med nokian...en s lnge knns det  bra...det enda som inte verkar fungera r att instllningarna inte sparas...} {
> detta r det frsta meddelande jag skickar med nokian...en s lnge
> knns det  bra...det enda som inte verkar fungera r att
> instllningarna inte sparas...
}]

    set index 0
    foreach te $texts {
	StartTest "Wrapping cited text [incr index]"
	if {[lindex $te 1] != [RatWrapCited [lindex $te 0]]} {
            puts "---- Original ----"
            puts [lindex $te 0]
	    puts "---- Expected ----"
	    puts [lindex $te 1]
	    puts "---- Actual ----"
	    puts [RatWrapCited [lindex $te 0]]
	    ReportError "Wrapping failed"
	}
    }
}

proc test_wrap::test_edit_wrap {} {
    global option

    # The test cases
# Wrap is set to --|
# 1
lappend texts [list {
Hej hopp.
} {
Hej hopp.
}]

# 2
lappend texts [list {
This text should wrap
} {
This text should
wrap
}]

# 3
lappend texts [list {
  This text should wrap
} {
  This text should
  wrap
}]

# 4
lappend texts [list {
This text should wrap over multimple lines
} {
This text should
wrap over multimple
lines
}]

# 5
lappend texts [list {
This text should also wrap over
multimple lines
} {
This text should
also wrap over
multimple lines
}]

# 6
lappend texts [list {<BR>
* This text is part of<BR>
* a list<BR>
* where each line should wrap<BR>
} {
* This text is part
  of
* a list
* where each line
  should wrap
}]

# 7
lappend texts [list {<BR>
1 This text is part of<BR>
2 a list<BR>
3 where each line should wrap<BR>
} {
1 This text is part
  of
2 a list
3 where each line
  should wrap
}]

# 8
lappend texts [list {<BR>
1. This text is part of<BR>
2. a list<BR>
3. where each line should wrap<BR>
} {
1. This text is part
   of
2. a list
3. where each line
   should wrap
}]

# 9
lappend texts [list {<BR>
1) This text is part of<BR>
2) a list<BR>
3) where each line should wrap<BR>
} {
1) This text is part
   of
2) a list
3) where each line
   should wrap
}]

# 10
lappend texts [list {<BR>
- This text is part of<BR>
- a list<BR>
- where each line should wrap<BR>
} {
- This text is part
  of
- a list
- where each line
  should wrap
}]

# 11
lappend texts [list {<BR>
*grin* This is a simple test
} {
*grin* This is a
simple test
}]

# 12
lappend texts [list {<BR>
1.This text is part of<BR>
2.a list<BR>
3.where each line should wrap<BR>
} {
1.This text is part
of
2.a list
3.where each line
should wrap
}]

# 13
lappend texts [list {
This_is_a_wery_long_word
} {
This_is_a_wery_long_word
}]

# 14
lappend texts [list {
This_is_a_wery_long_word two
} {
This_is_a_wery_long_word
two
}]

# 15
lappend texts [list {
one This_is_a_wery_long_word two
} {
one
This_is_a_wery_long_word
two
}]

    text .t
    rat_edit::create .t

    set old_wrap_length $option(wrap_length)
    set option(wrap_length) 20

    set index 0

    foreach te $texts {
	StartTest "Wrapping edit [incr index]"
        # Insert the text
        .t delete 1.0 end
        .t insert 1.0 [lindex $te 0]

        # Convert any <BR>\n to newlines with noWrap
        set pos 1.0
        while {"" != [set pos [.t search "<BR>\n" $pos]]} {
            .t replace $pos $pos+5c "\n" noWrap
        }

        # Wrap between all instances of noWrap
        set pos "2.0 lineend"
        rat_edit::wrap .t $pos
        while {"" != [set range [.t tag nextrange noWrap $pos]]} {
            set pos [lindex $range 1]
            rat_edit::wrap .t $pos
        }
        
        if {[.t get 1.0 end-1c] != [lindex $te 1]} {
            puts "---- Original ----"
            puts [lindex $te 0]
	    puts "---- Expected ----"
	    puts [lindex $te 1]
	    puts "---- Actual ----"
	    puts [.t get 1.0 end-1c]
	    ReportError "Wrapping failed"
        }
    }

    set option(wrap_length) $old_wrap_length
    destroy .t
}

proc test_wrap::test_edit_insert {} {
    global option

    # The test cases (_ is cursor location)
# Wrap is set to --|
# 1
lappend texts [list {
Hej hopp._
} {space} {
Hej hopp. _
}]

# 2
lappend texts [list {
There is no such thing as a free lunch_
} {space} {
There is no such
thing as a free
lunch _
}]

# 3
lappend texts [list {
These lines will_ foo
wrapped
} {space} {
These lines will _
foo wrapped
}]

# 4
lappend texts [list {
These lines will_ foo
wrapped
} {space space} {
These lines will  _
foo wrapped
}]

# 5
lappend texts [list {
These lines will_ foo
wrapped
} {space b e} {
These lines will be_
foo wrapped
}]

# 6
lappend texts [list {
These foo _
wrapped
} {BackSpace} {
These foo_ wrapped
}]

# 7
lappend texts [list {
These foo  _
wrapped
} {BackSpace} {
These foo _wrapped
}]

# 8
lappend texts [list {
These lines will_ foo
wrapped
} {BackSpace BackSpace BackSpace BackSpace BackSpace
    BackSpace BackSpace BackSpace BackSpace BackSpace BackSpace} {
These_ foo wrapped
}]

# 9
lappend texts [list {
These foo _<BR>
* wrapped
} {BackSpace} {
These foo_
* wrapped
}]

# 10
lappend texts [list {
These foo bar fuu _<BR>
* wrapped
} {h e j} {
These foo bar fuu
hej_
* wrapped
}]

# 11
lappend texts [list {
These foo<BR>
* wrapped foo bar _
} {h e j} {
These foo
* wrapped foo bar
  hej_
}]

# 12
lappend texts [list {
These foo _
"wrapped"
} {BackSpace} {
These foo_ "wrapped"
}]

# 13
lappend texts [list {
 These foo _<BR>
 * wrapped
} {BackSpace} {
 These foo_
 * wrapped
}]

# 14
lappend texts [list {
 These foo bar fuu _<BR>
 * wrapped
} {h e j} {
 These foo bar fuu
 hej_
 * wrapped
}]

# 15
lappend texts [list {
 These foo bar fuu<BR>
 * wrapped foo bar _<BR>
 * wrap2
} {h e j} {
 These foo bar fuu
 * wrapped foo bar
   hej_
 * wrap2
}]

# 16
lappend texts [list {
 These foo<BR>
 * wrapped foo bar _
} {h e j} {
 These foo
 * wrapped foo bar
   hej_
}]

# 17
lappend texts [list {
 These foo _
 "wrapped"
} {BackSpace} {
 These foo_ "wrapped"
}]

# 18
lappend texts [list {
one two three_ four
five six seven
} {space} {
one two three _ four
five six seven
}]

# 19
lappend texts [list {
one two three_ four
five six seven
} {space space space} {
one two three   _
four five six seven
}]

# 20, this one breaks but I will ignore this
#lappend texts [list {
#one two three_ four
#five six seven
#} {space space space space space space space space} {
#one two three       
#_four five six seven
#}]
# Wrap is set to --|

    text .t
    rat_edit::create .t
    pack .t
    wm deiconify .

    set old_wrap_length $option(wrap_length)
    set option(wrap_length) 20

    set index 0

    foreach te $texts {
	StartTest "Wrapping edit insert [incr index]"

        # Insert the text
        .t delete 1.0 end
        .t insert 1.0 [lindex $te 0]

        # Convert any <BR>\n to newlines with noWrap
        set pos 1.0
        while {"" != [set pos [.t search "<BR>\n" $pos]]} {
            .t replace $pos $pos+5c "\n" noWrap
        }

        # Set cursor location to '_'
        .t mark set insert [.t search "_" 1.0]
        .t delete insert

        # Insert new text
        focus -force .t
        update
        foreach k [lindex $te 1] {
            event generate .t <$k>
        }

        # Get result
        .t insert insert "_"
        set real [.t get 1.0 end-1c]

        if {[.t get 1.0 end-1c] != [lindex $te 2]} {
            puts "---- Original ----"
            puts [lindex $te 0]
	    puts "---- Expected ----"
	    puts [lindex $te 2]
	    puts "---- Actual ----"
	    puts [.t get 1.0 end-1c]
	    ReportError "Action failed"
        }
    }

    set option(wrap_length) $old_wrap_length
    destroy .t
    wm withdraw .
}

package require rat_edit 1.0

test_wrap::test_cited_wrap
test_wrap::test_edit_wrap
test_wrap::test_edit_insert