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
|
# encoding: utf-8
# frozen_string_literal: true
require 'spec_helper'
describe "multipart/report emails" do
it "should know if it is a multipart report type" do
mail = Mail.read(fixture('emails', 'multipart_report_emails', 'report_422.eml'))
expect(mail).to be_multipart_report
end
describe "delivery-status reports" do
it "should know if it is a deliver-status report" do
mail = Mail.read(fixture('emails', 'multipart_report_emails', 'report_422.eml'))
expect(mail).to be_delivery_status_report
end
it "should find its message/delivery-status part" do
mail = Mail.read(fixture('emails', 'multipart_report_emails', 'report_422.eml'))
expect(mail.delivery_status_part).not_to be_nil
end
it "should handle a report that has a human readable message/delivery-status" do
mail = Mail.read(fixture('emails', 'multipart_report_emails', 'multipart_report_multiple_status.eml'))
expect(mail).to be_bounced
end
describe "multipart reports with more than one address" do
it "should not crash" do
mail1 = Mail.read(fixture('emails', 'multipart_report_emails', 'multi_address_bounce1.eml'))
mail2 = Mail.read(fixture('emails', 'multipart_report_emails', 'multi_address_bounce2.eml'))
expect { mail1.bounced? }.not_to raise_error
expect { mail2.bounced? }.not_to raise_error
end
it "should not know that a multi address email was bounced" do
mail1 = Mail.read(fixture('emails', 'multipart_report_emails', 'multi_address_bounce1.eml'))
mail2 = Mail.read(fixture('emails', 'multipart_report_emails', 'multi_address_bounce2.eml'))
expect(mail1).to be_bounced
expect(mail2).to be_bounced
end
end
describe "temporary failure" do
before(:each) do
@mail = Mail.read(fixture('emails', 'multipart_report_emails', 'report_422.eml'))
end
it "should be bounced" do
expect(@mail).not_to be_bounced
end
it "should say action 'delayed'" do
expect(@mail.action).to eq 'delayed'
end
it "should give a final recipient" do
expect(@mail.final_recipient).to eq 'RFC822; fraser@oooooooo.com.au'
end
it "should give an error code" do
expect(@mail.error_status).to eq '4.2.2'
end
it "should give a diagostic code" do
expect(@mail.diagnostic_code).to eq 'SMTP; 452 4.2.2 <fraser@oooooooo.com.au>... Mailbox full'
end
it "should give a remote-mta" do
expect(@mail.remote_mta).to eq 'DNS; mail.oooooooo.com.au'
end
it "should be retryable" do
expect(@mail).to be_retryable
end
end
describe "permanent failure" do
before(:each) do
@mail = Mail.read(fixture('emails', 'multipart_report_emails', 'report_530.eml'))
end
it "should be bounced" do
expect(@mail).to be_bounced
end
it "should say action 'failed'" do
expect(@mail.action).to eq 'failed'
end
it "should give a final recipient" do
expect(@mail.final_recipient).to eq 'RFC822; edwin@zzzzzzz.com'
end
it "should give an error code" do
expect(@mail.error_status).to eq '5.3.0'
end
it "should give a diagostic code" do
expect(@mail.diagnostic_code).to eq 'SMTP; 553 5.3.0 <edwin@zzzzzzz.com>... Unknown E-Mail Address'
end
it "should give a remote-mta" do
expect(@mail.remote_mta).to eq 'DNS; mail.zzzzzz.com'
end
it "should be retryable" do
expect(@mail).not_to be_retryable
end
end
end
end
|