2008-05-18 06:22:34 +02:00
|
|
|
require 'abstract_unit'
|
2007-12-21 08:48:59 +01:00
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
class ViewLoadPathsTest < ActionController::TestCase
|
2007-12-21 08:48:59 +01:00
|
|
|
class TestController < ActionController::Base
|
|
|
|
def self.controller_path() "test" end
|
|
|
|
def rescue_action(e) raise end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
before_filter :add_view_path, :only => :hello_world_at_request_time
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def hello_world() end
|
|
|
|
def hello_world_at_request_time() render(:action => 'hello_world') end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
private
|
2008-10-27 07:47:01 +01:00
|
|
|
def add_view_path
|
|
|
|
prepend_view_path "#{FIXTURE_LOAD_PATH}/override"
|
|
|
|
end
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
class Test::SubController < ActionController::Base
|
|
|
|
layout 'test/sub'
|
|
|
|
def hello_world; render(:template => 'test/hello_world'); end
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def setup
|
|
|
|
TestController.view_paths = nil
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
@request = ActionController::TestRequest.new
|
|
|
|
@response = ActionController::TestResponse.new
|
2008-05-18 06:22:34 +02:00
|
|
|
|
|
|
|
@controller = TestController.new
|
|
|
|
# Following is needed in order to setup @controller.template object properly
|
|
|
|
@controller.send :initialize_template_class, @response
|
|
|
|
@controller.send :assign_shortcuts, @request, @response
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# Track the last warning.
|
|
|
|
@old_behavior = ActiveSupport::Deprecation.behavior
|
|
|
|
@last_message = nil
|
|
|
|
ActiveSupport::Deprecation.behavior = Proc.new { |message, callback| @last_message = message }
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def teardown
|
|
|
|
ActiveSupport::Deprecation.behavior = @old_behavior
|
|
|
|
end
|
2009-02-28 02:23:00 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_template_load_path_was_set_correctly
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal [FIXTURE_LOAD_PATH], @controller.view_paths.map(&:to_s)
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_controller_appends_view_path_correctly
|
2008-05-18 06:22:34 +02:00
|
|
|
@controller.append_view_path 'foo'
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal [FIXTURE_LOAD_PATH, 'foo'], @controller.view_paths.map(&:to_s)
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2008-05-18 06:22:34 +02:00
|
|
|
@controller.append_view_path(%w(bar baz))
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal [FIXTURE_LOAD_PATH, 'foo', 'bar', 'baz'], @controller.view_paths.map(&:to_s)
|
2008-10-27 07:47:01 +01:00
|
|
|
|
|
|
|
@controller.append_view_path(FIXTURE_LOAD_PATH)
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal [FIXTURE_LOAD_PATH, 'foo', 'bar', 'baz', FIXTURE_LOAD_PATH], @controller.view_paths.map(&:to_s)
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_controller_prepends_view_path_correctly
|
2008-05-18 06:22:34 +02:00
|
|
|
@controller.prepend_view_path 'baz'
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal ['baz', FIXTURE_LOAD_PATH], @controller.view_paths.map(&:to_s)
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2008-05-18 06:22:34 +02:00
|
|
|
@controller.prepend_view_path(%w(foo bar))
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal ['foo', 'bar', 'baz', FIXTURE_LOAD_PATH], @controller.view_paths.map(&:to_s)
|
2008-10-27 07:47:01 +01:00
|
|
|
|
|
|
|
@controller.prepend_view_path(FIXTURE_LOAD_PATH)
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal [FIXTURE_LOAD_PATH, 'foo', 'bar', 'baz', FIXTURE_LOAD_PATH], @controller.view_paths.map(&:to_s)
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_template_appends_view_path_correctly
|
|
|
|
@controller.instance_variable_set :@template, ActionView::Base.new(TestController.view_paths, {}, @controller)
|
|
|
|
class_view_paths = TestController.view_paths
|
|
|
|
|
|
|
|
@controller.append_view_path 'foo'
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal [FIXTURE_LOAD_PATH, 'foo'], @controller.view_paths.map(&:to_s)
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
@controller.append_view_path(%w(bar baz))
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal [FIXTURE_LOAD_PATH, 'foo', 'bar', 'baz'], @controller.view_paths.map(&:to_s)
|
2007-12-21 08:48:59 +01:00
|
|
|
assert_equal class_view_paths, TestController.view_paths
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_template_prepends_view_path_correctly
|
|
|
|
@controller.instance_variable_set :@template, ActionView::Base.new(TestController.view_paths, {}, @controller)
|
|
|
|
class_view_paths = TestController.view_paths
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
@controller.prepend_view_path 'baz'
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal ['baz', FIXTURE_LOAD_PATH], @controller.view_paths.map(&:to_s)
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
@controller.prepend_view_path(%w(foo bar))
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal ['foo', 'bar', 'baz', FIXTURE_LOAD_PATH], @controller.view_paths.map(&:to_s)
|
2007-12-21 08:48:59 +01:00
|
|
|
assert_equal class_view_paths, TestController.view_paths
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_view_paths
|
|
|
|
get :hello_world
|
|
|
|
assert_response :success
|
|
|
|
assert_equal "Hello world!", @response.body
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_view_paths_override
|
2008-10-27 07:47:01 +01:00
|
|
|
TestController.prepend_view_path "#{FIXTURE_LOAD_PATH}/override"
|
2007-12-21 08:48:59 +01:00
|
|
|
get :hello_world
|
|
|
|
assert_response :success
|
|
|
|
assert_equal "Hello overridden world!", @response.body
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_view_paths_override_for_layouts_in_controllers_with_a_module
|
|
|
|
@controller = Test::SubController.new
|
2008-10-27 07:47:01 +01:00
|
|
|
Test::SubController.view_paths = [ "#{FIXTURE_LOAD_PATH}/override", FIXTURE_LOAD_PATH, "#{FIXTURE_LOAD_PATH}/override2" ]
|
2007-12-21 08:48:59 +01:00
|
|
|
get :hello_world
|
|
|
|
assert_response :success
|
|
|
|
assert_equal "layout: Hello overridden world!", @response.body
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_view_paths_override_at_request_time
|
|
|
|
get :hello_world_at_request_time
|
|
|
|
assert_response :success
|
|
|
|
assert_equal "Hello overridden world!", @response.body
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_inheritance
|
|
|
|
original_load_paths = ActionController::Base.view_paths
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
self.class.class_eval %{
|
|
|
|
class A < ActionController::Base; end
|
|
|
|
class B < A; end
|
|
|
|
class C < ActionController::Base; end
|
|
|
|
}
|
2008-10-27 07:47:01 +01:00
|
|
|
|
|
|
|
A.view_paths = ['a/path']
|
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal ['a/path'], A.view_paths.map(&:to_s)
|
2008-10-27 07:47:01 +01:00
|
|
|
assert_equal A.view_paths, B.view_paths
|
2007-12-21 08:48:59 +01:00
|
|
|
assert_equal original_load_paths, C.view_paths
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
C.view_paths = []
|
|
|
|
assert_nothing_raised { C.view_paths << 'c/path' }
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal ['c/path'], C.view_paths.map(&:to_s)
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
end
|