discourse/spec/components/email/sender_spec.rb

140 lines
4.1 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
2013-06-10 15:33:37 -04:00
require 'email/sender'
2013-02-05 14:16:51 -05:00
2013-06-10 15:33:37 -04:00
describe Email::Sender do
2013-02-05 14:16:51 -05:00
it "doesn't deliver mail when the message is nil" do
Mail::Message.any_instance.expects(:deliver).never
2013-06-10 15:33:37 -04:00
Email::Sender.new(nil, :hello).send
2013-02-05 14:16:51 -05:00
end
it "doesn't deliver when the to address is nil" do
message = Mail::Message.new(body: 'hello')
message.expects(:deliver).never
2013-06-10 15:33:37 -04:00
Email::Sender.new(message, :hello).send
2013-02-05 14:16:51 -05:00
end
it "doesn't deliver when the body is nil" do
message = Mail::Message.new(to: 'eviltrout@test.domain')
message.expects(:deliver).never
2013-06-10 15:33:37 -04:00
Email::Sender.new(message, :hello).send
2013-02-05 14:16:51 -05:00
end
2013-07-02 14:13:46 -04:00
context "list_id_for" do
it "joins the host and forum name" do
2013-07-02 14:46:40 -04:00
Email::Sender.list_id_for("myforum", "http://mysite.com").should == '"myforum" <discourse.forum.myforum.mysite.com>'
2013-07-02 14:13:46 -04:00
end
it "uses localhost when no host is present" do
2013-07-02 14:46:40 -04:00
Email::Sender.list_id_for("myforum", nil).should == '"myforum" <discourse.forum.myforum.localhost>'
2013-07-02 14:13:46 -04:00
end
it "uses localhost with a weird host" do
2013-07-02 14:46:40 -04:00
Email::Sender.list_id_for("Fun", "this is not a real host").should == '"Fun" <discourse.forum.fun.localhost>'
2013-07-02 14:13:46 -04:00
end
it "removes double quotes from names" do
2013-07-02 14:46:40 -04:00
Email::Sender.list_id_for('Quoted "Forum"', 'http://quoted.com').should == '"Quoted \'Forum\'" <discourse.forum.quoted-forum.quoted.com>'
2013-07-02 14:13:46 -04:00
end
it "converts the site name to lower case and removes spaces" do
2013-07-02 14:46:40 -04:00
Email::Sender.list_id_for("Robin's cool Forum!", "http://robin.com").should == '"Robin\'s cool Forum!" <discourse.forum.robins-cool-forum.robin.com>'
2013-07-02 14:13:46 -04:00
end
it "downcases host names" do
2013-07-02 14:46:40 -04:00
Email::Sender.list_id_for("cool", "http://ForumSite.com").should == '"cool" <discourse.forum.cool.forumsite.com>'
2013-07-02 14:13:46 -04:00
end
end
2013-02-05 14:16:51 -05:00
context 'with a valid message' do
let(:reply_key) { "abcd" * 8 }
2013-02-25 11:42:20 -05:00
let(:message) do
2013-02-05 14:16:51 -05:00
message = Mail::Message.new to: 'eviltrout@test.domain',
body: '**hello**'
message.stubs(:deliver)
message
end
2013-06-10 15:33:37 -04:00
let(:email_sender) { Email::Sender.new(message, :valid_type) }
2013-02-05 14:16:51 -05:00
it 'calls deliver' do
message.expects(:deliver).once
email_sender.send
end
2013-07-02 14:13:46 -04:00
it "adds a List-Id header to identify the forum" do
email_sender.send
message.header['List-Id'].should be_present
end
2013-02-05 14:16:51 -05:00
context 'email logs' do
let(:email_log) { EmailLog.last }
When { email_sender.send }
Then { expect(email_log).to be_present }
Then { expect(email_log.email_type).to eq('valid_type') }
Then { expect(email_log.to_address).to eq('eviltrout@test.domain') }
Then { expect(email_log.reply_key).to be_blank }
Then { expect(email_log.user_id).to be_blank }
end
2013-02-05 14:16:51 -05:00
context "email log with a post id and topic id" do
before do
message.header['X-Discourse-Post-Id'] = 3344
message.header['X-Discourse-Topic-Id'] = 5577
end
let(:email_log) { EmailLog.last }
When { email_sender.send }
Then { expect(email_log.post_id).to eq(3344) }
Then { expect(email_log.topic_id).to eq(5577) }
end
context "email log with a reply key" do
2013-02-05 14:16:51 -05:00
before do
message.header['X-Discourse-Reply-Key'] = reply_key
2013-02-05 14:16:51 -05:00
end
let(:email_log) { EmailLog.last }
When { email_sender.send }
Then { expect(email_log.reply_key).to eq(reply_key) }
2013-02-05 14:16:51 -05:00
end
context 'email parts' do
When { email_sender.send }
Then { expect(message).to be_multipart }
Then { expect(message.text_part.content_type).to eq('text/plain; charset=UTF-8') }
Then { expect(message.html_part.content_type).to eq('text/html; charset=UTF-8') }
Then { expect(message.html_part.body.to_s).to match("<p><strong>hello</strong></p>") }
2013-02-05 14:16:51 -05:00
end
end
context 'with a user' do
2013-02-25 11:42:20 -05:00
let(:message) do
2013-02-05 14:16:51 -05:00
message = Mail::Message.new to: 'eviltrout@test.domain', body: 'test body'
message.stubs(:deliver)
message
end
let(:user) { Fabricate(:user) }
2013-06-10 15:33:37 -04:00
let(:email_sender) { Email::Sender.new(message, :valid_type, user) }
2013-02-05 14:16:51 -05:00
before do
email_sender.send
@email_log = EmailLog.last
end
it 'should have the current user_id' do
@email_log.user_id.should == user.id
end
end
end