debian-mirror-gitlab/spec/lib/gitlab/metrics/subscribers/action_view_spec.rb

39 lines
973 B
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Metrics::Subscribers::ActionView do
2018-03-17 18:26:18 +05:30
let(:env) { {} }
let(:transaction) { Gitlab::Metrics::WebTransaction.new(env) }
let(:subscriber) { described_class.new }
let(:event) do
root = Rails.root.to_s
double(:event, duration: 2.1,
payload: { identifier: "#{root}/app/views/x.html.haml" })
end
before do
allow(subscriber).to receive(:current_transaction).and_return(transaction)
end
describe '#render_template' do
it 'tracks rendering of a template' do
2017-09-10 17:25:29 +05:30
expect(transaction).to receive(:increment)
.with(:view_duration, 2.1)
subscriber.render_template(event)
end
2018-03-17 18:26:18 +05:30
it 'observes view rendering time' do
expect(described_class.gitlab_view_rendering_duration_seconds)
.to receive(:observe)
.with({ view: 'app/views/x.html.haml' }, 2.1)
subscriber.render_template(event)
end
end
end