diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2017-02-13 11:43:26 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2017-02-13 11:43:26 +0000 |
commit | 7d4d9365c0d9025d5c08ec503be304b4d3f63997 (patch) | |
tree | 4373f47e3a71451f52cdf10757fefaaea0d34c30 /spec/support | |
parent | 6a1b3ef73f57d58d159e343f79e1f74418c2f763 (diff) | |
parent | 0b14b654b6e5d936f7241dcc0c249e0d4cc42728 (diff) | |
download | gitlab-ce-7d4d9365c0d9025d5c08ec503be304b4d3f63997.tar.gz |
Merge branch 'issue_25900_2' into 'master'
Gather issuable metadata to avoid n+ queries on index view
Closes #25900
See merge request !9006
Diffstat (limited to 'spec/support')
-rw-r--r-- | spec/support/issuables_list_metadata_shared_examples.rb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/spec/support/issuables_list_metadata_shared_examples.rb b/spec/support/issuables_list_metadata_shared_examples.rb new file mode 100644 index 00000000000..dac94dfc31e --- /dev/null +++ b/spec/support/issuables_list_metadata_shared_examples.rb @@ -0,0 +1,35 @@ +shared_examples 'issuables list meta-data' do |issuable_type, action = nil| + before do + @issuable_ids = [] + + 2.times do + if issuable_type == :issue + issuable = create(issuable_type, project: project) + else + issuable = create(issuable_type, title: FFaker::Lorem.sentence, source_project: project, source_branch: FFaker::Name.name) + end + + @issuable_ids << issuable.id + + issuable.id.times { create(:note, noteable: issuable, project: issuable.project) } + (issuable.id + 1).times { create(:award_emoji, :downvote, awardable: issuable) } + (issuable.id + 2).times { create(:award_emoji, :upvote, awardable: issuable) } + end + end + + it "creates indexed meta-data object for issuable notes and votes count" do + if action + get action + else + get :index, namespace_id: project.namespace.path, project_id: project.path + end + + meta_data = assigns(:issuable_meta_data) + + @issuable_ids.each do |id| + expect(meta_data[id].notes_count).to eq(id) + expect(meta_data[id].downvotes).to eq(id + 1) + expect(meta_data[id].upvotes).to eq(id + 2) + end + end +end |