Commit b6d0dd87 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #4618 from jacargentina/notification-on-commits

Fix notifications to handle participants and mentions on commits too
parents efd1b69f 669ada92
...@@ -106,15 +106,15 @@ class NotificationService ...@@ -106,15 +106,15 @@ class NotificationService
if note.commit_id.present? if note.commit_id.present?
opts.merge!(commit_id: note.commit_id) opts.merge!(commit_id: note.commit_id)
recipients = [note.commit_author]
else else
opts.merge!(noteable_id: note.noteable_id) opts.merge!(noteable_id: note.noteable_id)
target = note.noteable end
if target.respond_to?(:participants)
recipients = target.participants target = note.noteable
else if target.respond_to?(:participants)
recipients = [] recipients = target.participants
end else
recipients = note.mentioned_users
end end
# Get users who left comment in thread # Get users who left comment in thread
......
...@@ -48,7 +48,7 @@ describe NotificationService do ...@@ -48,7 +48,7 @@ describe NotificationService do
end end
context 'commit note' do context 'commit note' do
let(:note) { create :note_on_commit } let(:note) { create(:note_on_commit) }
before do before do
build_team(note.project) build_team(note.project)
...@@ -56,32 +56,35 @@ describe NotificationService do ...@@ -56,32 +56,35 @@ describe NotificationService do
describe :new_note do describe :new_note do
it do it do
should_email(@u_watcher.id) should_email(@u_watcher.id, note)
should_not_email(note.author_id) should_not_email(@u_mentioned.id, note)
should_not_email(@u_participating.id) should_not_email(note.author_id, note)
should_not_email(@u_disabled.id) should_not_email(@u_participating.id, note)
should_not_email(@u_disabled.id, note)
notification.new_note(note) notification.new_note(note)
end end
it do it do
create(:note_on_commit, new_note = create(:note_on_commit,
author: @u_participating, author: @u_participating,
project_id: note.project_id, project_id: note.project_id,
commit_id: note.commit_id) commit_id: note.commit_id,
note: '@mention referenced')
should_email(@u_watcher.id)
should_email(@u_participating.id) should_email(@u_watcher.id, new_note)
should_not_email(note.author_id) should_email(@u_mentioned.id, new_note)
should_not_email(@u_disabled.id) should_not_email(new_note.author_id, new_note)
notification.new_note(note) should_not_email(@u_participating.id, new_note)
should_not_email(@u_disabled.id, new_note)
notification.new_note(new_note)
end end
def should_email(user_id) def should_email(user_id, n)
Notify.should_receive(:note_commit_email).with(user_id, note.id) Notify.should_receive(:note_commit_email).with(user_id, n.id)
end end
def should_not_email(user_id) def should_not_email(user_id, n)
Notify.should_not_receive(:note_commit_email).with(user_id, note.id) Notify.should_not_receive(:note_commit_email).with(user_id, n.id)
end end
end end
end end
...@@ -236,7 +239,7 @@ describe NotificationService do ...@@ -236,7 +239,7 @@ describe NotificationService do
@u_watcher = create(:user, notification_level: Notification::N_WATCH) @u_watcher = create(:user, notification_level: Notification::N_WATCH)
@u_participating = create(:user, notification_level: Notification::N_PARTICIPATING) @u_participating = create(:user, notification_level: Notification::N_PARTICIPATING)
@u_disabled = create(:user, notification_level: Notification::N_DISABLED) @u_disabled = create(:user, notification_level: Notification::N_DISABLED)
@u_mentioned = create(:user, username: 'mention', notification_level: Notification::N_WATCH) @u_mentioned = create(:user, username: 'mention', notification_level: Notification::N_PARTICIPATING)
project.team << [@u_watcher, :master] project.team << [@u_watcher, :master]
project.team << [@u_participating, :master] project.team << [@u_participating, :master]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment