1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/controller/new_base/render_layout_test.rb

128 lines
3.5 KiB
Ruby
Raw Normal View History

2009-09-19 13:10:41 -04:00
require 'abstract_unit'
2009-04-07 20:57:20 -04:00
module ControllerLayouts
class ImplicitController < ::ApplicationController
self.view_paths = [ActionView::FixtureResolver.new(
"layouts/application.html.erb" => "Main <%= yield %> Layout",
"layouts/override.html.erb" => "Override! <%= yield %>",
2009-05-13 20:00:36 -04:00
"basic.html.erb" => "Hello world!",
"controller_layouts/implicit/layout_false.html.erb" => "hi(layout_false.html.erb)"
2009-04-07 20:57:20 -04:00
)]
2009-04-07 20:57:20 -04:00
def index
render :template => "basic"
end
def override
render :template => "basic", :layout => "override"
end
2009-05-13 20:00:36 -04:00
def layout_false
render :layout => false
end
def builder_override
end
2009-04-07 20:57:20 -04:00
end
2009-04-07 20:57:20 -04:00
class ImplicitNameController < ::ApplicationController
self.view_paths = [ActionView::FixtureResolver.new(
"layouts/controller_layouts/implicit_name.html.erb" => "Implicit <%= yield %> Layout",
2009-04-07 20:57:20 -04:00
"basic.html.erb" => "Hello world!"
)]
2009-04-07 20:57:20 -04:00
def index
render :template => "basic"
end
end
class RenderLayoutTest < Rack::TestCase
test "rendering a normal template, but using the implicit layout" do
get "/controller_layouts/implicit/index"
assert_body "Main Hello world! Layout"
assert_status 200
end
test "rendering a normal template, but using an implicit NAMED layout" do
get "/controller_layouts/implicit_name/index"
assert_body "Implicit Hello world! Layout"
assert_status 200
end
test "overriding an implicit layout with render :layout option" do
get "/controller_layouts/implicit/override"
assert_body "Override! Hello world!"
end
end
class LayoutOptionsTest < Rack::TestCase
2009-05-13 20:00:36 -04:00
testing ControllerLayouts::ImplicitController
2009-05-13 20:00:36 -04:00
test "rendering with :layout => false leaves out the implicit layout" do
get :layout_false
assert_response "hi(layout_false.html.erb)"
2009-05-13 20:00:36 -04:00
end
end
class MismatchFormatController < ::ApplicationController
self.view_paths = [ActionView::FixtureResolver.new(
"layouts/application.html.erb" => "<html><%= yield %></html>",
2011-03-25 18:12:09 -04:00
"controller_layouts/mismatch_format/index.xml.builder" => "xml.instruct!",
"controller_layouts/mismatch_format/implicit.builder" => "xml.instruct!",
"controller_layouts/mismatch_format/explicit.js.erb" => "alert('foo');"
)]
def explicit
render :layout => "application"
end
end
class MismatchFormatTest < Rack::TestCase
testing ControllerLayouts::MismatchFormatController
2011-03-25 18:12:09 -04:00
XML_INSTRUCT = %Q(<?xml version="1.0" encoding="UTF-8"?>\n)
2011-03-25 18:12:09 -04:00
test "if XML is selected, an HTML template is not also selected" do
get :index, :format => "xml"
assert_response XML_INSTRUCT
end
2011-03-25 18:12:09 -04:00
test "if XML is implicitly selected, an HTML template is not also selected" do
get :implicit
2011-03-25 18:12:09 -04:00
assert_response XML_INSTRUCT
end
test "a layout for JS is ignored even if explicitly provided for HTML" do
get :explicit, { :format => "js" }
assert_response "alert('foo');"
end
end
class FalseLayoutMethodController < ::ApplicationController
self.view_paths = [ActionView::FixtureResolver.new(
"controller_layouts/false_layout_method/index.js.erb" => "alert('foo');"
)]
layout :which_layout?
def which_layout?
false
end
def index
end
end
class FalseLayoutMethodTest < Rack::TestCase
testing ControllerLayouts::FalseLayoutMethodController
test "access false layout returned by a method/proc" do
get :index, :format => "js"
assert_response "alert('foo');"
end
end
end