mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Added assert_linear_performance for URI tests
This commit is contained in:
parent
14f025a738
commit
6fa7e5e05b
1 changed files with 33 additions and 0 deletions
|
@ -398,6 +398,39 @@ eom
|
|||
end
|
||||
alias all_assertions assert_all_assertions
|
||||
|
||||
# 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 message(msg = nil, *args, &default) # :nodoc:
|
||||
if Proc === msg
|
||||
super(nil, *args) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue