* test/lib/test/unit.rb (Statistics#record): record most asserted
  tests.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57559 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-02-07 05:19:29 +00:00
Родитель 950d15bc97
Коммит a02a8dfa5a
1 изменённых файлов: 27 добавлений и 9 удалений

Просмотреть файл

@ -587,12 +587,22 @@ module Test
end
module Statistics
def update_list(list, rec, max)
if i = list.empty? ? 0 : list.bsearch_index {|*a| yield(*a)}
list[i, 0] = [rec]
list[max..-1] = [] if list.size >= max
end
end
def record(suite, method, assertions, time, error)
if max = @options[:longest]
longest = @longest ||= []
if i = longest.empty? ? 0 : longest.bsearch_index {|_,_,_,t,_|t<time}
longest[i, 0] = [[suite.name, method, assertions, time, error]]
longest[max..-1] = [] if longest.size >= max
if @options.values_at(:longest, :most_asserted).any?
@tops ||= {}
rec = [suite.name, method, assertions, time, error]
if max = @options[:longest]
update_list(@tops[:longest] ||= [], rec, max) {|_,_,_,t,_|t<time}
end
if max = @options[:most_asserted]
update_list(@tops[:most_asserted] ||= [], rec, max) {|_,_,a,_,_|a<assertions}
end
end
# (((@record ||= {})[suite] ||= {})[method]) = [assertions, time, error]
@ -601,10 +611,15 @@ module Test
def run(*args)
result = super
if defined?(@longest) and @longest
@longest.each {|suite, method, assertions, time, error|
printf "%5.2fsec(%d): %s#%s\n", time, assertions, suite, method
}
if @tops ||= nil
@tops.each do |t, list|
if list
puts "#{t.to_s.tr('_', ' ')} tests:"
list.each {|suite, method, assertions, time, error|
printf "%5.2fsec(%d): %s#%s\n", time, assertions, suite, method
}
end
end
end
result
end
@ -616,6 +631,9 @@ module Test
opts.on '--longest=N', Integer, 'Show longest N tests' do |n|
options[:longest] = n
end
opts.on '--most-asserted=N', Integer, 'Show most asserted N tests' do |n|
options[:most_asserted] = n
end
end
end