debian-mirror-gitlab/spec/mailers/emails/profile_spec.rb

119 lines
3.6 KiB
Ruby
Raw Normal View History

2016-04-02 18:10:28 +05:30
require 'spec_helper'
require 'email_spec'
2017-08-17 22:00:37 +05:30
describe Emails::Profile do
2016-04-02 18:10:28 +05:30
include EmailSpec::Matchers
include_context 'gitlab email notification'
2017-08-17 22:00:37 +05:30
shared_examples 'a new user email' do
it 'is sent to the new user with the correct subject and body' do
aggregate_failures do
is_expected.to deliver_to new_user_address
is_expected.to have_subject(/^Account was created for you$/i)
is_expected.to have_body_text(new_user_address)
end
end
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
describe 'for new users, the email' do
let(:example_site_path) { root_path }
let(:new_user) { create(:user, email: new_user_address, created_by_id: 1) }
let(:token) { 'kETLwRaayvigPq_x3SNM' }
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
subject { Notify.new_user_email(new_user.id, token) }
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'a new user email'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like 'a user cannot unsubscribe through footer link'
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'contains the password text' do
is_expected.to have_body_text /Click here to set your password/
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'includes a link for user to set password' do
params = "reset_password_token=#{token}"
is_expected.to have_body_text(
%r{http://#{Gitlab.config.gitlab.host}(:\d+)?/users/password/edit\?#{params}}
)
2016-04-02 18:10:28 +05:30
end
2017-08-17 22:00:37 +05:30
it 'explains the reset link expiration' do
is_expected.to have_body_text(/This link is valid for \d+ (hours?|days?)/)
is_expected.to have_body_text(new_user_password_url)
is_expected.to have_body_text(/\?user_email=.*%40.*/)
end
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
describe 'for users that signed up, the email' do
let(:example_site_path) { root_path }
let(:new_user) { create(:user, email: new_user_address, password: "securePassword") }
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
subject { Notify.new_user_email(new_user.id) }
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'a new user email'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like 'a user cannot unsubscribe through footer link'
it 'does not contain the new user\'s password' do
is_expected.not_to have_body_text /password/
2016-04-02 18:10:28 +05:30
end
2017-08-17 22:00:37 +05:30
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
describe 'user added ssh key' do
let(:key) { create(:personal_key) }
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
subject { Notify.new_ssh_key_email(key.id) }
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +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'
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'is sent to the new user' do
is_expected.to deliver_to key.user.email
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'has the correct subject' do
is_expected.to have_subject /^SSH key was added to your account$/i
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'contains the new ssh key title' do
is_expected.to have_body_text /#{key.title}/
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'includes a link to ssh keys page' do
is_expected.to have_body_text /#{profile_keys_path}/
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
context 'with SSH key that does not exist' do
it { expect { Notify.new_ssh_key_email('foo') }.not_to raise_error }
2016-04-02 18:10:28 +05:30
end
2017-08-17 22:00:37 +05:30
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
describe 'user added email' do
let(:email) { create(:email) }
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
subject { Notify.new_email_email(email.id) }
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like 'a user cannot unsubscribe through footer link'
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'is sent to the new user' do
is_expected.to deliver_to email.user.email
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'has the correct subject' do
is_expected.to have_subject /^Email was added to your account$/i
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'contains the new email address' do
is_expected.to have_body_text /#{email.email}/
end
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
it 'includes a link to emails page' do
is_expected.to have_body_text /#{profile_emails_path}/
2016-04-02 18:10:28 +05:30
end
end
end