mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 17:43:59 +02:00
Added assert_linear_performance for URI tests
This commit is contained in:
parent
8db69f684b
commit
66ad6e533e
1 changed files with 33 additions and 0 deletions
|
@ -726,6 +726,39 @@ eom
|
|||
end
|
||||
alias all_assertions_foreach assert_all_assertions_foreach
|
||||
|
||||
# Expect +seq+ to respond to +first+ and +each+ methods, e.g.,
|
||||
# Array, Range, Enumerator::ArithmeticSequence and other
|
||||
# Enumerable-s, and each elements should be size factors.
|
||||
#
|
||||
# :yield: each elements of +seq+.
|
||||
def assert_linear_performance(seq, rehearsal: nil, pre: ->(n) {n})
|
||||
first = seq.first
|
||||
*arg = pre.call(first)
|
||||
times = (0..(rehearsal || (2 * first))).map do
|
||||
st = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
||||
yield(*arg)
|
||||
t = (Process.clock_gettime(Process::CLOCK_MONOTONIC) - st)
|
||||
assert_operator 0, :<=, t
|
||||
t.nonzero?
|
||||
end
|
||||
times.compact!
|
||||
tmin, tmax = times.minmax
|
||||
tmax *= tmax / tmin
|
||||
tmax = 10**Math.log10(tmax).ceil
|
||||
|
||||
seq.each do |i|
|
||||
next if i == first
|
||||
t = tmax * i.fdiv(first)
|
||||
*arg = pre.call(i)
|
||||
message = "[#{i}]: in #{t}s"
|
||||
Timeout.timeout(t, Timeout::Error, message) do
|
||||
st = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
||||
yield(*arg)
|
||||
assert_operator (Process.clock_gettime(Process::CLOCK_MONOTONIC) - st), :<=, t, message
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def diff(exp, act)
|
||||
require 'pp'
|
||||
q = PP.new(+"")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue