summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/graphql/n_plus_one_query_examples.rb
blob: faf1bb204c96f7f9dfcb26697cf27f1bca65ccaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true
RSpec.shared_examples 'N+1 query check' do
  it 'prevents N+1 queries' do
    execute_query # "warm up" to prevent undeterministic counts
    expect(graphql_errors).to be_blank # Sanity check - ex falso quodlibet!

    control = ActiveRecord::QueryRecorder.new { execute_query }
    expect(control.count).to be > 0

    search_params[:iids] << extra_iid_for_second_query
    expect { execute_query }.not_to exceed_query_limit(control)
  end
end