debian-mirror-gitlab/spec/lib/gitlab/middleware/rails_queue_duration_spec.rb
2021-01-03 14:25:43 +05:30

48 lines
1.5 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::Middleware::RailsQueueDuration do
let(:app) { double(:app) }
let(:middleware) { described_class.new(app) }
let(:env) { {} }
let(:transaction) { Gitlab::Metrics::WebTransaction.new(env) }
before do
allow(app).to receive(:call).with(env).and_return('yay')
end
describe '#call' do
it 'calls the app when metrics are disabled' do
expect(Gitlab::Metrics).to receive(:current_transaction).and_return(nil)
expect(middleware.call(env)).to eq('yay')
end
context 'when metrics are enabled' do
before do
allow(Gitlab::Metrics).to receive(:current_transaction).and_return(transaction)
end
it 'calls the app when metrics are enabled but no timing header is found' do
expect(middleware.call(env)).to eq('yay')
end
it 'sets proxy_flight_time and calls the app when the header is present' do
env['HTTP_GITLAB_WORKHORSE_PROXY_START'] = '123'
expect(transaction).to receive(:set).with(:gitlab_transaction_rails_queue_duration_total, an_instance_of(Float))
expect(middleware.call(env)).to eq('yay')
end
it 'observes rails queue duration metrics and calls the app when the header is present' do
env['HTTP_GITLAB_WORKHORSE_PROXY_START'] = '2000000000'
expect(transaction).to receive(:observe).with(:gitlab_rails_queue_duration_seconds, 1)
travel_to(Time.at(3)) do
expect(middleware.call(env)).to eq('yay')
end
end
end
end
end