2012-05-14 14:05:32 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Notify do
|
|
|
|
include EmailSpec::Helpers
|
|
|
|
include EmailSpec::Matchers
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
let(:gitlab_sender) { Gitlab.config.gitlab.email_from }
|
2012-11-05 22:31:55 -05:00
|
|
|
let(:recipient) { create(:user, email: 'recipient@example.com') }
|
2014-01-22 14:03:52 -05:00
|
|
|
let(:project) { create(:project) }
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
shared_examples 'a multiple recipients email' do
|
|
|
|
it 'is sent to the given recipient' do
|
2014-06-18 07:41:12 -04:00
|
|
|
should deliver_to recipient.email
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
shared_examples 'an email sent from GitLab' do
|
|
|
|
it 'is sent from GitLab' do
|
|
|
|
sender = subject.header[:from].addrs[0]
|
|
|
|
sender.display_name.should eq('GitLab')
|
|
|
|
sender.address.should eq(gitlab_sender)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
describe 'for new users, the email' do
|
2012-07-02 14:51:48 -04:00
|
|
|
let(:example_site_path) { root_path }
|
2013-06-14 05:58:12 -04:00
|
|
|
let(:new_user) { create(:user, email: 'newguy@example.com', created_by_id: 1) }
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2012-05-14 23:07:36 -04:00
|
|
|
subject { Notify.new_user_email(new_user.id, new_user.password) }
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it_behaves_like 'an email sent from GitLab'
|
|
|
|
|
2012-05-14 14:05:32 -04:00
|
|
|
it 'is sent to the new user' do
|
|
|
|
should deliver_to new_user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-02-17 10:45:28 -05:00
|
|
|
should have_subject /^Account was created for you$/i
|
2012-05-14 14:05:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the new user\'s login name' do
|
|
|
|
should have_body_text /#{new_user.email}/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the new user\'s password' do
|
2013-06-14 05:58:12 -04:00
|
|
|
should have_body_text /password/
|
2012-05-14 14:05:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes a link to the site' do
|
2012-07-02 14:51:48 -04:00
|
|
|
should have_body_text /#{example_site_path}/
|
2012-05-14 14:05:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-06 08:30:48 -05:00
|
|
|
|
|
|
|
describe 'for users that signed up, the email' do
|
|
|
|
let(:example_site_path) { root_path }
|
|
|
|
let(:new_user) { create(:user, email: 'newguy@example.com', password: "securePassword") }
|
|
|
|
|
|
|
|
subject { Notify.new_user_email(new_user.id, new_user.password) }
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it_behaves_like 'an email sent from GitLab'
|
|
|
|
|
2012-11-06 08:30:48 -05:00
|
|
|
it 'is sent to the new user' do
|
|
|
|
should deliver_to new_user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-02-17 10:45:28 -05:00
|
|
|
should have_subject /^Account was created for you$/i
|
2012-11-06 08:30:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the new user\'s login name' do
|
|
|
|
should have_body_text /#{new_user.email}/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not contain the new user\'s password' do
|
2013-06-14 05:58:12 -04:00
|
|
|
should_not have_body_text /password/
|
2012-11-06 08:30:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes a link to the site' do
|
|
|
|
should have_body_text /#{example_site_path}/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-19 14:00:41 -04:00
|
|
|
describe 'user added ssh key' do
|
|
|
|
let(:key) { create(:personal_key) }
|
|
|
|
|
|
|
|
subject { Notify.new_ssh_key_email(key.id) }
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it_behaves_like 'an email sent from GitLab'
|
|
|
|
|
2013-03-19 14:00:41 -04:00
|
|
|
it 'is sent to the new user' do
|
|
|
|
should deliver_to key.user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-02-17 10:45:28 -05:00
|
|
|
should have_subject /^SSH key was added to your account$/i
|
2013-03-19 14:00:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the new ssh key title' do
|
|
|
|
should have_body_text /#{key.title}/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes a link to ssh keys page' do
|
2013-06-24 12:24:27 -04:00
|
|
|
should have_body_text /#{profile_keys_path}/
|
2013-03-19 14:00:41 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-08 22:08:49 -05:00
|
|
|
describe 'user added email' do
|
|
|
|
let(:email) { create(:email) }
|
|
|
|
|
|
|
|
subject { Notify.new_email_email(email.id) }
|
|
|
|
|
|
|
|
it 'is sent to the new user' do
|
|
|
|
should deliver_to email.user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-02-25 10:49:20 -05:00
|
|
|
should have_subject /^Email was added to your account$/i
|
2014-02-08 22:08:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the new email address' do
|
|
|
|
should have_body_text /#{email.email}/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes a link to emails page' do
|
|
|
|
should have_body_text /#{profile_emails_path}/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
context 'for a project' do
|
|
|
|
describe 'items that are assignable, the email' do
|
2014-02-17 12:49:42 -05:00
|
|
|
let(:current_user) { create(:user, email: "current@email.com") }
|
2012-11-05 22:31:55 -05:00
|
|
|
let(:assignee) { create(:user, email: 'assignee@example.com') }
|
|
|
|
let(:previous_assignee) { create(:user, name: 'Previous Assignee') }
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
shared_examples 'an assignee email' do
|
2014-02-17 12:49:42 -05:00
|
|
|
it 'is sent as the author' do
|
|
|
|
sender = subject.header[:from].addrs[0]
|
|
|
|
sender.display_name.should eq(current_user.name)
|
|
|
|
sender.address.should eq(gitlab_sender)
|
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
it 'is sent to the assignee' do
|
2014-06-18 07:41:12 -04:00
|
|
|
should deliver_to assignee.email
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
end
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
context 'for issues' do
|
2014-02-18 08:44:00 -05:00
|
|
|
let(:issue) { create(:issue, author: current_user, assignee: assignee, project: project) }
|
|
|
|
let(:issue_with_description) { create(:issue, author: current_user, assignee: assignee, project: project, description: Faker::Lorem.sentence) }
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
describe 'that are new' do
|
2013-03-28 07:24:01 -04:00
|
|
|
subject { Notify.new_issue_email(issue.assignee_id, issue.id) }
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
it_behaves_like 'an assignee email'
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
it 'has the correct subject' do
|
2014-02-17 12:49:42 -05:00
|
|
|
should have_subject /#{project.name} \| #{issue.title} \(##{issue.iid}\)/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
it 'contains a link to the new issue' do
|
2012-07-02 14:51:48 -04:00
|
|
|
should have_body_text /#{project_issue_path project, issue}/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
2014-06-18 07:41:12 -04:00
|
|
|
|
|
|
|
it 'has the correct message-id set' do
|
|
|
|
should have_header 'Message-ID', "<issue_#{issue.id}@#{Gitlab.config.gitlab.host}>"
|
|
|
|
end
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
2012-05-14 14:05:32 -04:00
|
|
|
|
2014-02-18 08:44:00 -05:00
|
|
|
describe 'that are new with a description' do
|
|
|
|
subject { Notify.new_issue_email(issue_with_description.assignee_id, issue_with_description.id) }
|
|
|
|
|
|
|
|
it 'contains the description' do
|
|
|
|
should have_body_text /#{issue_with_description.description}/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
describe 'that have been reassigned' do
|
2014-02-17 12:49:42 -05:00
|
|
|
subject { Notify.reassigned_issue_email(recipient.id, issue.id, previous_assignee.id, current_user) }
|
2012-05-14 18:03:30 -04:00
|
|
|
|
|
|
|
it_behaves_like 'a multiple recipients email'
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it 'is sent as the author' do
|
|
|
|
sender = subject.header[:from].addrs[0]
|
|
|
|
sender.display_name.should eq(current_user.name)
|
|
|
|
sender.address.should eq(gitlab_sender)
|
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
it 'has the correct subject' do
|
2014-02-17 12:49:42 -05:00
|
|
|
should have_subject /#{issue.title} \(##{issue.iid}\)/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the name of the previous assignee' do
|
2012-05-14 23:27:52 -04:00
|
|
|
should have_body_text /#{previous_assignee.name}/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the name of the new assignee' do
|
|
|
|
should have_body_text /#{assignee.name}/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains a link to the issue' do
|
2012-07-02 14:51:48 -04:00
|
|
|
should have_body_text /#{project_issue_path project, issue}/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
2014-06-18 07:41:12 -04:00
|
|
|
|
|
|
|
it 'has the correct reference set' do
|
|
|
|
should have_header 'References', "<issue_#{issue.id}@#{Gitlab.config.gitlab.host}>"
|
|
|
|
end
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
2012-08-29 02:49:39 -04:00
|
|
|
|
|
|
|
describe 'status changed' do
|
|
|
|
let(:status) { 'closed' }
|
|
|
|
subject { Notify.issue_status_changed_email(recipient.id, issue.id, status, current_user) }
|
2012-11-05 22:31:55 -05:00
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it 'is sent as the author' do
|
|
|
|
sender = subject.header[:from].addrs[0]
|
|
|
|
sender.display_name.should eq(current_user.name)
|
|
|
|
sender.address.should eq(gitlab_sender)
|
|
|
|
end
|
|
|
|
|
2012-08-29 02:49:39 -04:00
|
|
|
it 'has the correct subject' do
|
2014-02-17 12:49:42 -05:00
|
|
|
should have_subject /#{issue.title} \(##{issue.iid}\)/i
|
2012-08-29 02:49:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the new status' do
|
|
|
|
should have_body_text /#{status}/i
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the user name' do
|
|
|
|
should have_body_text /#{current_user.name}/i
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains a link to the issue' do
|
|
|
|
should have_body_text /#{project_issue_path project, issue}/
|
|
|
|
end
|
2014-06-18 07:41:12 -04:00
|
|
|
|
|
|
|
it 'has the correct reference set' do
|
|
|
|
should have_header 'References', "<issue_#{issue.id}@#{Gitlab.config.gitlab.host}>"
|
|
|
|
end
|
2012-08-29 02:49:39 -04:00
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for merge requests' do
|
2014-03-24 10:11:35 -04:00
|
|
|
let(:merge_author) { create(:user) }
|
2014-02-17 12:49:42 -05:00
|
|
|
let(:merge_request) { create(:merge_request, author: current_user, assignee: assignee, source_project: project, target_project: project) }
|
2014-02-18 08:44:00 -05:00
|
|
|
let(:merge_request_with_description) { create(:merge_request, author: current_user, assignee: assignee, source_project: project, target_project: project, description: Faker::Lorem.sentence) }
|
2012-05-14 18:03:30 -04:00
|
|
|
|
|
|
|
describe 'that are new' do
|
2013-03-28 07:24:01 -04:00
|
|
|
subject { Notify.new_merge_request_email(merge_request.assignee_id, merge_request.id) }
|
2012-05-14 18:03:30 -04:00
|
|
|
|
|
|
|
it_behaves_like 'an assignee email'
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-05-09 02:46:23 -04:00
|
|
|
should have_subject /#{merge_request.title} \(##{merge_request.iid}\)/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains a link to the new merge request' do
|
2012-07-02 14:51:48 -04:00
|
|
|
should have_body_text /#{project_merge_request_path(project, merge_request)}/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the source branch for the merge request' do
|
|
|
|
should have_body_text /#{merge_request.source_branch}/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the target branch for the merge request' do
|
|
|
|
should have_body_text /#{merge_request.target_branch}/
|
|
|
|
end
|
2014-03-04 09:14:58 -05:00
|
|
|
|
|
|
|
it 'has the correct message-id set' do
|
|
|
|
should have_header 'Message-ID', "<merge_request_#{merge_request.id}@#{Gitlab.config.gitlab.host}>"
|
|
|
|
end
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
2014-02-18 08:44:00 -05:00
|
|
|
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) }
|
|
|
|
|
|
|
|
it 'contains the description' do
|
|
|
|
should have_body_text /#{merge_request_with_description.description}/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
describe 'that are reassigned' do
|
2014-02-17 12:49:42 -05:00
|
|
|
subject { Notify.reassigned_merge_request_email(recipient.id, merge_request.id, previous_assignee.id, current_user.id) }
|
2012-05-14 18:03:30 -04:00
|
|
|
|
|
|
|
it_behaves_like 'a multiple recipients email'
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it 'is sent as the author' do
|
|
|
|
sender = subject.header[:from].addrs[0]
|
|
|
|
sender.display_name.should eq(current_user.name)
|
|
|
|
sender.address.should eq(gitlab_sender)
|
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
it 'has the correct subject' do
|
2014-05-09 02:46:23 -04:00
|
|
|
should have_subject /#{merge_request.title} \(##{merge_request.iid}\)/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the name of the previous assignee' do
|
2012-05-14 23:42:47 -04:00
|
|
|
should have_body_text /#{previous_assignee.name}/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the name of the new assignee' do
|
|
|
|
should have_body_text /#{assignee.name}/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains a link to the merge request' do
|
2012-07-02 14:51:48 -04:00
|
|
|
should have_body_text /#{project_merge_request_path project, merge_request}/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
2014-03-24 10:11:35 -04:00
|
|
|
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'
|
|
|
|
|
|
|
|
it 'is sent as the merge author' do
|
|
|
|
sender = subject.header[:from].addrs[0]
|
|
|
|
sender.display_name.should eq(merge_author.name)
|
|
|
|
sender.address.should eq(gitlab_sender)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-05-09 02:46:23 -04:00
|
|
|
should have_subject /#{merge_request.title} \(##{merge_request.iid}\)/
|
2014-03-24 10:11:35 -04:00
|
|
|
end
|
2012-05-14 18:03:30 -04:00
|
|
|
|
2014-03-24 10:11:35 -04:00
|
|
|
it 'contains the new status' do
|
|
|
|
should have_body_text /merged/i
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains a link to the merge request' do
|
|
|
|
should have_body_text /#{project_merge_request_path project, merge_request}/
|
|
|
|
end
|
2014-06-18 07:41:12 -04:00
|
|
|
|
|
|
|
it 'has the correct reference set' do
|
|
|
|
should have_header 'References', "<merge_request_#{merge_request.id}@#{Gitlab.config.gitlab.host}>"
|
|
|
|
end
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
end
|
2012-05-14 14:05:32 -04:00
|
|
|
end
|
|
|
|
|
2013-06-22 03:56:51 -04:00
|
|
|
describe 'project was moved' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
subject { Notify.project_was_moved_email(project.id, user.id) }
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it_behaves_like 'an email sent from GitLab'
|
|
|
|
|
2013-06-22 03:56:51 -04:00
|
|
|
it 'has the correct subject' do
|
2013-11-08 10:04:36 -05:00
|
|
|
should have_subject /Project was moved/
|
2013-06-22 03:56:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains name of project' do
|
|
|
|
should have_body_text /#{project.name_with_namespace}/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains new user role' do
|
|
|
|
should have_body_text /#{project.ssh_url_to_repo}/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-26 17:13:03 -04:00
|
|
|
describe 'project access changed' do
|
2012-11-23 15:25:28 -05:00
|
|
|
let(:project) { create(:project) }
|
2012-11-05 22:31:55 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:users_project) { create(:users_project,
|
|
|
|
project: project,
|
|
|
|
user: user) }
|
2012-08-26 17:13:03 -04:00
|
|
|
subject { Notify.project_access_granted_email(users_project.id) }
|
2014-02-17 12:49:42 -05:00
|
|
|
|
|
|
|
it_behaves_like 'an email sent from GitLab'
|
|
|
|
|
2012-08-26 17:13:03 -04:00
|
|
|
it 'has the correct subject' do
|
2013-11-08 10:04:36 -05:00
|
|
|
should have_subject /Access to project was granted/
|
2012-08-26 17:13:03 -04:00
|
|
|
end
|
|
|
|
it 'contains name of project' do
|
|
|
|
should have_body_text /#{project.name}/
|
|
|
|
end
|
|
|
|
it 'contains new user role' do
|
2013-08-20 08:59:45 -04:00
|
|
|
should have_body_text /#{users_project.human_access}/
|
2012-08-26 17:13:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
context 'items that are noteable, the email for a note' do
|
2012-11-05 22:31:55 -05:00
|
|
|
let(:note_author) { create(:user, name: 'author_name') }
|
|
|
|
let(:note) { create(:note, project: project, author: note_author) }
|
2012-05-14 18:03:30 -04:00
|
|
|
|
2012-05-15 18:48:00 -04:00
|
|
|
before :each do
|
2013-01-15 09:36:35 -05:00
|
|
|
Note.stub(:find).with(note.id).and_return(note)
|
2012-05-15 18:48:00 -04:00
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
shared_examples 'a note email' do
|
2014-02-17 12:49:42 -05:00
|
|
|
it 'is sent as the author' do
|
|
|
|
sender = subject.header[:from].addrs[0]
|
|
|
|
sender.display_name.should eq(note_author.name)
|
|
|
|
sender.address.should eq(gitlab_sender)
|
|
|
|
end
|
|
|
|
|
2012-05-14 18:03:30 -04:00
|
|
|
it 'is sent to the given recipient' do
|
2014-06-18 07:41:12 -04:00
|
|
|
should deliver_to recipient.email
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the message from the note' do
|
|
|
|
should have_body_text /#{note.note}/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'on a commit' do
|
2013-04-01 12:06:47 -04:00
|
|
|
let(:commit) { project.repository.commit }
|
2013-01-15 09:36:35 -05:00
|
|
|
|
2012-10-13 10:23:12 -04:00
|
|
|
before(:each) { note.stub(:noteable).and_return(commit) }
|
2012-05-14 18:03:30 -04:00
|
|
|
|
2013-02-01 08:37:21 -05:00
|
|
|
subject { Notify.note_commit_email(recipient.id, note.id) }
|
2012-05-14 18:03:30 -04:00
|
|
|
|
|
|
|
it_behaves_like 'a note email'
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-02-17 12:49:42 -05:00
|
|
|
should have_subject /#{commit.title} \(#{commit.short_id}\)/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains a link to the commit' do
|
2013-04-01 12:06:47 -04:00
|
|
|
should have_body_text commit.short_id
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'on a merge request' do
|
2013-04-25 10:15:33 -04:00
|
|
|
let(:merge_request) { create(:merge_request, source_project: project, target_project: project) }
|
2012-08-10 18:07:50 -04:00
|
|
|
let(:note_on_merge_request_path) { project_merge_request_path(project, merge_request, anchor: "note_#{note.id}") }
|
2012-05-14 18:03:30 -04:00
|
|
|
before(:each) { note.stub(:noteable).and_return(merge_request) }
|
|
|
|
|
2012-05-15 18:48:00 -04:00
|
|
|
subject { Notify.note_merge_request_email(recipient.id, note.id) }
|
2012-05-14 18:03:30 -04:00
|
|
|
|
|
|
|
it_behaves_like 'a note email'
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-05-09 02:46:23 -04:00
|
|
|
should have_subject /#{merge_request.title} \(##{merge_request.iid}\)/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains a link to the merge request note' do
|
2012-07-02 14:51:48 -04:00
|
|
|
should have_body_text /#{note_on_merge_request_path}/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'on an issue' do
|
2012-11-05 22:31:55 -05:00
|
|
|
let(:issue) { create(:issue, project: project) }
|
2012-08-10 18:07:50 -04:00
|
|
|
let(:note_on_issue_path) { project_issue_path(project, issue, anchor: "note_#{note.id}") }
|
2012-05-14 18:03:30 -04:00
|
|
|
before(:each) { note.stub(:noteable).and_return(issue) }
|
2012-05-15 18:50:36 -04:00
|
|
|
|
|
|
|
subject { Notify.note_issue_email(recipient.id, note.id) }
|
2012-05-14 18:03:30 -04:00
|
|
|
|
|
|
|
it_behaves_like 'a note email'
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-02-17 12:49:42 -05:00
|
|
|
should have_subject /#{issue.title} \(##{issue.iid}\)/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains a link to the issue note' do
|
2012-07-02 14:51:48 -04:00
|
|
|
should have_body_text /#{note_on_issue_path}/
|
2012-05-14 18:03:30 -04:00
|
|
|
end
|
|
|
|
end
|
2012-05-14 14:05:32 -04:00
|
|
|
end
|
|
|
|
end
|
2013-09-12 12:00:32 -04:00
|
|
|
|
|
|
|
describe 'group access changed' do
|
|
|
|
let(:group) { create(:group) }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:membership) { create(:users_group, group: group, user: user) }
|
|
|
|
|
|
|
|
subject { Notify.group_access_granted_email(membership.id) }
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it_behaves_like 'an email sent from GitLab'
|
|
|
|
|
2013-09-12 12:00:32 -04:00
|
|
|
it 'has the correct subject' do
|
2013-11-08 10:04:36 -05:00
|
|
|
should have_subject /Access to group was granted/
|
2013-09-12 12:00:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains name of project' do
|
|
|
|
should have_body_text /#{group.name}/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains new user role' do
|
|
|
|
should have_body_text /#{membership.human_access}/
|
|
|
|
end
|
|
|
|
end
|
2013-11-08 11:29:26 -05:00
|
|
|
|
|
|
|
describe 'confirmation if email changed' do
|
|
|
|
let(:example_site_path) { root_path }
|
|
|
|
let(:user) { create(:user, email: 'old-email@mail.com') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
user.email = "new-email@mail.com"
|
|
|
|
user.save
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { ActionMailer::Base.deliveries.last }
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it_behaves_like 'an email sent from GitLab'
|
|
|
|
|
2013-11-08 11:29:26 -05:00
|
|
|
it 'is sent to the new user' do
|
|
|
|
should deliver_to 'new-email@mail.com'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
|
|
|
should have_subject "Confirmation instructions"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes a link to the site' do
|
|
|
|
should have_body_text /#{example_site_path}/
|
|
|
|
end
|
|
|
|
end
|
2013-12-18 06:30:04 -05:00
|
|
|
|
2014-04-10 12:41:20 -04:00
|
|
|
describe 'email on push with multiple commits' do
|
2013-12-18 06:30:04 -05:00
|
|
|
let(:example_site_path) { root_path }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:compare) { Gitlab::Git::Compare.new(project.repository.raw_repository, 'cd5c4bac', 'b1e6a9db') }
|
2014-02-18 05:12:01 -05:00
|
|
|
let(:commits) { Commit.decorate(compare.commits) }
|
|
|
|
let(:diff_path) { project_compare_path(project, from: commits.first, to: commits.last) }
|
2013-12-18 06:30:04 -05:00
|
|
|
|
|
|
|
subject { Notify.repository_push_email(project.id, 'devs@company.name', user.id, 'master', compare) }
|
|
|
|
|
2014-02-17 12:49:42 -05:00
|
|
|
it 'is sent as the author' do
|
|
|
|
sender = subject.header[:from].addrs[0]
|
|
|
|
sender.display_name.should eq(user.name)
|
|
|
|
sender.address.should eq(gitlab_sender)
|
|
|
|
end
|
|
|
|
|
2013-12-18 06:30:04 -05:00
|
|
|
it 'is sent to recipient' do
|
2014-06-18 07:41:12 -04:00
|
|
|
should deliver_to 'devs@company.name'
|
2013-12-18 06:30:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-06-11 12:37:29 -04:00
|
|
|
should have_subject /#{commits.length} new commits pushed to repository/
|
2013-12-18 06:30:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes commits list' do
|
|
|
|
should have_body_text /tree css fixes/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes diffs' do
|
|
|
|
should have_body_text /Checkout wiki pages for installation information/
|
|
|
|
end
|
2014-02-18 05:12:01 -05:00
|
|
|
|
|
|
|
it 'contains a link to the diff' do
|
|
|
|
should have_body_text /#{diff_path}/
|
|
|
|
end
|
2013-12-18 06:30:04 -05:00
|
|
|
end
|
2014-04-10 12:41:20 -04:00
|
|
|
|
|
|
|
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, '8716fc78', 'b1e6a9db') }
|
|
|
|
let(:commits) { Commit.decorate(compare.commits) }
|
|
|
|
let(:diff_path) { project_commit_path(project, commits.first) }
|
|
|
|
|
|
|
|
subject { Notify.repository_push_email(project.id, 'devs@company.name', user.id, 'master', compare) }
|
|
|
|
|
|
|
|
it 'is sent as the author' do
|
|
|
|
sender = subject.header[:from].addrs[0]
|
|
|
|
sender.display_name.should eq(user.name)
|
|
|
|
sender.address.should eq(gitlab_sender)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is sent to recipient' do
|
2014-06-18 07:41:12 -04:00
|
|
|
should deliver_to 'devs@company.name'
|
2014-04-10 12:41:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the correct subject' do
|
2014-06-11 12:37:29 -04:00
|
|
|
should have_subject /#{commits.first.title}/
|
2014-04-10 12:41:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes commits list' do
|
|
|
|
should have_body_text /tree css fixes/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes diffs' do
|
|
|
|
should have_body_text /Checkout wiki pages for installation information/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains a link to the diff' do
|
|
|
|
should have_body_text /#{diff_path}/
|
|
|
|
end
|
|
|
|
end
|
2012-05-14 14:05:32 -04:00
|
|
|
end
|