2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe MethodProfiler do
|
2017-11-28 00:47:20 -05:00
|
|
|
class Sneetch
|
|
|
|
def beach
|
|
|
|
end
|
2018-02-27 18:45:11 -05:00
|
|
|
|
|
|
|
def recurse(count = 5)
|
|
|
|
recurse(count - 1) if count > 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can bypass recursion on demand" do
|
|
|
|
MethodProfiler.patch(Sneetch, [:recurse], :recurse, no_recurse: true)
|
|
|
|
|
|
|
|
MethodProfiler.start
|
|
|
|
Sneetch.new.recurse
|
|
|
|
result = MethodProfiler.stop
|
|
|
|
|
|
|
|
expect(result[:recurse][:calls]).to eq(1)
|
2017-11-28 00:47:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "can transfer data between threads" do
|
|
|
|
MethodProfiler.patch(Sneetch, [:beach], :at_beach)
|
|
|
|
|
|
|
|
MethodProfiler.start
|
|
|
|
Sneetch.new.beach
|
|
|
|
data = MethodProfiler.transfer
|
|
|
|
result = nil
|
|
|
|
Thread
|
|
|
|
.new do
|
|
|
|
MethodProfiler.start(data)
|
|
|
|
Sneetch.new.beach
|
|
|
|
result = MethodProfiler.stop
|
|
|
|
end
|
|
|
|
.join
|
|
|
|
|
|
|
|
expect(result[:at_beach][:calls]).to eq(2)
|
|
|
|
end
|
|
|
|
end
|