aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_mailroom/test_helper.rb
blob: 8ffbe94e6ca04e4bccdf239b8ccd88025a7cfb71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require "mail"

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+.
    def create_inbound_email_from_fixture(fixture_name, status: :processing)
      create_inbound_email file_fixture(fixture_name), filename: fixture_name, status: status
    end    

    def create_inbound_email_from_mail(status: :processing, **mail_options)
      raw_email = Tempfile.new.tap { |raw_email| raw_email.write Mail.new(mail_options).to_s }
      create_inbound_email(raw_email, status: status)
    end

    def create_inbound_email(io, filename: 'mail.eml', status: :processing)
      ActionMailroom::InboundEmail.create_from_raw_email! \
        ActionDispatch::Http::UploadedFile.new(tempfile: io, filename: filename, type: 'message/rfc822'),
        status: status
    end
  end
end