aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/configuration/middleware_stack_proxy_test.rb
blob: 559ce726939e721699b119145981441e0cdb89c9 (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
require "active_support"
require "active_support/testing/autorun"
require "rails/configuration"
require "active_support/test_case"
require "minitest/mock"

module Rails
  module Configuration
    class MiddlewareStackProxyTest < ActiveSupport::TestCase
      def setup
        @stack = MiddlewareStackProxy.new
      end

      def test_playback_insert_before
        @stack.insert_before :foo
        assert_playback :insert_before, :foo
      end

      def test_playback_insert_after
        @stack.insert_after :foo
        assert_playback :insert_after, :foo
      end

      def test_playback_swap
        @stack.swap :foo
        assert_playback :swap, :foo
      end

      def test_playback_use
        @stack.use :foo
        assert_playback :use, :foo
      end

      def test_playback_delete
        @stack.delete :foo
        assert_playback :delete, :foo
      end

      def test_order
        @stack.swap :foo
        @stack.delete :foo

        mock = Minitest::Mock.new
        mock.expect :send, nil, [:swap, :foo]
        mock.expect :send, nil, [:delete, :foo]

        @stack.merge_into mock
        mock.verify
      end

      private

        def assert_playback(msg_name, args)
          mock = Minitest::Mock.new
          mock.expect :send, nil, [msg_name, args]
          @stack.merge_into(mock)
          mock.verify
        end
    end
  end
end