test-unit 1.2.3 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. data/History.txt +27 -0
  2. data/Manifest.txt +30 -8
  3. data/README.txt +9 -4
  4. data/Rakefile +16 -1
  5. data/bin/testrb +0 -0
  6. data/lib/test/unit/assertions.rb +148 -48
  7. data/lib/test/unit/attribute.rb +125 -0
  8. data/lib/test/unit/autorunner.rb +101 -71
  9. data/lib/test/unit/collector/descendant.rb +23 -0
  10. data/lib/test/unit/collector/dir.rb +1 -1
  11. data/lib/test/unit/collector/load.rb +135 -0
  12. data/lib/test/unit/color.rb +61 -0
  13. data/lib/test/unit/diff.rb +524 -0
  14. data/lib/test/unit/error.rb +70 -2
  15. data/lib/test/unit/exceptionhandler.rb +39 -0
  16. data/lib/test/unit/failure.rb +63 -4
  17. data/lib/test/unit/fixture.rb +185 -0
  18. data/lib/test/unit/notification.rb +125 -0
  19. data/lib/test/unit/omission.rb +143 -0
  20. data/lib/test/unit/pending.rb +146 -0
  21. data/lib/test/unit/priority.rb +146 -0
  22. data/lib/test/unit/runner/console.rb +46 -0
  23. data/lib/test/unit/runner/emacs.rb +8 -0
  24. data/lib/test/unit/testcase.rb +193 -76
  25. data/lib/test/unit/testresult.rb +37 -28
  26. data/lib/test/unit/testsuite.rb +35 -1
  27. data/lib/test/unit/ui/console/outputlevel.rb +14 -0
  28. data/lib/test/unit/ui/console/testrunner.rb +96 -28
  29. data/lib/test/unit/ui/emacs/testrunner.rb +49 -0
  30. data/lib/test/unit/ui/testrunner.rb +20 -0
  31. data/lib/test/unit/ui/testrunnermediator.rb +28 -19
  32. data/lib/test/unit/ui/testrunnerutilities.rb +2 -7
  33. data/lib/test/unit/util/backtracefilter.rb +2 -1
  34. data/lib/test/unit/version.rb +1 -1
  35. data/test/collector/test_descendant.rb +135 -0
  36. data/test/collector/test_load.rb +333 -0
  37. data/test/run-test.rb +13 -0
  38. data/test/test_assertions.rb +221 -56
  39. data/test/test_attribute.rb +86 -0
  40. data/test/test_color.rb +37 -0
  41. data/test/test_diff.rb +477 -0
  42. data/test/test_emacs_runner.rb +60 -0
  43. data/test/test_fixture.rb +275 -0
  44. data/test/test_notification.rb +33 -0
  45. data/test/test_omission.rb +81 -0
  46. data/test/test_pending.rb +70 -0
  47. data/test/test_priority.rb +89 -0
  48. data/test/test_testcase.rb +160 -5
  49. data/test/test_testresult.rb +61 -52
  50. data/test/testunit_test_util.rb +14 -0
  51. data/test/ui/test_testrunmediator.rb +20 -0
  52. metadata +53 -23
  53. data/lib/test/unit/ui/fox/testrunner.rb +0 -268
  54. data/lib/test/unit/ui/gtk/testrunner.rb +0 -416
  55. data/lib/test/unit/ui/gtk2/testrunner.rb +0 -465
  56. data/lib/test/unit/ui/tk/testrunner.rb +0 -260
  57. data/test/runit/test_assert.rb +0 -402
  58. data/test/runit/test_testcase.rb +0 -91
  59. data/test/runit/test_testresult.rb +0 -144
  60. data/test/runit/test_testsuite.rb +0 -49
@@ -0,0 +1,524 @@
1
+ # port of Python's difflib.
2
+
3
+ module Test
4
+ module Unit
5
+ module Diff
6
+ class SequenceMatcher
7
+ def initialize(from, to, &junk_predicate)
8
+ @from = from
9
+ @to = to
10
+ @junk_predicate = junk_predicate
11
+ update_to_indexes
12
+ end
13
+
14
+ def longest_match(from_start, from_end, to_start, to_end)
15
+ best_info = find_best_match_position(from_start, from_end,
16
+ to_start, to_end)
17
+ unless @junks.empty?
18
+ args = [from_start, from_end, to_start, to_end]
19
+ best_info = adjust_best_info_with_junk_predicate(false, best_info,
20
+ *args)
21
+ best_info = adjust_best_info_with_junk_predicate(true, best_info,
22
+ *args)
23
+ end
24
+
25
+ best_info
26
+ end
27
+
28
+ def blocks
29
+ @blocks ||= compute_blocks
30
+ end
31
+
32
+ def operations
33
+ @operations ||= compute_operations
34
+ end
35
+
36
+ def grouped_operations(context_size=nil)
37
+ context_size ||= 3
38
+ _operations = operations
39
+ _operations = [[:equal, 0, 0, 0, 0]] if _operations.empty?
40
+ expand_edge_equal_operations!(_operations, context_size)
41
+
42
+ group_window = context_size * 2
43
+ groups = []
44
+ group = []
45
+ _operations.each do |tag, from_start, from_end, to_start, to_end|
46
+ if tag == :equal and from_end - from_start > group_window
47
+ group << [tag,
48
+ from_start,
49
+ [from_end, from_start + context_size].min,
50
+ to_start,
51
+ [to_end, to_start + context_size].min]
52
+ groups << group
53
+ group = []
54
+ from_start = [from_start, from_end - context_size].max
55
+ to_start = [to_start, to_end - context_size].max
56
+ end
57
+ group << [tag, from_start, from_end, to_start, to_end]
58
+ end
59
+ groups << group unless group.empty?
60
+ groups
61
+ end
62
+
63
+ def ratio
64
+ @ratio ||= compute_ratio
65
+ end
66
+
67
+ private
68
+ def update_to_indexes
69
+ @to_indexes = {}
70
+ @junks = {}
71
+ if @to.is_a?(String)
72
+ each = " "[0].is_a?(Integer) ? :each_byte : :each_char
73
+ else
74
+ each = :each
75
+ end
76
+ i = 0
77
+ @to.send(each) do |item|
78
+ @to_indexes[item] ||= []
79
+ @to_indexes[item] << i
80
+ i += 1
81
+ end
82
+
83
+ return if @junk_predicate.nil?
84
+ @to_indexes = @to_indexes.reject do |key, value|
85
+ junk = @junk_predicate.call(key)
86
+ @junks[key] = true if junk
87
+ junk
88
+ end
89
+ end
90
+
91
+ def find_best_match_position(from_start, from_end, to_start, to_end)
92
+ best_from, best_to, best_size = from_start, to_start, 0
93
+ sizes = {}
94
+ from_start.upto(from_end) do |from_index|
95
+ _sizes = {}
96
+ (@to_indexes[@from[from_index]] || []).each do |to_index|
97
+ next if to_index < to_start
98
+ break if to_index > to_end
99
+ size = _sizes[to_index] = (sizes[to_index - 1] || 0) + 1
100
+ if size > best_size
101
+ best_from = from_index - size + 1
102
+ best_to = to_index - size + 1
103
+ best_size = size
104
+ end
105
+ end
106
+ sizes = _sizes
107
+ end
108
+ [best_from, best_to, best_size]
109
+ end
110
+
111
+ def adjust_best_info_with_junk_predicate(should_junk, best_info,
112
+ from_start, from_end,
113
+ to_start, to_end)
114
+ best_from, best_to, best_size = best_info
115
+ while best_from > from_start and best_to > to_start and
116
+ (should_junk ?
117
+ @junks.has_key?(@to[best_to - 1]) :
118
+ !@junks.has_key?(@to[best_to - 1])) and
119
+ @from[best_from - 1] == @to[best_to - 1]
120
+ best_from -= 1
121
+ best_to -= 1
122
+ best_size += 1
123
+ end
124
+
125
+ while best_from + best_size < from_end and
126
+ best_to + best_size < to_end and
127
+ (should_junk ?
128
+ @junks.has_key?(@to[best_to + best_size]) :
129
+ !@junks.has_key?(@to[best_to + best_size])) and
130
+ @from[best_from + best_size] == @to[best_to + best_size]
131
+ best_size += 1
132
+ end
133
+
134
+ [best_from, best_to, best_size]
135
+ end
136
+
137
+ def matches
138
+ @matches ||= compute_matches
139
+ end
140
+
141
+ def compute_matches
142
+ matches = []
143
+ queue = [[0, @from.size, 0, @to.size]]
144
+ until queue.empty?
145
+ from_start, from_end, to_start, to_end = queue.pop
146
+ match = longest_match(from_start, from_end - 1, to_start, to_end - 1)
147
+ match_from_index, match_to_index, size = match
148
+ unless size.zero?
149
+ if from_start < match_from_index and
150
+ to_start < match_to_index
151
+ queue.push([from_start, match_from_index,
152
+ to_start, match_to_index])
153
+ end
154
+ matches << match
155
+ if match_from_index + size < from_end and
156
+ match_to_index + size < to_end
157
+ queue.push([match_from_index + size, from_end,
158
+ match_to_index + size, to_end])
159
+ end
160
+ end
161
+ end
162
+ matches.sort_by do |(from_index, to_index, match_size)|
163
+ from_index
164
+ end
165
+ end
166
+
167
+ def compute_blocks
168
+ blocks = []
169
+ current_from_index = current_to_index = current_size = 0
170
+ matches.each do |from_index, to_index, size|
171
+ if current_from_index + current_size == from_index and
172
+ current_to_index + current_size == to_index
173
+ current_size += size
174
+ else
175
+ unless current_size.zero?
176
+ blocks << [current_from_index, current_to_index, current_size]
177
+ end
178
+ current_from_index = from_index
179
+ current_to_index = to_index
180
+ current_size = size
181
+ end
182
+ end
183
+ unless current_size.zero?
184
+ blocks << [current_from_index, current_to_index, current_size]
185
+ end
186
+
187
+ blocks << [@from.size, @to.size, 0]
188
+ blocks
189
+ end
190
+
191
+ def compute_operations
192
+ from_index = to_index = 0
193
+ operations = []
194
+ blocks.each do |match_from_index, match_to_index, size|
195
+ tag = determine_tag(from_index, to_index,
196
+ match_from_index, match_to_index)
197
+ if tag != :equal
198
+ operations << [tag,
199
+ from_index, match_from_index,
200
+ to_index, match_to_index]
201
+ end
202
+
203
+ from_index, to_index = match_from_index + size, match_to_index + size
204
+ if size > 0
205
+ operations << [:equal,
206
+ match_from_index, from_index,
207
+ match_to_index, to_index]
208
+ end
209
+ end
210
+ operations
211
+ end
212
+
213
+ def compute_ratio
214
+ matches = blocks.inject(0) {|result, block| result + block[-1]}
215
+ length = @from.length + @to.length
216
+ if length.zero?
217
+ 1.0
218
+ else
219
+ 2.0 * matches / length
220
+ end
221
+ end
222
+
223
+ def determine_tag(from_index, to_index,
224
+ match_from_index, match_to_index)
225
+ if from_index < match_from_index and to_index < match_to_index
226
+ :replace
227
+ elsif from_index < match_from_index
228
+ :delete
229
+ elsif to_index < match_to_index
230
+ :insert
231
+ else
232
+ :equal
233
+ end
234
+ end
235
+
236
+ def expand_edge_equal_operations!(_operations, context_size)
237
+ tag, from_start, from_end, to_start, to_end = _operations[0]
238
+ if tag == :equal
239
+ _operations[0] = [tag,
240
+ [from_start, from_end - context_size].max,
241
+ from_end,
242
+ [to_start, to_end - context_size].max,
243
+ to_end]
244
+ end
245
+
246
+ tag, from_start, from_end, to_start, to_end = _operations[-1]
247
+ if tag == :equal
248
+ _operations[-1] = [tag,
249
+ from_start,
250
+ [from_end, from_start + context_size].min,
251
+ to_start,
252
+ [to_end, to_start + context_size].min]
253
+ end
254
+ end
255
+ end
256
+
257
+ class Differ
258
+ def initialize(from, to)
259
+ @from = from
260
+ @to = to
261
+ end
262
+
263
+ private
264
+ def tag(mark, contents)
265
+ contents.collect {|content| "#{mark}#{content}"}
266
+ end
267
+ end
268
+
269
+ class ReadableDiffer < Differ
270
+ def diff(options={})
271
+ result = []
272
+ matcher = SequenceMatcher.new(@from, @to)
273
+ matcher.operations.each do |args|
274
+ tag, from_start, from_end, to_start, to_end = args
275
+ case tag
276
+ when :replace
277
+ result.concat(diff_lines(from_start, from_end, to_start, to_end))
278
+ when :delete
279
+ result.concat(tag_deleted(@from[from_start...from_end]))
280
+ when :insert
281
+ result.concat(tag_inserted(@to[to_start...to_end]))
282
+ when :equal
283
+ result.concat(tag_equal(@from[from_start...from_end]))
284
+ else
285
+ raise "unknown tag: #{tag}"
286
+ end
287
+ end
288
+ result
289
+ end
290
+
291
+ private
292
+ def tag_deleted(contents)
293
+ tag("- ", contents)
294
+ end
295
+
296
+ def tag_inserted(contents)
297
+ tag("+ ", contents)
298
+ end
299
+
300
+ def tag_equal(contents)
301
+ tag(" ", contents)
302
+ end
303
+
304
+ def tag_difference(contents)
305
+ tag("? ", contents)
306
+ end
307
+
308
+ def find_diff_line_info(from_start, from_end, to_start, to_end)
309
+ best_ratio = 0.74
310
+ from_equal_index = to_equal_index = nil
311
+ from_best_index = to_best_index = nil
312
+
313
+ to_start.upto(to_end - 1) do |to_index|
314
+ from_start.upto(from_end - 1) do |from_index|
315
+ if @from[from_index] == @to[to_index]
316
+ from_equal_index ||= from_index
317
+ to_equal_index ||= to_index
318
+ next
319
+ end
320
+
321
+ matcher = SequenceMatcher.new(@from[from_index], @to[to_index],
322
+ &method(:space_character?))
323
+ if matcher.ratio > best_ratio
324
+ best_ratio = matcher.ratio
325
+ from_best_index = from_index
326
+ to_best_index = to_index
327
+ end
328
+ end
329
+ end
330
+
331
+ [best_ratio,
332
+ from_equal_index, to_equal_index,
333
+ from_best_index, to_best_index]
334
+ end
335
+
336
+ def diff_lines(from_start, from_end, to_start, to_end)
337
+ cut_off = 0.75
338
+
339
+ info = find_diff_line_info(from_start, from_end, to_start, to_end)
340
+ best_ratio, from_equal_index, to_equal_index, *info = info
341
+ from_best_index, to_best_index = info
342
+
343
+ if best_ratio < cut_off
344
+ if from_equal_index.nil?
345
+ tagged_from = tag_deleted(@from[from_start...from_end])
346
+ tagged_to = tag_inserted(@to[to_start...to_end])
347
+ if to_end - to_start < from_end - from_start
348
+ return tagged_to + tagged_from
349
+ else
350
+ return tagged_from + tagged_to
351
+ end
352
+ end
353
+ from_best_index = from_equal_index
354
+ to_best_index = to_equal_index
355
+ best_ratio = 1.0
356
+ end
357
+
358
+ _diff_lines(from_start, from_best_index, to_start, to_best_index) +
359
+ diff_line(@from[from_best_index], @to[to_best_index]) +
360
+ _diff_lines(from_best_index + 1, from_end, to_best_index + 1, to_end)
361
+ end
362
+
363
+ def _diff_lines(from_start, from_end, to_start, to_end)
364
+ if from_start < from_end
365
+ if to_start < to_end
366
+ diff_lines(from_start, from_end, to_start, to_end)
367
+ else
368
+ tag_deleted(@from[from_start...from_end])
369
+ end
370
+ else
371
+ tag_inserted(@to[to_start...to_end])
372
+ end
373
+ end
374
+
375
+ def diff_line(from_line, to_line)
376
+ from_tags = ""
377
+ to_tags = ""
378
+ matcher = SequenceMatcher.new(from_line, to_line,
379
+ &method(:space_character?))
380
+ operations = matcher.operations
381
+ operations.each do |tag, from_start, from_end, to_start, to_end|
382
+ from_length = from_end - from_start
383
+ to_length = to_end - to_start
384
+ case tag
385
+ when :replace
386
+ from_tags << "^" * from_length
387
+ to_tags << "^" * to_length
388
+ when :delete
389
+ from_tags << "-" * from_length
390
+ when :insert
391
+ to_tags << "+" * to_length
392
+ when :equal
393
+ from_tags << " " * from_length
394
+ to_tags << " " * to_length
395
+ else
396
+ raise "unknown tag: #{tag}"
397
+ end
398
+ end
399
+ format_diff_point(from_line, to_line, from_tags, to_tags)
400
+ end
401
+
402
+ def format_diff_point(from_line, to_line, from_tags, to_tags)
403
+ common = [n_leading_characters(from_line, ?\t),
404
+ n_leading_characters(to_line, ?\t)].min
405
+ common = [common,
406
+ n_leading_characters(from_tags[0, common], " "[0])].min
407
+ from_tags = from_tags[common..-1].rstrip
408
+ to_tags = to_tags[common..-1].rstrip
409
+
410
+ result = tag_deleted([from_line])
411
+ unless from_tags.empty?
412
+ result.concat(tag_difference(["#{"\t" * common}#{from_tags}"]))
413
+ end
414
+ result.concat(tag_inserted([to_line]))
415
+ unless to_tags.empty?
416
+ result.concat(tag_difference(["#{"\t" * common}#{to_tags}"]))
417
+ end
418
+ result
419
+ end
420
+
421
+ def n_leading_characters(string, character)
422
+ n = 0
423
+ while string[n] == character
424
+ n += 1
425
+ end
426
+ n
427
+ end
428
+
429
+ def space_character?(character)
430
+ [" "[0], "\t"[0]].include?(character)
431
+ end
432
+ end
433
+
434
+ class UnifiedDiffer < Differ
435
+ def diff(options={})
436
+ groups = SequenceMatcher.new(@from, @to).grouped_operations
437
+ return [] if groups.empty?
438
+ return [] if same_content?(groups)
439
+
440
+ show_context = options[:show_context]
441
+ show_context = true if show_context.nil?
442
+ result = ["--- #{options[:from_label]}".rstrip,
443
+ "+++ #{options[:to_label]}".rstrip]
444
+ groups.each do |operations|
445
+ result << format_summary(operations, show_context)
446
+ operations.each do |args|
447
+ operation_tag, from_start, from_end, to_start, to_end = args
448
+ case operation_tag
449
+ when :replace
450
+ result.concat(tag("-", @from[from_start...from_end]))
451
+ result.concat(tag("+", @to[to_start...to_end]))
452
+ when :delete
453
+ result.concat(tag("-", @from[from_start...from_end]))
454
+ when :insert
455
+ result.concat(tag("+", @to[to_start...to_end]))
456
+ when :equal
457
+ result.concat(tag(" ", @from[from_start...from_end]))
458
+ end
459
+ end
460
+ end
461
+ result
462
+ end
463
+
464
+ private
465
+ def same_content?(groups)
466
+ return false if groups.size != 1
467
+ group = groups[0]
468
+ return false if group.size != 1
469
+ tag, from_start, from_end, to_start, to_end = group[0]
470
+
471
+ tag == :equal and [from_start, from_end] == [to_start, to_end]
472
+ end
473
+
474
+ def format_summary(operations, show_context)
475
+ _, first_from_start, _, first_to_start, _ = operations[0]
476
+ _, _, last_from_end, _, last_to_end = operations[-1]
477
+ summary = "@@ -%d,%d +%d,%d @@" % [first_from_start + 1,
478
+ last_from_end - first_from_start,
479
+ first_to_start + 1,
480
+ last_to_end - first_to_start,]
481
+ if show_context
482
+ interesting_line = find_interesting_line(first_from_start,
483
+ first_to_start,
484
+ :define_line?)
485
+ summary << " #{interesting_line}" if interesting_line
486
+ end
487
+ summary
488
+ end
489
+
490
+ def find_interesting_line(from_start, to_start, predicate)
491
+ from_index = from_start
492
+ to_index = to_start
493
+ while from_index >= 0 or to_index >= 0
494
+ [@from[from_index], @to[to_index]].each do |line|
495
+ return line if line and send(predicate, line)
496
+ end
497
+
498
+ from_index -= 1
499
+ to_index -= 1
500
+ end
501
+ nil
502
+ end
503
+
504
+ def define_line?(line)
505
+ /\A(?:[_a-zA-Z$]|\s*(?:class|module|def)\b)/ =~ line
506
+ end
507
+ end
508
+
509
+ module_function
510
+ def readable(from, to, options={})
511
+ diff(ReadableDiffer, from, to, options)
512
+ end
513
+
514
+ def unified(from, to, options={})
515
+ diff(UnifiedDiffer, from, to, options)
516
+ end
517
+
518
+ def diff(differ_class, from, to, options={})
519
+ differ = differ_class.new(from.split(/\r?\n/), to.split(/\r?\n/))
520
+ differ.diff(options).join("\n")
521
+ end
522
+ end
523
+ end
524
+ end