2019-10-14 08:54:58 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-10-20 08:47:26 +00:00
|
|
|
require 'rails_helper'
|
2019-10-14 08:54:58 +00:00
|
|
|
|
|
|
|
RSpec.describe 'Confirmation Instructions', type: :mailer do
|
|
|
|
describe :notify do
|
2020-03-07 06:48:16 +00:00
|
|
|
let(:account) { create(:account) }
|
2021-12-09 05:41:46 +00:00
|
|
|
let!(:confirmable_user) { create(:user, inviter: inviter_val, account: account) }
|
2019-10-14 08:54:58 +00:00
|
|
|
let(:inviter_val) { nil }
|
2021-12-09 05:41:46 +00:00
|
|
|
let(:mail) { Devise::Mailer.confirmation_instructions(confirmable_user.reload, nil, {}) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
# to verify the token in email
|
|
|
|
confirmable_user.send(:generate_confirmation_token)
|
|
|
|
end
|
2019-10-14 08:54:58 +00:00
|
|
|
|
|
|
|
it 'has the correct header data' do
|
|
|
|
expect(mail.reply_to).to contain_exactly('accounts@chatwoot.com')
|
|
|
|
expect(mail.to).to contain_exactly(confirmable_user.email)
|
|
|
|
expect(mail.subject).to eq('Confirmation Instructions')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'uses the user\'s name' do
|
2019-12-03 17:24:08 +00:00
|
|
|
expect(mail.body).to match("Welcome, #{CGI.escapeHTML(confirmable_user.name)}!")
|
2019-10-14 08:54:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not refer to the inviter and their account' do
|
|
|
|
expect(mail.body).to_not match('has invited you to try out Chatwoot!')
|
|
|
|
end
|
|
|
|
|
2021-12-09 05:41:46 +00:00
|
|
|
it 'sends a confirmation link' do
|
|
|
|
expect(mail.body).to include("app/auth/confirmation?confirmation_token=#{confirmable_user.confirmation_token}")
|
|
|
|
expect(mail.body).not_to include('app/auth/password/edit')
|
|
|
|
end
|
|
|
|
|
2019-10-14 08:54:58 +00:00
|
|
|
context 'when there is an inviter' do
|
2020-03-07 06:48:16 +00:00
|
|
|
let(:inviter_val) { create(:user, :administrator, skip_confirmation: true, account: account) }
|
2019-10-14 08:54:58 +00:00
|
|
|
|
|
|
|
it 'refers to the inviter and their account' do
|
|
|
|
expect(mail.body).to match(
|
2021-06-08 17:15:01 +00:00
|
|
|
"#{CGI.escapeHTML(inviter_val.name)}, with #{CGI.escapeHTML(account.name)}, has invited you to try out Chatwoot!"
|
2019-10-14 08:54:58 +00:00
|
|
|
)
|
|
|
|
end
|
2021-12-09 05:41:46 +00:00
|
|
|
|
|
|
|
it 'sends a password reset link' do
|
|
|
|
expect(mail.body).to include('app/auth/password/edit?reset_password_token')
|
|
|
|
expect(mail.body).not_to include('app/auth/confirmation')
|
|
|
|
end
|
2019-10-14 08:54:58 +00:00
|
|
|
end
|
2021-12-16 14:02:49 +00:00
|
|
|
|
|
|
|
context 'when user updates the email' do
|
|
|
|
before do
|
|
|
|
confirmable_user.update!(email: 'user@example.com')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends a confirmation link' do
|
|
|
|
confirmation_mail = Devise::Mailer.confirmation_instructions(confirmable_user.reload, nil, {})
|
|
|
|
|
|
|
|
expect(confirmation_mail.body).to include('app/auth/confirmation?confirmation_token')
|
|
|
|
expect(confirmation_mail.body).not_to include('app/auth/password/edit')
|
|
|
|
expect(confirmable_user.unconfirmed_email.blank?).to be false
|
|
|
|
end
|
|
|
|
end
|
2019-10-14 08:54:58 +00:00
|
|
|
end
|
|
|
|
end
|