rails/activesupport/test/subscriber_test.rb
Ryuta Kamizono c81af6ae72 Enable Layout/EmptyLinesAroundAccessModifier cop
We sometimes say "✂️ newline after `private`" in a code review (e.g.
https://github.com/rails/rails/pull/18546#discussion_r23188776,
https://github.com/rails/rails/pull/34832#discussion_r244847195).

Now `Layout/EmptyLinesAroundAccessModifier` cop have new enforced style
`EnforcedStyle: only_before` (https://github.com/rubocop-hq/rubocop/pull/7059).

That cop and enforced style will reduce the our code review cost.
2019-06-13 12:00:45 +09:00

79 lines
1.5 KiB
Ruby

# frozen_string_literal: true
require "abstract_unit"
require "active_support/subscriber"
class TestSubscriber < ActiveSupport::Subscriber
attach_to :doodle
cattr_reader :events
def self.clear
@@events = []
end
def open_party(event)
events << event
end
private
def private_party(event)
events << event
end
end
class TestSubscriber2 < ActiveSupport::Subscriber
attach_to :doodle
detach_from :doodle
cattr_reader :events
def self.clear
@@events = []
end
def open_party(event)
events << event
end
end
# Monkey patch subscriber to test that only one subscriber per method is added.
class TestSubscriber
remove_method :open_party
def open_party(event)
events << event
end
end
class SubscriberTest < ActiveSupport::TestCase
def setup
TestSubscriber.clear
TestSubscriber2.clear
end
def test_attaches_subscribers
ActiveSupport::Notifications.instrument("open_party.doodle")
assert_equal "open_party.doodle", TestSubscriber.events.first.name
end
def test_attaches_only_one_subscriber
ActiveSupport::Notifications.instrument("open_party.doodle")
assert_equal 1, TestSubscriber.events.size
end
def test_does_not_attach_private_methods
ActiveSupport::Notifications.instrument("private_party.doodle")
assert_equal [], TestSubscriber.events
end
def test_detaches_subscribers
ActiveSupport::Notifications.instrument("open_party.doodle")
assert_equal [], TestSubscriber2.events
assert_equal 1, TestSubscriber.events.size
end
end