2015-10-11 10:41:23 +01:00
|
|
|
require "rails_helper"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
describe InviteMailer do
|
2013-02-25 19:42:20 +03:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
describe "send_invite" do
|
|
|
|
|
2014-07-08 22:33:11 +05:30
|
|
|
context "invite to site" do
|
|
|
|
let(:invite) { Fabricate(:invite) }
|
|
|
|
|
2016-06-05 22:52:46 +05:30
|
|
|
context "default invite message" do
|
|
|
|
let(:invite_mail) { InviteMailer.send_invite(invite) }
|
2014-07-08 22:33:11 +05:30
|
|
|
|
2016-06-05 22:52:46 +05:30
|
|
|
it 'renders the invitee email' do
|
|
|
|
expect(invite_mail.to).to eql([invite.email])
|
|
|
|
end
|
2014-07-08 22:33:11 +05:30
|
|
|
|
2016-06-05 22:52:46 +05:30
|
|
|
it 'renders the subject' do
|
|
|
|
expect(invite_mail.subject).to be_present
|
|
|
|
end
|
2014-07-10 10:57:40 +05:30
|
|
|
|
2016-06-05 22:52:46 +05:30
|
|
|
it 'renders site domain name in subject' do
|
|
|
|
expect(invite_mail.subject).to match(Discourse.current_hostname)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders the body' do
|
|
|
|
expect(invite_mail.body).to be_present
|
|
|
|
end
|
2014-07-08 22:33:11 +05:30
|
|
|
|
2016-06-05 22:52:46 +05:30
|
|
|
it 'renders the inviter email' do
|
|
|
|
expect(invite_mail.from).to eql([SiteSetting.notification_email])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders invite link' do
|
|
|
|
expect(invite_mail.body.encoded).to match("#{Discourse.base_url}/invites/#{invite.invite_key}")
|
|
|
|
end
|
2014-07-08 22:33:11 +05:30
|
|
|
end
|
|
|
|
|
2016-06-05 22:52:46 +05:30
|
|
|
context "custom invite message" do
|
|
|
|
|
|
|
|
context "custom message includes invite link" do
|
2016-06-08 18:04:25 +05:30
|
|
|
let(:custom_invite_mail) { InviteMailer.send_invite(invite, "Hey, you should join this forum!") }
|
2016-06-05 22:52:46 +05:30
|
|
|
|
|
|
|
it 'renders the invitee email' do
|
|
|
|
expect(custom_invite_mail.to).to eql([invite.email])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders the subject' do
|
|
|
|
expect(custom_invite_mail.subject).to be_present
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders site domain name in subject' do
|
|
|
|
expect(custom_invite_mail.subject).to match(Discourse.current_hostname)
|
|
|
|
end
|
|
|
|
|
2016-06-08 18:04:25 +05:30
|
|
|
it 'renders the body' do
|
|
|
|
expect(custom_invite_mail.body).to be_present
|
2016-06-05 22:52:46 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders custom_message' do
|
2016-06-08 18:04:25 +05:30
|
|
|
expect(custom_invite_mail.body.encoded).to match("Hey, you should join this forum!")
|
2016-06-05 22:52:46 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders the inviter email' do
|
|
|
|
expect(custom_invite_mail.from).to eql([SiteSetting.notification_email])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders invite link' do
|
2016-06-08 18:04:25 +05:30
|
|
|
expect(custom_invite_mail.body.encoded).to match("#{Discourse.base_url}/invites/#{invite.invite_key}")
|
2016-06-05 22:52:46 +05:30
|
|
|
end
|
|
|
|
end
|
2014-07-08 22:33:11 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-07 22:54:45 +05:30
|
|
|
|
2014-07-08 22:33:11 +05:30
|
|
|
context "invite to topic" do
|
2017-02-02 23:08:25 +05:30
|
|
|
let(:trust_level_2) { build(:user, trust_level: 2) }
|
|
|
|
let(:topic) { Fabricate(:topic, excerpt: "Topic invite support is now available in Discourse!", user: trust_level_2) }
|
2014-07-08 22:33:11 +05:30
|
|
|
let(:invite) { topic.invite(topic.user, 'name@example.com') }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2016-06-07 22:54:45 +05:30
|
|
|
context "default invite message" do
|
|
|
|
let(:invite_mail) { InviteMailer.send_invite(invite) }
|
2014-07-08 22:33:11 +05:30
|
|
|
|
2016-06-07 22:54:45 +05:30
|
|
|
it 'renders the invitee email' do
|
|
|
|
expect(invite_mail.to).to eql(['name@example.com'])
|
|
|
|
end
|
2014-07-08 22:33:11 +05:30
|
|
|
|
2016-06-07 22:54:45 +05:30
|
|
|
it 'renders the subject' do
|
|
|
|
expect(invite_mail.subject).to be_present
|
|
|
|
end
|
2014-07-10 10:03:09 +05:30
|
|
|
|
2016-06-07 22:54:45 +05:30
|
|
|
it 'renders topic title in subject' do
|
|
|
|
expect(invite_mail.subject).to match(topic.title)
|
|
|
|
end
|
2014-07-10 10:03:09 +05:30
|
|
|
|
2016-06-07 22:54:45 +05:30
|
|
|
it 'renders site domain name in subject' do
|
|
|
|
expect(invite_mail.subject).to match(Discourse.current_hostname)
|
|
|
|
end
|
2014-07-08 22:33:11 +05:30
|
|
|
|
2016-06-07 22:54:45 +05:30
|
|
|
it 'renders the body' do
|
|
|
|
expect(invite_mail.body).to be_present
|
|
|
|
end
|
2014-07-08 22:33:11 +05:30
|
|
|
|
2016-06-07 22:54:45 +05:30
|
|
|
it 'renders the inviter email' do
|
|
|
|
expect(invite_mail.from).to eql([SiteSetting.notification_email])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders invite link' do
|
|
|
|
expect(invite_mail.body.encoded).to match("#{Discourse.base_url}/invites/#{invite.invite_key}")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders topic title' do
|
|
|
|
expect(invite_mail.body.encoded).to match(topic.title)
|
|
|
|
end
|
2014-07-08 22:33:11 +05:30
|
|
|
end
|
|
|
|
|
2016-06-07 22:54:45 +05:30
|
|
|
context "custom invite message" do
|
2016-06-08 18:04:25 +05:30
|
|
|
let(:custom_invite_mail) { InviteMailer.send_invite(invite, "Hey, I thought you might enjoy this topic!") }
|
2016-06-07 22:54:45 +05:30
|
|
|
|
|
|
|
it 'renders custom_message' do
|
2016-06-08 18:04:25 +05:30
|
|
|
expect(custom_invite_mail.body.encoded).to match("Hey, I thought you might enjoy this topic!")
|
2016-06-07 22:54:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders invite link' do
|
2016-06-08 18:04:25 +05:30
|
|
|
expect(custom_invite_mail.body.encoded).to match("#{Discourse.base_url}/invites/#{invite.invite_key}")
|
2016-06-07 22:54:45 +05:30
|
|
|
end
|
2014-07-08 22:33:11 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
end
|