summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/issuables_list_metadata_shared_examples.rb
blob: 52d90b5f183b6f0f780735f19b6bb4e07348732f (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# frozen_string_literal: true

shared_examples 'issuables list meta-data' do |issuable_type, action = nil|
  include ProjectForksHelper

  def get_action(action, project, extra_params = {})
    if action
      get action, params: { author_id: project.creator.id }.merge(extra_params)
    else
      get :index, params: { namespace_id: project.namespace, project_id: project }.merge(extra_params)
    end
  end

  def create_issuable(issuable_type, project, source_branch:)
    if issuable_type == :issue
      create(issuable_type, project: project, author: project.creator)
    else
      create(issuable_type, source_project: project, source_branch: source_branch, author: project.creator)
    end
  end

  let!(:issuables) do
    %w[fix improve/awesome].map do |source_branch|
      create_issuable(issuable_type, project, source_branch: source_branch)
    end
  end

  let(:issuable_ids) { issuables.map(&:id) }

  it "creates indexed meta-data object for issuable notes and votes count" do
    get_action(action, project)

    meta_data = assigns(:issuable_meta_data)

    aggregate_failures do
      expect(meta_data.keys).to match_array(issuables.map(&:id))
      expect(meta_data.values).to all(be_kind_of(Issuable::IssuableMeta))
    end
  end

  context 'searching' do
    let(:result_issuable) { issuables.first }
    let(:search) { result_issuable.title }

    before do
      stub_feature_flags(attempt_project_search_optimizations: true)
    end

    # .simple_sorts is the same across all Sortable classes
    sorts = ::Issue.simple_sorts.keys + %w[popularity priority label_priority]
    sorts.each do |sort|
      it "works when sorting by #{sort}" do
        get_action(action, project, search: search, sort: sort)

        expect(assigns(:issuable_meta_data).keys).to include(result_issuable.id)
      end
    end
  end

  it "avoids N+1 queries" do
    control = ActiveRecord::QueryRecorder.new { get_action(action, project) }
    issuable = create_issuable(issuable_type, project, source_branch: 'csv')

    if issuable_type == :merge_request
      issuable.update!(source_project: fork_project(project))
    end

    expect { get_action(action, project) }.not_to exceed_query_limit(control.count)
  end

  describe "when given empty collection" do
    let(:project2) { create(:project, :public) }

    it "doesn't execute any queries with false conditions" do
      get_empty =
        if action
          proc { get action, params: { author_id: project.creator.id } }
        else
          proc { get :index, params: { namespace_id: project2.namespace, project_id: project2 } }
        end

      expect(&get_empty).not_to make_queries_matching(/WHERE (?:1=0|0=1)/)
    end
  end
end