require 'spec_helper' describe Griddler::Mailgun::Adapter do it 'registers itself with griddler' do expect(Griddler.adapter_registry[:mailgun]).to eq Griddler::Mailgun::Adapter end end describe Griddler::Mailgun::Adapter, '.normalize_params' do it 'works with Griddler::Email' do normalized_params = Griddler::Mailgun::Adapter.normalize_params(default_params) griddler_email = Griddler::Email.new(normalized_params) expect(griddler_email.class).to eq Griddler::Email end it 'falls back to headers for cc' do params = default_params.merge(Cc: '') normalized_params = Griddler::Mailgun::Adapter.normalize_params(params) expect(normalized_params[:cc]).to eq ["Brandon Stark ", "Arya Stark "] end it 'passes the received array of files' do params = default_params.merge( 'attachment-count' => 2, 'attachment-1' => upload_1, 'attachment-2' => upload_2 ) normalized_params = Griddler::Mailgun::Adapter.normalize_params(params) expect(normalized_params[:attachments]).to eq [upload_1, upload_2] end it "receives attachments sent from store action" do params = default_params.merge( "attachments" => [{ url: "sample.url", name: "sample name" }, { url: "sample2.url", name: "sample name 2" }] ) normalized_params = Griddler::Mailgun::Adapter.normalize_params(params) expect(normalized_params[:attachments].length).to eq 2 end it 'has no attachments' do normalized_params = Griddler::Mailgun::Adapter.normalize_params(default_params) expect(normalized_params[:attachments]).to be_empty end it 'gets sender from headers' do params = default_params.merge(From: '') normalized_params = Griddler::Mailgun::Adapter.normalize_params(params) expect(normalized_params[:from]).to eq "Jon Snow " end it 'falls back to sender without headers or From' do params = default_params.merge(From: '', 'message-headers' => '{}') normalized_params = Griddler::Mailgun::Adapter.normalize_params(params) expect(normalized_params[:from]).to eq "jon@example.com" end it 'gets full address from headers' do params = default_params.merge(To: '') normalized_params = Griddler::Mailgun::Adapter.normalize_params(params) expect(normalized_params[:to]).to eq ["John Doe ", "Jane Doe "] end it 'handles multiple To addresses' do params = default_params.merge( To: 'Alice Cooper , John Doe ' ) normalized_params = Griddler::Mailgun::Adapter.normalize_params(params) expect(normalized_params[:to]).to eq [ 'Alice Cooper ', 'John Doe ' ] end it 'handles missing params' do normalized_params = Griddler::Mailgun::Adapter.normalize_params(short_params) expect(normalized_params[:to]).to eq ['johndoe@example.com'] end it 'handles message-headers' do params = default_params.merge( 'message-headers' => '[["NotCc", "emily@example.mailgun.org"], ["Reply-To", "mail2@example.mailgun.org"]]' ) normalized_params = Griddler::Mailgun::Adapter.normalize_params(params) email = Griddler::Email.new(normalized_params) expect(email.headers["Reply-To"]).to eq "mail2@example.mailgun.org" end it 'adds Bcc when it exists' do params = default_params.merge('Bcc' => 'bcc@example.com') normalized_params = Griddler::Mailgun::Adapter.normalize_params(params) expect(normalized_params[:bcc]).to eq ['bcc@example.com'] end it 'bcc is empty array when it missing' do normalized_params = Griddler::Mailgun::Adapter.normalize_params(default_params) expect(normalized_params[:bcc]).to eq [] end def upload_1 @upload_1 ||= ActionDispatch::Http::UploadedFile.new( filename: 'photo1.jpg', type: 'image/jpeg', tempfile: fixture_file('photo1.jpg') ) end def upload_2 @upload_2 ||= ActionDispatch::Http::UploadedFile.new( filename: 'photo2.jpg', type: 'image/jpeg', tempfile: fixture_file('photo2.jpg') ) end def fixture_file(file_name) cwd = File.expand_path File.dirname(__FILE__) File.new(File.join(cwd, '../../', 'fixtures', file_name)) end def json_headers "[ [\"Subject\", \"multiple recipients and CCs\"], [\"From\", \"Jon Snow \"], [\"To\", \"John Doe , Jane Doe \"], [\"Cc\", \"Brandon Stark , Arya Stark \"] ]" end def short_params ActiveSupport::HashWithIndifferentAccess.new( { "from" => "Jon Snow ", "recipient" => "johndoe@example.com", "body-plain" => "hi" } ) end def default_params ActiveSupport::HashWithIndifferentAccess.new( { "Cc"=>"Brandon Stark , Arya Stark ", "From"=>"Jon Snow ", "Subject"=>"multiple recipients and CCs", "To"=>"John Doe , Jane Doe ", "body-html"=>"
And attachments. Two of them. An image and a text file.
\r\n", "body-plain"=>"And attachments. Two of them. An image and a text file.\r\n", "from"=>"Jon Snow ", "recipient"=>"johndoe@example.com", "sender"=>"jon@example.com", "stripped-html"=>"
And attachments. Two of them. An image and a text file.
\r\n", "stripped-signature"=>"", "stripped-text"=>"And attachments. Two of them. An image and a text file.", "subject"=>"multiple recipients and CCs", "timestamp"=>"1402113646", "message-headers"=>json_headers } ) end end