Chatwoot/spec/mailers/confirmation_instructions_spec.rb
Anto Dominic 4e9290ad76 Send emails via sidekiq (#380)
* add sidekiq web view if the user is an administrator

* add sidekiq setup configuration and support

* update devise to use delivery_later method and update test

* update conversation to use deliver_later instead of deliver

* Update Routes

* Add Procfile for Heroku One-Click Start

* updating docs

* update concurrency and Procfile for supporting Heroku Free Dyno

* update Procfile.dev
2019-12-25 03:03:02 +05:30

37 lines
1.2 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Confirmation Instructions', type: :mailer do
describe :notify do
let(:confirmable_user) { FactoryBot.build(:user, inviter: inviter_val) }
let(:inviter_val) { nil }
let(:mail) { Devise::Mailer.confirmation_instructions(confirmable_user, nil, {}) }
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
expect(mail.body).to match("Welcome, #{CGI.escapeHTML(confirmable_user.name)}!")
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
context 'when there is an inviter' do
let(:inviter_val) do
FactoryBot.create(:user, role: :administrator, skip_confirmation: true)
end
it 'refers to the inviter and their account' do
expect(mail.body).to match(
"#{inviter_val.name}, with #{inviter_val.account.name}, has invited you to try out Chatwoot!"
)
end
end
end
end