mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
27 lines
949 B
Ruby
27 lines
949 B
Ruby
require "mail"
|
|
|
|
module ActionMailbox
|
|
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+.
|
|
def create_inbound_email_from_fixture(fixture_name, status: :processing)
|
|
create_inbound_email file_fixture(fixture_name).read, status: status
|
|
end
|
|
|
|
def create_inbound_email_from_mail(status: :processing, **mail_options)
|
|
create_inbound_email Mail.new(mail_options).to_s, status: status
|
|
end
|
|
|
|
def create_inbound_email(source, status: :processing)
|
|
ActionMailbox::InboundEmail.create_and_extract_message_id! source, status: status
|
|
end
|
|
|
|
def receive_inbound_email_from_fixture(*args)
|
|
create_inbound_email_from_fixture(*args).tap(&:route)
|
|
end
|
|
|
|
def receive_inbound_email_from_mail(**kwargs)
|
|
create_inbound_email_from_mail(**kwargs).tap(&:route)
|
|
end
|
|
end
|
|
end
|