2008-05-18 06:22:34 +02:00
|
|
|
require 'abstract_unit'
|
2007-01-22 14:43:50 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# The view_paths array must be set on Base and not LayoutTest so that LayoutTest's inherited
|
|
|
|
# method has access to the view_paths array when looking for a layout to automatically assign.
|
|
|
|
old_load_paths = ActionController::Base.view_paths
|
2009-02-04 21:26:08 +01:00
|
|
|
|
|
|
|
ActionView::Template::register_template_handler :mab,
|
|
|
|
lambda { |template| template.source.inspect }
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
ActionController::Base.view_paths = [ File.dirname(__FILE__) + '/../fixtures/layout_tests/' ]
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
class LayoutTest < ActionController::Base
|
|
|
|
def self.controller_path; 'views' end
|
2007-12-21 08:48:59 +01:00
|
|
|
self.view_paths = ActionController::Base.view_paths.dup
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# Restore view_paths to previous value
|
|
|
|
ActionController::Base.view_paths = old_load_paths
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
class ProductController < LayoutTest
|
|
|
|
end
|
|
|
|
|
|
|
|
class ItemController < LayoutTest
|
|
|
|
end
|
|
|
|
|
|
|
|
class ThirdPartyTemplateLibraryController < LayoutTest
|
|
|
|
end
|
|
|
|
|
|
|
|
module ControllerNameSpace
|
|
|
|
end
|
|
|
|
|
|
|
|
class ControllerNameSpace::NestedController < LayoutTest
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
class MultipleExtensions < LayoutTest
|
|
|
|
end
|
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
class LayoutAutoDiscoveryTest < ActionController::TestCase
|
2007-01-22 14:43:50 +01:00
|
|
|
def setup
|
|
|
|
@request.host = "www.nextangle.com"
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
def test_application_layout_is_default_when_no_controller_match
|
|
|
|
@controller = ProductController.new
|
|
|
|
get :hello
|
|
|
|
assert_equal 'layout_test.rhtml hello.rhtml', @response.body
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
def test_controller_name_layout_name_match
|
|
|
|
@controller = ItemController.new
|
|
|
|
get :hello
|
|
|
|
assert_equal 'item.rhtml hello.rhtml', @response.body
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
def test_third_party_template_library_auto_discovers_layout
|
|
|
|
@controller = ThirdPartyTemplateLibraryController.new
|
|
|
|
get :hello
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal 'layouts/third_party_template_library.mab', @controller.active_layout.to_s
|
2007-12-21 08:48:59 +01:00
|
|
|
assert_equal 'layouts/third_party_template_library', @response.layout
|
2008-05-18 06:22:34 +02:00
|
|
|
assert_response :success
|
2007-01-22 14:43:50 +01:00
|
|
|
assert_equal 'Mab', @response.body
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
def test_namespaced_controllers_auto_detect_layouts
|
|
|
|
@controller = ControllerNameSpace::NestedController.new
|
|
|
|
get :hello
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal 'layouts/controller_name_space/nested', @controller.active_layout.to_s
|
2007-01-22 14:43:50 +01:00
|
|
|
assert_equal 'controller_name_space/nested.rhtml hello.rhtml', @response.body
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_namespaced_controllers_auto_detect_layouts
|
|
|
|
@controller = MultipleExtensions.new
|
|
|
|
get :hello
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_equal 'layouts/multiple_extensions.html.erb', @controller.active_layout.to_s
|
2007-12-21 08:48:59 +01:00
|
|
|
assert_equal 'multiple_extensions.html.erb hello.rhtml', @response.body.strip
|
|
|
|
end
|
2007-02-09 09:04:31 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
class DefaultLayoutController < LayoutTest
|
|
|
|
end
|
|
|
|
|
2009-03-16 15:55:30 +01:00
|
|
|
class AbsolutePathLayoutController < LayoutTest
|
|
|
|
layout File.expand_path(File.expand_path(__FILE__) + '/../../fixtures/layout_tests/layouts/layout_test.rhtml')
|
|
|
|
end
|
|
|
|
|
2007-02-09 09:04:31 +01:00
|
|
|
class HasOwnLayoutController < LayoutTest
|
|
|
|
layout 'item'
|
|
|
|
end
|
|
|
|
|
2009-02-28 02:23:00 +01:00
|
|
|
class PrependsViewPathController < LayoutTest
|
|
|
|
def hello
|
|
|
|
prepend_view_path File.dirname(__FILE__) + '/../fixtures/layout_tests/alt/'
|
|
|
|
render :layout => 'alt'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-02-09 09:04:31 +01:00
|
|
|
class SetsLayoutInRenderController < LayoutTest
|
|
|
|
def hello
|
|
|
|
render :layout => 'third_party_template_library'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RendersNoLayoutController < LayoutTest
|
|
|
|
def hello
|
|
|
|
render :layout => false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
class LayoutSetInResponseTest < ActionController::TestCase
|
2007-02-09 09:04:31 +01:00
|
|
|
def test_layout_set_when_using_default_layout
|
|
|
|
@controller = DefaultLayoutController.new
|
|
|
|
get :hello
|
|
|
|
assert_equal 'layouts/layout_test', @response.layout
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-02-09 09:04:31 +01:00
|
|
|
def test_layout_set_when_set_in_controller
|
|
|
|
@controller = HasOwnLayoutController.new
|
|
|
|
get :hello
|
|
|
|
assert_equal 'layouts/item', @response.layout
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-02-09 09:04:31 +01:00
|
|
|
def test_layout_set_when_using_render
|
|
|
|
@controller = SetsLayoutInRenderController.new
|
|
|
|
get :hello
|
|
|
|
assert_equal 'layouts/third_party_template_library', @response.layout
|
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-02-09 09:04:31 +01:00
|
|
|
def test_layout_is_not_set_when_none_rendered
|
|
|
|
@controller = RendersNoLayoutController.new
|
|
|
|
get :hello
|
|
|
|
assert_nil @response.layout
|
|
|
|
end
|
2007-12-21 08:48:59 +01:00
|
|
|
|
|
|
|
def test_exempt_from_layout_honored_by_render_template
|
|
|
|
ActionController::Base.exempt_from_layout :rhtml
|
|
|
|
@controller = RenderWithTemplateOptionController.new
|
|
|
|
|
|
|
|
get :hello
|
|
|
|
assert_equal "alt/hello.rhtml", @response.body.strip
|
|
|
|
|
|
|
|
ensure
|
|
|
|
ActionController::Base.exempt_from_layout.delete(/\.rhtml$/)
|
|
|
|
end
|
2009-03-16 15:55:30 +01:00
|
|
|
|
2009-02-28 02:23:00 +01:00
|
|
|
def test_layout_is_picked_from_the_controller_instances_view_path
|
|
|
|
@controller = PrependsViewPathController.new
|
|
|
|
get :hello
|
|
|
|
assert_equal 'layouts/alt', @response.layout
|
|
|
|
end
|
2009-03-16 15:55:30 +01:00
|
|
|
|
|
|
|
def test_absolute_pathed_layout
|
|
|
|
@controller = AbsolutePathLayoutController.new
|
|
|
|
get :hello
|
|
|
|
assert_equal "layout_test.rhtml hello.rhtml", @response.body.strip
|
|
|
|
end
|
2007-02-09 09:04:31 +01:00
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
class RenderWithTemplateOptionController < LayoutTest
|
|
|
|
def hello
|
|
|
|
render :template => 'alt/hello'
|
|
|
|
end
|
|
|
|
end
|
2007-02-09 09:04:31 +01:00
|
|
|
|
|
|
|
class SetsNonExistentLayoutFile < LayoutTest
|
|
|
|
layout "nofile.rhtml"
|
|
|
|
end
|
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
class LayoutExceptionRaised < ActionController::TestCase
|
2007-02-09 09:04:31 +01:00
|
|
|
def test_exception_raised_when_layout_file_not_found
|
|
|
|
@controller = SetsNonExistentLayoutFile.new
|
|
|
|
get :hello
|
2009-02-04 21:26:08 +01:00
|
|
|
assert_kind_of ActionView::MissingTemplate, @response.template.instance_eval { @exception }
|
2007-02-09 09:04:31 +01:00
|
|
|
end
|
|
|
|
end
|
2007-12-21 08:48:59 +01:00
|
|
|
|
|
|
|
class LayoutStatusIsRendered < LayoutTest
|
|
|
|
def hello
|
|
|
|
render :status => 401
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
class LayoutStatusIsRenderedTest < ActionController::TestCase
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_layout_status_is_rendered
|
|
|
|
@controller = LayoutStatusIsRendered.new
|
|
|
|
get :hello
|
|
|
|
assert_response 401
|
|
|
|
end
|
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
unless RUBY_PLATFORM =~ /(:?mswin|mingw|bccwin)/
|
|
|
|
class LayoutSymlinkedTest < LayoutTest
|
|
|
|
layout "symlinked/symlinked_layout"
|
2008-05-18 06:22:34 +02:00
|
|
|
end
|
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
class LayoutSymlinkedIsRenderedTest < ActionController::TestCase
|
|
|
|
def test_symlinked_layout_is_rendered
|
|
|
|
@controller = LayoutSymlinkedTest.new
|
|
|
|
get :hello
|
|
|
|
assert_response 200
|
|
|
|
assert_equal "layouts/symlinked/symlinked_layout", @response.layout
|
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
end
|
|
|
|
end
|
2009-02-28 02:23:00 +01:00
|
|
|
|