2014-05-09 02:39:16 -04:00
|
|
|
require 'spec_helper'
|
2011-03-28 04:11:57 -04:00
|
|
|
|
|
|
|
describe Sinatra::ContentFor do
|
2011-04-26 05:05:14 -04:00
|
|
|
subject do
|
|
|
|
Sinatra.new do
|
|
|
|
helpers Sinatra::ContentFor
|
|
|
|
set :views, File.expand_path("../content_for", __FILE__)
|
|
|
|
end.new!
|
|
|
|
end
|
|
|
|
|
2011-04-26 16:19:03 -04:00
|
|
|
Tilt.prefer Tilt::ERBTemplate
|
|
|
|
|
2011-04-26 05:05:14 -04:00
|
|
|
extend Forwardable
|
2016-05-03 04:39:16 -04:00
|
|
|
def_delegators :subject, :content_for, :clear_content_for, :yield_content
|
2011-04-26 05:05:14 -04:00
|
|
|
def render(engine, template)
|
|
|
|
subject.send(:render, engine, template, :layout => false).gsub(/\s/, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "without templates" do
|
|
|
|
it 'renders blocks declared with the same key you use when rendering' do
|
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
yield_content(:foo).should == "foo"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders blocks more than once' do
|
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
3.times { yield_content(:foo).should == "foo" }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not render a block with a different key' do
|
|
|
|
content_for(:bar) { "bar" }
|
|
|
|
yield_content(:foo).should be_empty
|
|
|
|
end
|
|
|
|
|
2014-02-11 18:41:59 -05:00
|
|
|
it 'renders default content if no block matches the key and a default block is specified' do
|
|
|
|
content_for(:bar) { "bar" }
|
|
|
|
yield_content(:foo) { "foo" }.should == "foo"
|
|
|
|
end
|
|
|
|
|
2011-04-26 05:05:14 -04:00
|
|
|
it 'renders multiple blocks with the same key' do
|
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
content_for(:foo) { "bar" }
|
|
|
|
content_for(:bar) { "WON'T RENDER ME" }
|
|
|
|
content_for(:foo) { "baz" }
|
|
|
|
yield_content(:foo).should == "foobarbaz"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders multiple blocks more than once' do
|
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
content_for(:foo) { "bar" }
|
|
|
|
content_for(:bar) { "WON'T RENDER ME" }
|
|
|
|
content_for(:foo) { "baz" }
|
|
|
|
3.times { yield_content(:foo).should == "foobarbaz" }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'passes values to the blocks' do
|
|
|
|
content_for(:foo) { |a| a.upcase }
|
|
|
|
yield_content(:foo, 'a').should == "A"
|
|
|
|
yield_content(:foo, 'b').should == "B"
|
|
|
|
end
|
2015-03-06 17:31:18 -05:00
|
|
|
|
|
|
|
it 'clears named blocks with the specified key' do
|
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
yield_content(:foo).should == "foo"
|
|
|
|
clear_content_for(:foo)
|
|
|
|
yield_content(:foo).should be_empty
|
|
|
|
end
|
2015-06-11 22:16:57 -04:00
|
|
|
|
|
|
|
it 'takes an immediate value instead of a block' do
|
|
|
|
content_for(:foo, "foo")
|
|
|
|
yield_content(:foo).should == "foo"
|
|
|
|
end
|
2011-04-26 05:05:14 -04:00
|
|
|
end
|
|
|
|
|
2011-03-28 10:56:54 -04:00
|
|
|
# TODO: liquid radius markaby builder nokogiri
|
|
|
|
engines = %w[erb erubis haml slim]
|
2011-04-26 05:05:14 -04:00
|
|
|
|
2011-03-28 04:11:57 -04:00
|
|
|
engines.each do |inner|
|
2011-04-26 05:05:14 -04:00
|
|
|
describe inner.capitalize do
|
|
|
|
before :all do
|
|
|
|
begin
|
|
|
|
require inner
|
|
|
|
rescue LoadError => e
|
|
|
|
pending "Skipping: " << e.message
|
2011-03-28 04:11:57 -04:00
|
|
|
end
|
2011-04-26 05:05:14 -04:00
|
|
|
end
|
2011-03-28 04:11:57 -04:00
|
|
|
|
2011-04-26 05:05:14 -04:00
|
|
|
describe "with yield_content in Ruby" do
|
|
|
|
it 'renders blocks declared with the same key you use when rendering' do
|
|
|
|
render inner, :same_key
|
|
|
|
yield_content(:foo).strip.should == "foo"
|
2011-03-28 04:11:57 -04:00
|
|
|
end
|
|
|
|
|
2011-04-26 05:05:14 -04:00
|
|
|
it 'renders blocks more than once' do
|
|
|
|
render inner, :same_key
|
|
|
|
3.times { yield_content(:foo).strip.should == "foo" }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not render a block with a different key' do
|
|
|
|
render inner, :different_key
|
|
|
|
yield_content(:foo).should be_empty
|
|
|
|
end
|
|
|
|
|
2014-02-11 18:41:59 -05:00
|
|
|
it 'renders default content if no block matches the key and a default block is specified' do
|
|
|
|
render inner, :different_key
|
|
|
|
yield_content(:foo) { "foo" }.should == "foo"
|
|
|
|
end
|
|
|
|
|
2011-04-26 05:05:14 -04:00
|
|
|
it 'renders multiple blocks with the same key' do
|
|
|
|
render inner, :multiple_blocks
|
|
|
|
yield_content(:foo).gsub(/\s/, '').should == "foobarbaz"
|
2011-03-28 04:11:57 -04:00
|
|
|
end
|
|
|
|
|
2011-04-26 05:05:14 -04:00
|
|
|
it 'renders multiple blocks more than once' do
|
|
|
|
render inner, :multiple_blocks
|
|
|
|
3.times { yield_content(:foo).gsub(/\s/, '').should == "foobarbaz" }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'passes values to the blocks' do
|
|
|
|
render inner, :takes_values
|
|
|
|
yield_content(:foo, 1, 2).gsub(/\s/, '').should == "<i>1</i>2"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "with content_for in Ruby" do
|
2011-03-28 04:11:57 -04:00
|
|
|
it 'renders blocks declared with the same key you use when rendering' do
|
2011-04-26 05:05:14 -04:00
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
render(inner, :layout).should == "foo"
|
2011-03-28 04:11:57 -04:00
|
|
|
end
|
|
|
|
|
2011-03-28 11:12:43 -04:00
|
|
|
it 'renders blocks more than once' do
|
2011-04-26 05:05:14 -04:00
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
render(inner, :multiple_yields).should == "foofoofoo"
|
2011-03-28 11:12:43 -04:00
|
|
|
end
|
|
|
|
|
2011-03-28 04:11:57 -04:00
|
|
|
it 'does not render a block with a different key' do
|
2011-04-26 05:05:14 -04:00
|
|
|
content_for(:bar) { "foo" }
|
|
|
|
render(inner, :layout).should be_empty
|
2011-03-28 04:11:57 -04:00
|
|
|
end
|
|
|
|
|
2011-04-26 05:05:14 -04:00
|
|
|
it 'renders multiple blocks with the same key' do
|
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
content_for(:foo) { "bar" }
|
|
|
|
content_for(:bar) { "WON'T RENDER ME" }
|
|
|
|
content_for(:foo) { "baz" }
|
|
|
|
render(inner, :layout).should == "foobarbaz"
|
2011-03-28 04:11:57 -04:00
|
|
|
end
|
|
|
|
|
2011-03-28 11:12:43 -04:00
|
|
|
it 'renders multiple blocks more than once' do
|
2011-04-26 05:05:14 -04:00
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
content_for(:foo) { "bar" }
|
|
|
|
content_for(:bar) { "WON'T RENDER ME" }
|
|
|
|
content_for(:foo) { "baz" }
|
|
|
|
render(inner, :multiple_yields).should == "foobarbazfoobarbazfoobarbaz"
|
2011-03-28 11:12:43 -04:00
|
|
|
end
|
|
|
|
|
2011-03-28 04:11:57 -04:00
|
|
|
it 'passes values to the blocks' do
|
2011-04-26 05:05:14 -04:00
|
|
|
content_for(:foo) { |a,b| "<i>#{a}</i>#{b}" }
|
|
|
|
render(inner, :passes_values).should == "<i>1</i>2"
|
|
|
|
end
|
2015-03-06 17:31:18 -05:00
|
|
|
|
|
|
|
it 'clears named blocks with the specified key' do
|
|
|
|
content_for(:foo) { "foo" }
|
|
|
|
render(inner, :layout).should == "foo"
|
|
|
|
clear_content_for(:foo)
|
|
|
|
render(inner, :layout).should be_empty
|
|
|
|
end
|
2011-04-26 05:05:14 -04:00
|
|
|
end
|
2012-12-09 14:10:08 -05:00
|
|
|
|
2011-12-15 16:27:19 -05:00
|
|
|
describe "with content_for? in Ruby" do
|
2012-12-09 14:10:08 -05:00
|
|
|
it 'renders block if key is set' do
|
2011-12-15 16:27:19 -05:00
|
|
|
content_for(:foo) { "foot" }
|
|
|
|
render(inner, :footer).should == "foot"
|
|
|
|
end
|
2012-12-09 14:10:08 -05:00
|
|
|
|
2011-12-15 16:27:19 -05:00
|
|
|
it 'does not render a block if different key' do
|
|
|
|
content_for(:different_key) { "foot" }
|
|
|
|
render(inner, :footer).should be_empty
|
|
|
|
end
|
|
|
|
end
|
2011-04-26 05:05:14 -04:00
|
|
|
|
|
|
|
engines.each do |outer|
|
|
|
|
describe "with yield_content in #{outer.capitalize}" do
|
|
|
|
def body
|
|
|
|
last_response.body.gsub(/\s/, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
before :all do
|
|
|
|
begin
|
|
|
|
require outer
|
|
|
|
rescue LoadError => e
|
|
|
|
pending "Skipping: " << e.message
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
mock_app do
|
|
|
|
helpers Sinatra::ContentFor
|
|
|
|
set inner, :layout_engine => outer
|
|
|
|
set :views, File.expand_path("../content_for", __FILE__)
|
2011-08-17 06:32:19 -04:00
|
|
|
get('/:view') { render(inner, params[:view].to_sym) }
|
2011-04-26 05:05:14 -04:00
|
|
|
get('/:layout/:view') do
|
2011-08-17 06:32:19 -04:00
|
|
|
render inner, params[:view].to_sym, :layout => params[:layout].to_sym
|
2011-04-26 05:05:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders blocks declared with the same key you use when rendering' do
|
|
|
|
get('/same_key').should be_ok
|
|
|
|
body.should == "foo"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders blocks more than once' do
|
|
|
|
get('/multiple_yields/same_key').should be_ok
|
|
|
|
body.should == "foofoofoo"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not render a block with a different key' do
|
|
|
|
get('/different_key').should be_ok
|
|
|
|
body.should be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders multiple blocks with the same key' do
|
|
|
|
get('/multiple_blocks').should be_ok
|
|
|
|
body.should == "foobarbaz"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders multiple blocks more than once' do
|
|
|
|
get('/multiple_yields/multiple_blocks').should be_ok
|
|
|
|
body.should == "foobarbazfoobarbazfoobarbaz"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'passes values to the blocks' do
|
|
|
|
get('/passes_values/takes_values').should be_ok
|
|
|
|
body.should == "<i>1</i>2"
|
|
|
|
end
|
2011-03-28 04:11:57 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|