mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
8f0c5e00ff
The processing of outbound mail is instrumented with the key `process.action_mailer`. The payload includes the mailer name as well as the mailer method.
45 lines
1.3 KiB
Ruby
45 lines
1.3 KiB
Ruby
require "abstract_unit"
|
|
require 'mailers/base_mailer'
|
|
require "active_support/log_subscriber/test_helper"
|
|
require "action_mailer/log_subscriber"
|
|
|
|
class AMLogSubscriberTest < ActionMailer::TestCase
|
|
include ActiveSupport::LogSubscriber::TestHelper
|
|
|
|
def setup
|
|
super
|
|
ActionMailer::LogSubscriber.attach_to :action_mailer
|
|
end
|
|
|
|
class TestMailer < ActionMailer::Base
|
|
def receive(mail)
|
|
# Do nothing
|
|
end
|
|
end
|
|
|
|
def set_logger(logger)
|
|
ActionMailer::Base.logger = logger
|
|
end
|
|
|
|
def test_deliver_is_notified
|
|
BaseMailer.welcome.deliver
|
|
wait
|
|
|
|
assert_equal(1, @logger.logged(:info).size)
|
|
assert_match(/Sent mail to system@test.lindsaar.net/, @logger.logged(:info).first)
|
|
|
|
assert_equal(2, @logger.logged(:debug).size)
|
|
assert_match(/BaseMailer#welcome: processed outbound mail in [\d.]+ms/, @logger.logged(:debug).first)
|
|
assert_match(/Welcome/, @logger.logged(:debug).second)
|
|
end
|
|
|
|
def test_receive_is_notified
|
|
fixture = File.read(File.dirname(__FILE__) + "/fixtures/raw_email")
|
|
TestMailer.receive(fixture)
|
|
wait
|
|
assert_equal(1, @logger.logged(:info).size)
|
|
assert_match(/Received mail/, @logger.logged(:info).first)
|
|
assert_equal(1, @logger.logged(:debug).size)
|
|
assert_match(/Jamis/, @logger.logged(:debug).first)
|
|
end
|
|
end
|