1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
class GonTestWorker
include Gon::ControllerHelpers
def request
@request ||= ActionDispatch::TestRequest.create
end
def env
request.env
end
def execute
gon.clear
gon.a ||= 1
gon.a += 1
end
def value
gon.a
end
end
describe 'threading behaviour' do
before do
allow(Gon).to receive(:current_gon).and_call_original
end
it 'is threadsafe' do
threads = []
10.times do
threads << Thread.new do
gtw = GonTestWorker.new
gtw.execute
expect(gtw.value).to eq 2
end
end
threads.each(&:join)
end
end
|