2019-04-11 08:17:24 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-06-07 07:14:27 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe NotificationRecipientService do
|
|
|
|
let(:service) { described_class }
|
|
|
|
let(:assignee) { create(:user) }
|
|
|
|
let(:project) { create(:project, :public) }
|
|
|
|
let(:other_projects) { create_list(:project, 5, :public) }
|
|
|
|
|
|
|
|
describe '#build_new_note_recipients' do
|
|
|
|
let(:issue) { create(:issue, project: project, assignees: [assignee]) }
|
|
|
|
let(:note) { create(:note_on_issue, noteable: issue, project_id: issue.project_id) }
|
|
|
|
|
2018-10-02 10:29:45 -04:00
|
|
|
shared_examples 'no N+1 queries' do
|
2018-10-02 08:39:46 -04:00
|
|
|
it 'avoids N+1 queries', :request_store do
|
2018-10-02 10:29:45 -04:00
|
|
|
create_user
|
2018-10-02 08:39:46 -04:00
|
|
|
|
|
|
|
service.build_new_note_recipients(note)
|
|
|
|
|
|
|
|
control_count = ActiveRecord::QueryRecorder.new do
|
|
|
|
service.build_new_note_recipients(note)
|
|
|
|
end
|
2018-06-07 07:14:27 -04:00
|
|
|
|
2018-10-02 10:29:45 -04:00
|
|
|
create_user
|
2018-10-02 08:39:46 -04:00
|
|
|
|
|
|
|
expect { service.build_new_note_recipients(note) }.not_to exceed_query_limit(control_count)
|
2018-06-07 07:14:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-02 10:29:45 -04:00
|
|
|
context 'when there are multiple watchers' do
|
|
|
|
def create_user
|
|
|
|
watcher = create(:user)
|
|
|
|
create(:notification_setting, source: project, user: watcher, level: :watch)
|
|
|
|
|
|
|
|
other_projects.each do |other_project|
|
|
|
|
create(:notification_setting, source: other_project, user: watcher, level: :watch)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
include_examples 'no N+1 queries'
|
|
|
|
end
|
|
|
|
|
2018-10-02 08:39:46 -04:00
|
|
|
context 'when there are multiple subscribers' do
|
2018-10-02 10:29:45 -04:00
|
|
|
def create_user
|
2018-10-02 08:39:46 -04:00
|
|
|
subscriber = create(:user)
|
|
|
|
issue.subscriptions.create(user: subscriber, project: project, subscribed: true)
|
|
|
|
end
|
2018-06-07 07:14:27 -04:00
|
|
|
|
2018-10-02 10:29:45 -04:00
|
|
|
include_examples 'no N+1 queries'
|
2018-06-07 07:14:27 -04:00
|
|
|
|
2018-10-02 10:29:45 -04:00
|
|
|
context 'when the project is private' do
|
|
|
|
before do
|
|
|
|
project.update!(visibility_level: Gitlab::VisibilityLevel::PRIVATE)
|
2018-10-02 08:39:46 -04:00
|
|
|
end
|
2018-06-07 07:14:27 -04:00
|
|
|
|
2018-10-02 10:29:45 -04:00
|
|
|
include_examples 'no N+1 queries'
|
2018-10-02 08:39:46 -04:00
|
|
|
end
|
2018-06-07 07:14:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|