aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/notifications/evented_notification_test.rb
blob: f77a0eb3fa7bfa274f4d0ab03d0c891474d190b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
require 'abstract_unit'

module ActiveSupport
  module Notifications
    class EventedTest < ActiveSupport::TestCase
      class Listener
        attr_reader :events

        def initialize
          @events   = []
        end

        def start(name, id, payload)
          @events << [:start, name, id, payload]
        end

        def finish(name, id, payload)
          @events << [:finish, name, id, payload]
        end
      end

      def test_evented_listener
        notifier = Fanout.new
        listener = Listener.new
        notifier.subscribe 'hi', listener
        notifier.start  'hi', 1, {}
        notifier.start  'hi', 2, {}
        notifier.finish 'hi', 2, {}
        notifier.finish 'hi', 1, {}

        assert_equal 4, listener.events.length
        assert_equal [
          [:start, 'hi', 1, {}],
          [:start, 'hi', 2, {}],
          [:finish, 'hi', 2, {}],
          [:finish, 'hi', 1, {}],
        ], listener.events
      end

      def test_evented_listener_no_events
        notifier = Fanout.new
        listener = Listener.new
        notifier.subscribe 'hi', listener
        notifier.start  'world', 1, {}
        assert_equal 0, listener.events.length
      end

      def test_listen_to_everything
        notifier = Fanout.new
        listener = Listener.new
        notifier.subscribe nil, listener
        notifier.start  'hello', 1, {}
        notifier.start  'world', 1, {}
        notifier.finish  'world', 1, {}
        notifier.finish  'hello', 1, {}

        assert_equal 4, listener.events.length
        assert_equal [
          [:start,  'hello', 1, {}],
          [:start,  'world', 1, {}],
          [:finish,  'world', 1, {}],
          [:finish,  'hello', 1, {}],
        ], listener.events
      end
    end
  end
end