1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
require 'spec_helper'
describe MailRoom::Mailbox do
let(:sample_message) { MailRoom::Message.new(uid: 123, body: 'a message') }
describe "#deliver" do
context "with arbitration_method of noop" do
it 'arbitrates with a Noop instance' do
mailbox = build_mailbox({:arbitration_method => 'noop'})
noop = stub(:deliver?)
MailRoom::Arbitration['noop'].stubs(:new => noop)
uid = 123
noop.expects(:deliver?).with(uid)
mailbox.deliver?(uid)
end
end
context "with arbitration_method of redis" do
it 'arbitrates with a Redis instance' do
mailbox = build_mailbox({:arbitration_method => 'redis'})
redis = stub(:deliver?)
MailRoom::Arbitration['redis'].stubs(:new => redis)
uid = 123
redis.expects(:deliver?).with(uid)
mailbox.deliver?(uid)
end
end
context "with delivery_method of noop" do
it 'delivers with a Noop instance' do
mailbox = build_mailbox({:delivery_method => 'noop'})
noop = stub(:deliver)
MailRoom::Delivery['noop'].stubs(:new => noop)
noop.expects(:deliver).with(sample_message.body)
mailbox.deliver(sample_message)
end
end
context "with delivery_method of logger" do
it 'delivers with a Logger instance' do
mailbox = build_mailbox({:delivery_method => 'logger'})
logger = stub(:deliver)
MailRoom::Delivery['logger'].stubs(:new => logger)
logger.expects(:deliver).with(sample_message.body)
mailbox.deliver(sample_message)
end
end
context "with delivery_method of postback" do
it 'delivers with a Postback instance' do
mailbox = build_mailbox({:delivery_method => 'postback'})
postback = stub(:deliver)
MailRoom::Delivery['postback'].stubs(:new => postback)
postback.expects(:deliver).with(sample_message.body)
mailbox.deliver(sample_message)
end
end
context "with delivery_method of letter_opener" do
it 'delivers with a LetterOpener instance' do
mailbox = build_mailbox({:delivery_method => 'letter_opener'})
letter_opener = stub(:deliver)
MailRoom::Delivery['letter_opener'].stubs(:new => letter_opener)
letter_opener.expects(:deliver).with(sample_message.body)
mailbox.deliver(sample_message)
end
end
context "without an RFC822 attribute" do
it "doesn't deliver the message" do
mailbox = build_mailbox({ name: "magic mailbox", delivery_method: 'noop' })
noop = stub(:deliver)
MailRoom::Delivery['noop'].stubs(:new => noop)
noop.expects(:deliver).never
mailbox.deliver(MailRoom::Message.new(uid: 1234, body: nil))
end
end
context "with ssl options hash" do
it 'replaces verify mode with constant' do
mailbox = build_mailbox({:ssl => {:verify_mode => :none}})
expect(mailbox.ssl_options).to eq({:verify_mode => OpenSSL::SSL::VERIFY_NONE})
end
end
context 'structured logger setup' do
it 'sets up the logger correctly and does not error' do
mailbox = build_mailbox({ name: "magic mailbox", logger: { log_path: '/dev/null' } })
expect{ mailbox.logger.info(message: "asdf") }.not_to raise_error
end
it 'accepts stdout symbol to mean STDOUT' do
mailbox = build_mailbox({ name: "magic mailbox", logger: { log_path: :stdout } })
expect{ mailbox.logger.info(message: "asdf") }.not_to raise_error
end
it 'sets up the noop logger correctly and does not error' do
mailbox = build_mailbox({ name: "magic mailbox" })
expect{ mailbox.logger.info(message: "asdf") }.not_to raise_error
end
end
end
describe "#validate!" do
context "with missing configuration" do
it 'raises an error' do
expect { build_mailbox({:name => nil}) }.to raise_error(MailRoom::ConfigurationError)
expect { build_mailbox({:host => nil}) }.to raise_error(MailRoom::ConfigurationError)
end
end
end
end
|