debian-mirror-gitlab/spec/support_specs/matchers/exceed_query_limit_helpers_spec.rb

40 lines
933 B
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe ExceedQueryLimitHelpers do
2020-06-23 00:09:42 +05:30
before do
stub_const('TestQueries', Class.new(ActiveRecord::Base))
stub_const('TestMatcher', Class.new)
TestQueries.class_eval do
self.table_name = 'schema_migrations'
end
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
TestMatcher.class_eval do
include ExceedQueryLimitHelpers
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
def expected
ActiveRecord::QueryRecorder.new do
2.times { TestQueries.count }
end
2020-04-08 14:13:33 +05:30
end
end
end
it 'does not contain marginalia annotations' do
test_matcher = TestMatcher.new
test_matcher.verify_count do
2.times { TestQueries.count }
TestQueries.first
end
aggregate_failures do
expect(test_matcher.log_message)
.to match(%r{ORDER BY.*#{TestQueries.table_name}.*LIMIT 1})
expect(test_matcher.log_message)
.not_to match(%r{\/\*.*correlation_id.*\*\/})
end
end
end