aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/plugins/configuration_test.rb
blob: 09f8943af9f8c3f0a582d478ebe2178ca48111ad (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
require "isolation/abstract_unit"

module PluginsTest
  class ConfigurationTest < Test::Unit::TestCase
    def setup
      build_app
      boot_rails
      require "rails/all"
    end

    test "config is available to plugins" do
      class Foo < Rails::Railtie ; end
      assert_nil Foo.config.action_controller.foo
    end

    test "a config name is available for the plugin" do
      class Foo < Rails::Railtie ; config.foo.greetings = "hello" ; end
      assert_equal "hello", Foo.config.foo.greetings
    end

    test "plugin configurations are available in the application" do
      class Foo < Rails::Railtie ; config.foo.greetings = "hello" ; end
      require "#{app_path}/config/application"
      assert_equal "hello", AppTemplate::Application.config.foo.greetings
    end

    test "plugin config merges are deep" do
      class Foo < Rails::Railtie ; config.foo.greetings = 'hello' ; end
      class MyApp < Rails::Application
        config.foo.bar = "bar"
      end
      assert_equal "hello", MyApp.config.foo.greetings
      assert_equal "bar",   MyApp.config.foo.bar
    end

    test "plugin can add subscribers" do
      begin
        class Foo < Rails::Railtie; subscriber(Rails::Subscriber.new); end
        assert_kind_of Rails::Subscriber, Rails::Subscriber.subscribers[:foo]
      ensure
        Rails::Subscriber.subscribers.clear
      end
    end
  end
end