2018-09-18 19:07:06 -04:00
|
|
|
module ActionMailroom
|
|
|
|
module TestHelper
|
|
|
|
# Create an InboundEmail record using an eml fixture in the format of message/rfc822
|
|
|
|
# referenced with +fixture_name+ located in +test/fixtures/files/fixture_name+.
|
2018-09-19 20:08:35 -04:00
|
|
|
def create_inbound_email_from_fixture(fixture_name, status: :processing)
|
|
|
|
create_inbound_email file_fixture(fixture_name).open, filename: fixture_name, status: status
|
2018-09-19 19:21:53 -04:00
|
|
|
end
|
2018-09-19 20:08:35 -04:00
|
|
|
|
|
|
|
def create_inbound_email_from_mail(status: :processing, &block)
|
|
|
|
create_inbound_email(StringIO.new(Mail.new { instance_eval(&block) }.to_s), status: status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_inbound_email(io, filename: 'mail.eml', status: status)
|
|
|
|
ActionMailroom::InboundEmail.create! status: status, raw_email:
|
|
|
|
ActiveStorage::Blob.create_after_upload!(io: io, filename: filename, content_type: 'message/rfc822')
|
|
|
|
end
|
2018-09-18 19:07:06 -04:00
|
|
|
end
|
|
|
|
end
|