debian-mirror-gitlab/spec/mailers/notify_spec.rb

1056 lines
41 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2015-09-11 14:41:01 +05:30
require 'email_spec'
2016-04-02 18:10:28 +05:30
require 'mailers/shared/notify'
2014-09-02 18:07:02 +05:30
describe Notify do
include EmailSpec::Helpers
include EmailSpec::Matchers
include RepoHelpers
2016-04-02 18:10:28 +05:30
include_context 'gitlab email notification'
2014-09-02 18:07:02 +05:30
context 'for a project' do
describe 'items that are assignable, the email' do
let(:current_user) { create(:user, email: "current@email.com") }
let(:assignee) { create(:user, email: 'assignee@example.com') }
let(:previous_assignee) { create(:user, name: 'Previous Assignee') }
shared_examples 'an assignee email' do
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
2015-04-26 12:48:37 +05:30
expect(sender.display_name).to eq(current_user.name)
expect(sender.address).to eq(gitlab_sender)
2014-09-02 18:07:02 +05:30
end
it 'is sent to the assignee' do
2015-04-26 12:48:37 +05:30
is_expected.to deliver_to assignee.email
2014-09-02 18:07:02 +05:30
end
end
context 'for issues' do
let(:issue) { create(:issue, author: current_user, assignee: assignee, project: project) }
2015-09-11 14:41:01 +05:30
let(:issue_with_description) { create(:issue, author: current_user, assignee: assignee, project: project, description: FFaker::Lorem.sentence) }
2014-09-02 18:07:02 +05:30
describe 'that are new' do
subject { Notify.new_issue_email(issue.assignee_id, issue.id) }
it_behaves_like 'an assignee email'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an email starting a new thread with reply-by-email enabled' do
let(:model) { issue }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Issue link'
it_behaves_like 'an unsubscribeable thread'
2014-09-02 18:07:02 +05:30
it 'has the correct subject' do
2015-04-26 12:48:37 +05:30
is_expected.to have_subject /#{project.name} \| #{issue.title} \(##{issue.iid}\)/
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the new issue' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{namespace_project_issue_path project.namespace, project, issue}/
2014-09-02 18:07:02 +05:30
end
2016-04-02 18:10:28 +05:30
context 'when enabled email_author_in_body' do
before do
allow_any_instance_of(ApplicationSetting).to receive(:email_author_in_body).and_return(true)
2016-04-02 18:10:28 +05:30
end
it 'contains a link to note author' do
is_expected.to have_body_text issue.author_name
is_expected.to have_body_text /wrote\:/
end
end
2014-09-02 18:07:02 +05:30
end
describe 'that are new with a description' do
subject { Notify.new_issue_email(issue_with_description.assignee_id, issue_with_description.id) }
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Issue link'
2014-09-02 18:07:02 +05:30
it 'contains the description' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{issue_with_description.description}/
2014-09-02 18:07:02 +05:30
end
end
describe 'that have been reassigned' do
2015-12-23 02:04:40 +05:30
subject { Notify.reassigned_issue_email(recipient.id, issue.id, previous_assignee.id, current_user.id) }
2014-09-02 18:07:02 +05:30
it_behaves_like 'a multiple recipients email'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { issue }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Issue link'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an unsubscribeable thread'
2014-09-02 18:07:02 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
2015-04-26 12:48:37 +05:30
expect(sender.display_name).to eq(current_user.name)
expect(sender.address).to eq(gitlab_sender)
2014-09-02 18:07:02 +05:30
end
it 'has the correct subject' do
2015-04-26 12:48:37 +05:30
is_expected.to have_subject /#{issue.title} \(##{issue.iid}\)/
2014-09-02 18:07:02 +05:30
end
it 'contains the name of the previous assignee' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{previous_assignee.name}/
2014-09-02 18:07:02 +05:30
end
it 'contains the name of the new assignee' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{assignee.name}/
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the issue' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{namespace_project_issue_path project.namespace, project, issue}/
2014-09-02 18:07:02 +05:30
end
end
2016-06-02 11:05:42 +05:30
describe 'that have been relabeled' do
subject { Notify.relabeled_issue_email(recipient.id, issue.id, %w[foo bar baz], current_user.id) }
it_behaves_like 'a multiple recipients email'
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { issue }
end
it_behaves_like 'it should show Gmail Actions View Issue link'
it_behaves_like 'a user cannot unsubscribe through footer link'
it_behaves_like 'an email with a labels subscriptions link in its footer'
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
expect(sender.display_name).to eq(current_user.name)
expect(sender.address).to eq(gitlab_sender)
end
it 'has the correct subject' do
is_expected.to have_subject /#{issue.title} \(##{issue.iid}\)/
end
it 'contains the names of the added labels' do
is_expected.to have_body_text /foo, bar, and baz/
end
it 'contains a link to the issue' do
is_expected.to have_body_text /#{namespace_project_issue_path project.namespace, project, issue}/
end
end
2014-09-02 18:07:02 +05:30
describe 'status changed' do
let(:status) { 'closed' }
2015-12-23 02:04:40 +05:30
subject { Notify.issue_status_changed_email(recipient.id, issue.id, status, current_user.id) }
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { issue }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Issue link'
it_behaves_like 'an unsubscribeable thread'
2014-09-02 18:07:02 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
2015-04-26 12:48:37 +05:30
expect(sender.display_name).to eq(current_user.name)
expect(sender.address).to eq(gitlab_sender)
2014-09-02 18:07:02 +05:30
end
it 'has the correct subject' do
2015-04-26 12:48:37 +05:30
is_expected.to have_subject /#{issue.title} \(##{issue.iid}\)/i
2014-09-02 18:07:02 +05:30
end
it 'contains the new status' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{status}/i
2014-09-02 18:07:02 +05:30
end
it 'contains the user name' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{current_user.name}/i
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the issue' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{namespace_project_issue_path project.namespace, project, issue}/
2014-09-02 18:07:02 +05:30
end
end
2016-06-02 11:05:42 +05:30
describe 'moved to another project' do
let(:new_issue) { create(:issue) }
subject { Notify.issue_moved_email(recipient, issue, new_issue, current_user) }
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { issue }
end
it_behaves_like 'it should show Gmail Actions View Issue link'
it_behaves_like 'an unsubscribeable thread'
it 'contains description about action taken' do
is_expected.to have_body_text 'Issue was moved to another project'
end
it 'has the correct subject' do
is_expected.to have_subject /#{issue.title} \(##{issue.iid}\)/i
end
it 'contains link to new issue' do
new_issue_url = namespace_project_issue_path(new_issue.project.namespace,
new_issue.project, new_issue)
is_expected.to have_body_text new_issue_url
end
it 'contains a link to the original issue' do
is_expected.to have_body_text /#{namespace_project_issue_path project.namespace, project, issue}/
end
end
2014-09-02 18:07:02 +05:30
end
context 'for merge requests' do
let(:merge_author) { create(:user) }
let(:merge_request) { create(:merge_request, author: current_user, assignee: assignee, source_project: project, target_project: project) }
2015-09-11 14:41:01 +05:30
let(:merge_request_with_description) { create(:merge_request, author: current_user, assignee: assignee, source_project: project, target_project: project, description: FFaker::Lorem.sentence) }
2014-09-02 18:07:02 +05:30
describe 'that are new' do
subject { Notify.new_merge_request_email(merge_request.assignee_id, merge_request.id) }
it_behaves_like 'an assignee email'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an email starting a new thread with reply-by-email enabled' do
let(:model) { merge_request }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Merge request link'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an unsubscribeable thread'
2014-09-02 18:07:02 +05:30
it 'has the correct subject' do
2016-06-02 11:05:42 +05:30
is_expected.to have_subject /#{merge_request.title} \(#{merge_request.to_reference}\)/
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the new merge request' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{namespace_project_merge_request_path(project.namespace, project, merge_request)}/
2014-09-02 18:07:02 +05:30
end
it 'contains the source branch for the merge request' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{merge_request.source_branch}/
2014-09-02 18:07:02 +05:30
end
it 'contains the target branch for the merge request' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{merge_request.target_branch}/
2014-09-02 18:07:02 +05:30
end
2016-04-02 18:10:28 +05:30
context 'when enabled email_author_in_body' do
before do
allow_any_instance_of(ApplicationSetting).to receive(:email_author_in_body).and_return(true)
2016-04-02 18:10:28 +05:30
end
it 'contains a link to note author' do
is_expected.to have_body_text merge_request.author_name
is_expected.to have_body_text /wrote\:/
end
end
2014-09-02 18:07:02 +05:30
end
describe 'that are new with a description' do
subject { Notify.new_merge_request_email(merge_request_with_description.assignee_id, merge_request_with_description.id) }
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Merge request link'
it_behaves_like "an unsubscribeable thread"
2015-12-23 02:04:40 +05:30
2014-09-02 18:07:02 +05:30
it 'contains the description' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{merge_request_with_description.description}/
2014-09-02 18:07:02 +05:30
end
end
describe 'that are reassigned' do
subject { Notify.reassigned_merge_request_email(recipient.id, merge_request.id, previous_assignee.id, current_user.id) }
it_behaves_like 'a multiple recipients email'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { merge_request }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Merge request link'
it_behaves_like "an unsubscribeable thread"
2014-09-02 18:07:02 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
2015-04-26 12:48:37 +05:30
expect(sender.display_name).to eq(current_user.name)
expect(sender.address).to eq(gitlab_sender)
2014-09-02 18:07:02 +05:30
end
it 'has the correct subject' do
2016-06-02 11:05:42 +05:30
is_expected.to have_subject /#{merge_request.title} \(#{merge_request.to_reference}\)/
2014-09-02 18:07:02 +05:30
end
it 'contains the name of the previous assignee' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{previous_assignee.name}/
2014-09-02 18:07:02 +05:30
end
it 'contains the name of the new assignee' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{assignee.name}/
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the merge request' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{namespace_project_merge_request_path project.namespace, project, merge_request}/
2014-09-02 18:07:02 +05:30
end
end
2016-06-02 11:05:42 +05:30
describe 'that have been relabeled' do
subject { Notify.relabeled_merge_request_email(recipient.id, merge_request.id, %w[foo bar baz], current_user.id) }
it_behaves_like 'a multiple recipients email'
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { merge_request }
end
it_behaves_like 'it should show Gmail Actions View Merge request link'
it_behaves_like 'a user cannot unsubscribe through footer link'
it_behaves_like 'an email with a labels subscriptions link in its footer'
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
expect(sender.display_name).to eq(current_user.name)
expect(sender.address).to eq(gitlab_sender)
end
it 'has the correct subject' do
is_expected.to have_subject /#{merge_request.title} \(#{merge_request.to_reference}\)/
end
it 'contains the names of the added labels' do
is_expected.to have_body_text /foo, bar, and baz/
end
it 'contains a link to the merge request' do
is_expected.to have_body_text /#{namespace_project_merge_request_path project.namespace, project, merge_request}/
end
end
2014-09-02 18:07:02 +05:30
describe 'status changed' do
let(:status) { 'reopened' }
2015-12-23 02:04:40 +05:30
subject { Notify.merge_request_status_email(recipient.id, merge_request.id, status, current_user.id) }
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { merge_request }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Merge request link'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an unsubscribeable thread'
2014-09-02 18:07:02 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
2015-04-26 12:48:37 +05:30
expect(sender.display_name).to eq(current_user.name)
expect(sender.address).to eq(gitlab_sender)
2014-09-02 18:07:02 +05:30
end
it 'has the correct subject' do
2016-06-02 11:05:42 +05:30
is_expected.to have_subject /#{merge_request.title} \(#{merge_request.to_reference}\)/i
2014-09-02 18:07:02 +05:30
end
it 'contains the new status' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{status}/i
2014-09-02 18:07:02 +05:30
end
it 'contains the user name' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{current_user.name}/i
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the merge request' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{namespace_project_merge_request_path project.namespace, project, merge_request}/
2014-09-02 18:07:02 +05:30
end
end
describe 'that are merged' do
subject { Notify.merged_merge_request_email(recipient.id, merge_request.id, merge_author.id) }
it_behaves_like 'a multiple recipients email'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { merge_request }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Merge request link'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an unsubscribeable thread'
2014-09-02 18:07:02 +05:30
it 'is sent as the merge author' do
sender = subject.header[:from].addrs[0]
2015-04-26 12:48:37 +05:30
expect(sender.display_name).to eq(merge_author.name)
expect(sender.address).to eq(gitlab_sender)
2014-09-02 18:07:02 +05:30
end
it 'has the correct subject' do
2016-06-02 11:05:42 +05:30
is_expected.to have_subject /#{merge_request.title} \(#{merge_request.to_reference}\)/
2014-09-02 18:07:02 +05:30
end
it 'contains the new status' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /merged/i
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the merge request' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{namespace_project_merge_request_path project.namespace, project, merge_request}/
2014-09-02 18:07:02 +05:30
end
end
end
end
describe 'project was moved' do
let(:project) { create(:project) }
let(:user) { create(:user) }
2015-10-24 18:46:33 +05:30
subject { Notify.project_was_moved_email(project.id, user.id, "gitlab/gitlab") }
2014-09-02 18:07:02 +05:30
it_behaves_like 'an email sent from GitLab'
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
2014-09-02 18:07:02 +05:30
it 'has the correct subject' do
2015-04-26 12:48:37 +05:30
is_expected.to have_subject /Project was moved/
2014-09-02 18:07:02 +05:30
end
it 'contains name of project' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{project.name_with_namespace}/
2014-09-02 18:07:02 +05:30
end
it 'contains new user role' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{project.ssh_url_to_repo}/
2014-09-02 18:07:02 +05:30
end
end
describe 'project access requested' do
let(:project) { create(:project) }
let(:user) { create(:user) }
let(:project_member) do
project.request_access(user)
project.members.request.find_by(user_id: user.id)
end
subject { Notify.member_access_requested_email('project', project_member.id) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject "Request to join the #{project.name_with_namespace} project"
is_expected.to have_body_text /#{project.name_with_namespace}/
is_expected.to have_body_text /#{namespace_project_project_members_url(project.namespace, project)}/
is_expected.to have_body_text /#{project_member.human_access}/
end
end
describe 'project access denied' do
let(:project) { create(:project) }
let(:user) { create(:user) }
let(:project_member) do
project.request_access(user)
project.members.request.find_by(user_id: user.id)
end
subject { Notify.member_access_denied_email('project', project.id, user.id) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject "Access to the #{project.name_with_namespace} project was denied"
is_expected.to have_body_text /#{project.name_with_namespace}/
is_expected.to have_body_text /#{project.web_url}/
end
end
2014-09-02 18:07:02 +05:30
describe 'project access changed' do
let(:project) { create(:project) }
let(:user) { create(:user) }
2015-09-11 14:41:01 +05:30
let(:project_member) { create(:project_member, project: project, user: user) }
subject { Notify.member_access_granted_email('project', project_member.id) }
2014-09-02 18:07:02 +05:30
it_behaves_like 'an email sent from GitLab'
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
2014-09-02 18:07:02 +05:30
it 'contains all the useful information' do
is_expected.to have_subject "Access to the #{project.name_with_namespace} project was granted"
is_expected.to have_body_text /#{project.name_with_namespace}/
is_expected.to have_body_text /#{project.web_url}/
is_expected.to have_body_text /#{project_member.human_access}/
2014-09-02 18:07:02 +05:30
end
end
2015-12-23 02:04:40 +05:30
def invite_to_project(project:, email:, inviter:)
ProjectMember.add_user(project.project_members, 'toto@example.com', Gitlab::Access::DEVELOPER, inviter)
2015-12-23 02:04:40 +05:30
project.project_members.invite.last
end
describe 'project invitation' do
let(:project) { create(:project) }
let(:master) { create(:user).tap { |u| project.team << [u, :master] } }
let(:project_member) { invite_to_project(project: project, email: 'toto@example.com', inviter: master) }
subject { Notify.member_invited_email('project', project_member.id, project_member.invite_token) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject "Invitation to join the #{project.name_with_namespace} project"
is_expected.to have_body_text /#{project.name_with_namespace}/
is_expected.to have_body_text /#{project.web_url}/
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{project_member.human_access}/
is_expected.to have_body_text /#{project_member.invite_token}/
end
end
describe 'project invitation accepted' do
let(:project) { create(:project) }
let(:invited_user) { create(:user) }
let(:master) { create(:user).tap { |u| project.team << [u, :master] } }
let(:project_member) do
invitee = invite_to_project(project: project, email: 'toto@example.com', inviter: master)
invitee.accept_invite!(invited_user)
invitee
end
subject { Notify.member_invite_accepted_email('project', project_member.id) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject 'Invitation accepted'
is_expected.to have_body_text /#{project.name_with_namespace}/
is_expected.to have_body_text /#{project.web_url}/
is_expected.to have_body_text /#{project_member.invite_email}/
is_expected.to have_body_text /#{invited_user.name}/
end
end
describe 'project invitation declined' do
let(:project) { create(:project) }
let(:master) { create(:user).tap { |u| project.team << [u, :master] } }
let(:project_member) do
invitee = invite_to_project(project: project, email: 'toto@example.com', inviter: master)
invitee.decline_invite!
invitee
end
subject { Notify.member_invite_declined_email('project', project.id, project_member.invite_email, master.id) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject 'Invitation declined'
is_expected.to have_body_text /#{project.name_with_namespace}/
is_expected.to have_body_text /#{project.web_url}/
is_expected.to have_body_text /#{project_member.invite_email}/
2014-09-02 18:07:02 +05:30
end
end
context 'items that are noteable, the email for a note' do
let(:note_author) { create(:user, name: 'author_name') }
let(:note) { create(:note, project: project, author: note_author) }
before :each do
2015-04-26 12:48:37 +05:30
allow(Note).to receive(:find).with(note.id).and_return(note)
2014-09-02 18:07:02 +05:30
end
shared_examples 'a note email' do
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should have Gmail Actions links'
2014-09-02 18:07:02 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
2015-04-26 12:48:37 +05:30
expect(sender.display_name).to eq(note_author.name)
expect(sender.address).to eq(gitlab_sender)
2014-09-02 18:07:02 +05:30
end
it 'is sent to the given recipient' do
2015-04-26 12:48:37 +05:30
is_expected.to deliver_to recipient.notification_email
2014-09-02 18:07:02 +05:30
end
it 'contains the message from the note' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{note.note}/
2014-09-02 18:07:02 +05:30
end
2016-04-02 18:10:28 +05:30
it 'not contains note author' do
is_expected.not_to have_body_text /wrote\:/
end
context 'when enabled email_author_in_body' do
before do
allow_any_instance_of(ApplicationSetting).to receive(:email_author_in_body).and_return(true)
2016-04-02 18:10:28 +05:30
end
it 'contains a link to note author' do
is_expected.to have_body_text note.author_name
is_expected.to have_body_text /wrote\:/
end
end
2014-09-02 18:07:02 +05:30
end
describe 'on a commit' do
2015-09-11 14:41:01 +05:30
let(:commit) { project.commit }
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
before(:each) { allow(note).to receive(:noteable).and_return(commit) }
2014-09-02 18:07:02 +05:30
subject { Notify.note_commit_email(recipient.id, note.id) }
it_behaves_like 'a note email'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { commit }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Commit link'
2016-06-02 11:05:42 +05:30
it_behaves_like 'a user cannot unsubscribe through footer link'
2014-09-02 18:07:02 +05:30
it 'has the correct subject' do
2015-04-26 12:48:37 +05:30
is_expected.to have_subject /#{commit.title} \(#{commit.short_id}\)/
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the commit' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text commit.short_id
2014-09-02 18:07:02 +05:30
end
end
describe 'on a merge request' do
let(:merge_request) { create(:merge_request, source_project: project, target_project: project) }
2015-04-26 12:48:37 +05:30
let(:note_on_merge_request_path) { namespace_project_merge_request_path(project.namespace, project, merge_request, anchor: "note_#{note.id}") }
before(:each) { allow(note).to receive(:noteable).and_return(merge_request) }
2014-09-02 18:07:02 +05:30
subject { Notify.note_merge_request_email(recipient.id, note.id) }
it_behaves_like 'a note email'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { merge_request }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Merge request link'
it_behaves_like 'an unsubscribeable thread'
2014-09-02 18:07:02 +05:30
it 'has the correct subject' do
2016-06-02 11:05:42 +05:30
is_expected.to have_subject /#{merge_request.title} \(#{merge_request.to_reference}\)/
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the merge request note' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{note_on_merge_request_path}/
2014-09-02 18:07:02 +05:30
end
end
describe 'on an issue' do
let(:issue) { create(:issue, project: project) }
2015-04-26 12:48:37 +05:30
let(:note_on_issue_path) { namespace_project_issue_path(project.namespace, project, issue, anchor: "note_#{note.id}") }
before(:each) { allow(note).to receive(:noteable).and_return(issue) }
2014-09-02 18:07:02 +05:30
subject { Notify.note_issue_email(recipient.id, note.id) }
it_behaves_like 'a note email'
2016-06-02 11:05:42 +05:30
it_behaves_like 'an answer to an existing thread with reply-by-email enabled' do
let(:model) { issue }
end
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Issue link'
it_behaves_like 'an unsubscribeable thread'
2014-09-02 18:07:02 +05:30
it 'has the correct subject' do
2015-04-26 12:48:37 +05:30
is_expected.to have_subject /#{issue.title} \(##{issue.iid}\)/
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the issue note' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{note_on_issue_path}/
2014-09-02 18:07:02 +05:30
end
end
end
end
context 'for a group' do
describe 'group access requested' do
let(:group) { create(:group) }
let(:user) { create(:user) }
let(:group_member) do
group.request_access(user)
group.members.request.find_by(user_id: user.id)
end
subject { Notify.member_access_requested_email('group', group_member.id) }
2014-09-02 18:07:02 +05:30
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
2014-09-02 18:07:02 +05:30
it 'contains all the useful information' do
is_expected.to have_subject "Request to join the #{group.name} group"
is_expected.to have_body_text /#{group.name}/
is_expected.to have_body_text /#{group_group_members_url(group)}/
is_expected.to have_body_text /#{group_member.human_access}/
end
end
2014-09-02 18:07:02 +05:30
describe 'group access denied' do
let(:group) { create(:group) }
let(:user) { create(:user) }
let(:group_member) do
group.request_access(user)
group.members.request.find_by(user_id: user.id)
end
subject { Notify.member_access_denied_email('group', group.id, user.id) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject "Access to the #{group.name} group was denied"
is_expected.to have_body_text /#{group.name}/
is_expected.to have_body_text /#{group.web_url}/
end
2014-09-02 18:07:02 +05:30
end
describe 'group access changed' do
let(:group) { create(:group) }
let(:user) { create(:user) }
let(:group_member) { create(:group_member, group: group, user: user) }
subject { Notify.member_access_granted_email('group', group_member.id) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject "Access to the #{group.name} group was granted"
is_expected.to have_body_text /#{group.name}/
is_expected.to have_body_text /#{group.web_url}/
is_expected.to have_body_text /#{group_member.human_access}/
end
2014-09-02 18:07:02 +05:30
end
def invite_to_group(group:, email:, inviter:)
GroupMember.add_user(group.group_members, 'toto@example.com', Gitlab::Access::DEVELOPER, inviter)
group.group_members.invite.last
end
describe 'group invitation' do
let(:group) { create(:group) }
let(:owner) { create(:user).tap { |u| group.add_user(u, Gitlab::Access::OWNER) } }
let(:group_member) { invite_to_group(group: group, email: 'toto@example.com', inviter: owner) }
subject { Notify.member_invited_email('group', group_member.id, group_member.invite_token) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject "Invitation to join the #{group.name} group"
is_expected.to have_body_text /#{group.name}/
is_expected.to have_body_text /#{group.web_url}/
is_expected.to have_body_text /#{group_member.human_access}/
is_expected.to have_body_text /#{group_member.invite_token}/
end
end
describe 'group invitation accepted' do
let(:group) { create(:group) }
let(:invited_user) { create(:user) }
let(:owner) { create(:user).tap { |u| group.add_user(u, Gitlab::Access::OWNER) } }
let(:group_member) do
invitee = invite_to_group(group: group, email: 'toto@example.com', inviter: owner)
invitee.accept_invite!(invited_user)
invitee
end
subject { Notify.member_invite_accepted_email('group', group_member.id) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject 'Invitation accepted'
is_expected.to have_body_text /#{group.name}/
is_expected.to have_body_text /#{group.web_url}/
is_expected.to have_body_text /#{group_member.invite_email}/
is_expected.to have_body_text /#{invited_user.name}/
end
end
describe 'group invitation declined' do
let(:group) { create(:group) }
let(:owner) { create(:user).tap { |u| group.add_user(u, Gitlab::Access::OWNER) } }
let(:group_member) do
invitee = invite_to_group(group: group, email: 'toto@example.com', inviter: owner)
invitee.decline_invite!
invitee
end
subject { Notify.member_invite_declined_email('group', group.id, group_member.invite_email, owner.id) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
it 'contains all the useful information' do
is_expected.to have_subject 'Invitation declined'
is_expected.to have_body_text /#{group.name}/
is_expected.to have_body_text /#{group.web_url}/
is_expected.to have_body_text /#{group_member.invite_email}/
end
2014-09-02 18:07:02 +05:30
end
end
describe 'confirmation if email changed' do
let(:example_site_path) { root_path }
let(:user) { create(:user, email: 'old-email@mail.com') }
before do
2015-12-23 02:04:40 +05:30
perform_enqueued_jobs do
user.email = "new-email@mail.com"
user.save
end
2014-09-02 18:07:02 +05:30
end
subject { ActionMailer::Base.deliveries.last }
it_behaves_like 'an email sent from GitLab'
it_behaves_like "a user cannot unsubscribe through footer link"
2014-09-02 18:07:02 +05:30
it 'is sent to the new user' do
2015-04-26 12:48:37 +05:30
is_expected.to deliver_to 'new-email@mail.com'
2014-09-02 18:07:02 +05:30
end
it 'has the correct subject' do
2015-04-26 12:48:37 +05:30
is_expected.to have_subject "Confirmation instructions"
2014-09-02 18:07:02 +05:30
end
it 'includes a link to the site' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{example_site_path}/
end
end
describe 'email on push for a created branch' do
let(:example_site_path) { root_path }
let(:user) { create(:user) }
let(:tree_path) { namespace_project_tree_path(project.namespace, project, "master") }
2016-06-02 11:05:42 +05:30
subject { Notify.repository_push_email(project.id, author_id: user.id, ref: 'refs/heads/master', action: :create) }
2015-04-26 12:48:37 +05:30
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
2016-01-29 22:53:50 +05:30
it_behaves_like 'an email with X-GitLab headers containing project details'
it_behaves_like 'an email that contains a header with author username'
2015-12-23 02:04:40 +05:30
2015-04-26 12:48:37 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
expect(sender.display_name).to eq(user.name)
expect(sender.address).to eq(gitlab_sender)
end
it 'has the correct subject' do
is_expected.to have_subject /Pushed new branch master/
end
it 'contains a link to the branch' do
is_expected.to have_body_text /#{tree_path}/
end
end
describe 'email on push for a created tag' do
let(:example_site_path) { root_path }
let(:user) { create(:user) }
let(:tree_path) { namespace_project_tree_path(project.namespace, project, "v1.0") }
2016-06-02 11:05:42 +05:30
subject { Notify.repository_push_email(project.id, author_id: user.id, ref: 'refs/tags/v1.0', action: :create) }
2015-04-26 12:48:37 +05:30
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
2016-01-29 22:53:50 +05:30
it_behaves_like 'an email with X-GitLab headers containing project details'
it_behaves_like 'an email that contains a header with author username'
2015-12-23 02:04:40 +05:30
2015-04-26 12:48:37 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
expect(sender.display_name).to eq(user.name)
expect(sender.address).to eq(gitlab_sender)
end
it 'has the correct subject' do
is_expected.to have_subject /Pushed new tag v1\.0/
end
it 'contains a link to the tag' do
is_expected.to have_body_text /#{tree_path}/
end
end
describe 'email on push for a deleted branch' do
let(:example_site_path) { root_path }
let(:user) { create(:user) }
2016-06-02 11:05:42 +05:30
subject { Notify.repository_push_email(project.id, author_id: user.id, ref: 'refs/heads/master', action: :delete) }
2015-04-26 12:48:37 +05:30
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
2016-01-29 22:53:50 +05:30
it_behaves_like 'an email with X-GitLab headers containing project details'
it_behaves_like 'an email that contains a header with author username'
2015-12-23 02:04:40 +05:30
2015-04-26 12:48:37 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
expect(sender.display_name).to eq(user.name)
expect(sender.address).to eq(gitlab_sender)
end
it 'has the correct subject' do
is_expected.to have_subject /Deleted branch master/
end
end
describe 'email on push for a deleted tag' do
let(:example_site_path) { root_path }
let(:user) { create(:user) }
2016-06-02 11:05:42 +05:30
subject { Notify.repository_push_email(project.id, author_id: user.id, ref: 'refs/tags/v1.0', action: :delete) }
2015-04-26 12:48:37 +05:30
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
2016-01-29 22:53:50 +05:30
it_behaves_like 'an email with X-GitLab headers containing project details'
it_behaves_like 'an email that contains a header with author username'
2015-12-23 02:04:40 +05:30
2015-04-26 12:48:37 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
expect(sender.display_name).to eq(user.name)
expect(sender.address).to eq(gitlab_sender)
end
it 'has the correct subject' do
is_expected.to have_subject /Deleted tag v1\.0/
2014-09-02 18:07:02 +05:30
end
end
describe 'email on push with multiple commits' do
let(:example_site_path) { root_path }
let(:user) { create(:user) }
let(:compare) { Gitlab::Git::Compare.new(project.repository.raw_repository, sample_image_commit.id, sample_commit.id) }
2015-09-11 14:41:01 +05:30
let(:commits) { Commit.decorate(compare.commits, nil) }
let(:diff_path) { namespace_project_compare_path(project.namespace, project, from: Commit.new(compare.base, project), to: Commit.new(compare.head, project)) }
2015-04-26 12:48:37 +05:30
let(:send_from_committer_email) { false }
2016-06-02 11:05:42 +05:30
let(:diff_refs) { [project.merge_base_commit(sample_image_commit.id, sample_commit.id), project.commit(sample_commit.id)] }
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
subject { Notify.repository_push_email(project.id, author_id: user.id, ref: 'refs/heads/master', action: :push, compare: compare, reverse_compare: false, diff_refs: diff_refs, send_from_committer_email: send_from_committer_email) }
2014-09-02 18:07:02 +05:30
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like "a user cannot unsubscribe through footer link"
2016-01-29 22:53:50 +05:30
it_behaves_like 'an email with X-GitLab headers containing project details'
it_behaves_like 'an email that contains a header with author username'
2015-12-23 02:04:40 +05:30
2014-09-02 18:07:02 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
2015-04-26 12:48:37 +05:30
expect(sender.display_name).to eq(user.name)
expect(sender.address).to eq(gitlab_sender)
2014-09-02 18:07:02 +05:30
end
it 'has the correct subject' do
2015-04-26 12:48:37 +05:30
is_expected.to have_subject /\[#{project.path_with_namespace}\]\[master\] #{commits.length} commits:/
2014-09-02 18:07:02 +05:30
end
it 'includes commits list' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /Change some files/
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
it 'includes diffs with character-level highlighting' do
is_expected.to have_body_text /def<\/span> <span class=\"nf\">archive_formats_regex/
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the diff' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{diff_path}/
end
2016-06-02 11:05:42 +05:30
it 'does not contain the misleading footer' do
2015-04-26 12:48:37 +05:30
is_expected.not_to have_body_text /you are a member of/
end
context "when set to send from committer email if domain matches" do
let(:send_from_committer_email) { true }
before do
allow(Gitlab.config.gitlab).to receive(:host).and_return("gitlab.corp.company.com")
end
context "when the committer email domain is within the GitLab domain" do
before do
user.update_attribute(:email, "user@company.com")
2015-09-25 12:07:36 +05:30
user.confirm
2015-04-26 12:48:37 +05:30
end
it "is sent from the committer email" do
sender = subject.header[:from].addrs[0]
expect(sender.address).to eq(user.email)
end
it "is set to reply to the committer email" do
sender = subject.header[:reply_to].addrs[0]
expect(sender.address).to eq(user.email)
end
end
context "when the committer email domain is not completely within the GitLab domain" do
before do
user.update_attribute(:email, "user@something.company.com")
2015-09-25 12:07:36 +05:30
user.confirm
2015-04-26 12:48:37 +05:30
end
it "is sent from the default email" do
sender = subject.header[:from].addrs[0]
expect(sender.address).to eq(gitlab_sender)
end
it "is set to reply to the default email" do
sender = subject.header[:reply_to].addrs[0]
expect(sender.address).to eq(gitlab_sender_reply_to)
end
end
context "when the committer email domain is outside the GitLab domain" do
before do
user.update_attribute(:email, "user@mpany.com")
2015-09-25 12:07:36 +05:30
user.confirm
2015-04-26 12:48:37 +05:30
end
it "is sent from the default email" do
sender = subject.header[:from].addrs[0]
expect(sender.address).to eq(gitlab_sender)
end
it "is set to reply to the default email" do
sender = subject.header[:reply_to].addrs[0]
expect(sender.address).to eq(gitlab_sender_reply_to)
end
end
2014-09-02 18:07:02 +05:30
end
end
describe 'email on push with a single commit' do
let(:example_site_path) { root_path }
let(:user) { create(:user) }
let(:compare) { Gitlab::Git::Compare.new(project.repository.raw_repository, sample_commit.parent_id, sample_commit.id) }
2015-09-11 14:41:01 +05:30
let(:commits) { Commit.decorate(compare.commits, nil) }
2015-04-26 12:48:37 +05:30
let(:diff_path) { namespace_project_commit_path(project.namespace, project, commits.first) }
2016-06-02 11:05:42 +05:30
let(:diff_refs) { [project.merge_base_commit(sample_commit.parent_id, sample_commit.id), project.commit(sample_commit.id)] }
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
subject { Notify.repository_push_email(project.id, author_id: user.id, ref: 'refs/heads/master', action: :push, compare: compare, diff_refs: diff_refs) }
2014-09-02 18:07:02 +05:30
2015-12-23 02:04:40 +05:30
it_behaves_like 'it should show Gmail Actions View Commit link'
it_behaves_like "a user cannot unsubscribe through footer link"
2016-01-29 22:53:50 +05:30
it_behaves_like 'an email with X-GitLab headers containing project details'
it_behaves_like 'an email that contains a header with author username'
2015-12-23 02:04:40 +05:30
2014-09-02 18:07:02 +05:30
it 'is sent as the author' do
sender = subject.header[:from].addrs[0]
2015-04-26 12:48:37 +05:30
expect(sender.display_name).to eq(user.name)
expect(sender.address).to eq(gitlab_sender)
2014-09-02 18:07:02 +05:30
end
it 'has the correct subject' do
2015-04-26 12:48:37 +05:30
is_expected.to have_subject /#{commits.first.title}/
2014-09-02 18:07:02 +05:30
end
it 'includes commits list' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /Change some files/
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
it 'includes diffs with character-level highlighting' do
is_expected.to have_body_text /def<\/span> <span class=\"nf\">archive_formats_regex/
2014-09-02 18:07:02 +05:30
end
it 'contains a link to the diff' do
2015-04-26 12:48:37 +05:30
is_expected.to have_body_text /#{diff_path}/
2014-09-02 18:07:02 +05:30
end
end
2015-12-23 02:04:40 +05:30
2014-09-02 18:07:02 +05:30
end