102 lines
3.6 KiB
Ruby
102 lines
3.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'Locomotive rendering system' do
|
|
|
|
before(:each) do
|
|
@controller = Locomotive::TestController.new
|
|
Site.any_instance.stubs(:create_default_pages!).returns(true)
|
|
@site = Factory.build(:site)
|
|
Site.stubs(:find).returns(@site)
|
|
@controller.current_site = @site
|
|
@page = Factory.build(:page, :site => nil, :published => true)
|
|
end
|
|
|
|
context 'setting the response' do
|
|
|
|
before(:each) do
|
|
@controller.instance_variable_set(:@page, @page)
|
|
@controller.send(:prepare_and_set_response, 'Hello world !')
|
|
end
|
|
|
|
it 'sets the content type to html' do
|
|
@controller.response.headers['Content-Type'].should == 'text/html; charset=utf-8'
|
|
end
|
|
|
|
it 'displays the output' do
|
|
@controller.output.should == 'Hello world !'
|
|
end
|
|
|
|
it 'does not set the cache' do
|
|
@controller.response.headers['Cache-Control'].should be_nil
|
|
end
|
|
|
|
it 'sets the cache by simply using etag' do
|
|
@page.cache_strategy = 'simple'
|
|
@page.stubs(:updated_at).returns(Time.now)
|
|
@controller.send(:prepare_and_set_response, 'Hello world !')
|
|
@controller.response.to_a # force to build headers
|
|
@controller.response.headers['Cache-Control'].should == 'public'
|
|
end
|
|
|
|
it 'sets the cache for Varnish' do
|
|
@page.cache_strategy = '3600'
|
|
@page.stubs(:updated_at).returns(Time.now)
|
|
@controller.send(:prepare_and_set_response, 'Hello world !')
|
|
@controller.response.to_a # force to build headers
|
|
@controller.response.headers['Cache-Control'].should == 'max-age=3600, public'
|
|
end
|
|
|
|
end
|
|
|
|
context 'when retrieving page' do
|
|
|
|
it 'should retrieve the index page /' do
|
|
@controller.request.fullpath = '/'
|
|
@controller.current_site.pages.expects(:where).with({ :fullpath => 'index' }).returns([@page])
|
|
@controller.send(:locomotive_page).should_not be_nil
|
|
end
|
|
|
|
it 'should also retrieve the index page (index.html)' do
|
|
@controller.request.fullpath = '/index.html'
|
|
@controller.current_site.pages.expects(:where).with({ :fullpath => 'index' }).returns([@page])
|
|
@controller.send(:locomotive_page).should_not be_nil
|
|
end
|
|
|
|
it 'should retrieve it based on the full path' do
|
|
@controller.request.fullpath = '/about_us/team.html'
|
|
@controller.current_site.pages.expects(:where).with({ :fullpath => 'about_us/team' }).returns([@page])
|
|
@controller.send(:locomotive_page).should_not be_nil
|
|
end
|
|
|
|
it 'should return the 404 page if the page does not exist' do
|
|
@controller.request.fullpath = '/contact'
|
|
@controller.current_site.pages.expects(:not_found).returns([true])
|
|
@controller.send(:locomotive_page).should be_true
|
|
end
|
|
|
|
context 'non published page' do
|
|
|
|
before(:each) do
|
|
@page.published = false
|
|
@controller.current_admin = nil
|
|
end
|
|
|
|
it 'should return the 404 page if the page has not been published yet' do
|
|
@controller.request.fullpath = '/contact'
|
|
@controller.current_site.pages.expects(:where).with({ :fullpath => 'contact' }).returns([@page])
|
|
@controller.current_site.pages.expects(:not_found).returns([true])
|
|
@controller.send(:locomotive_page).should be_true
|
|
end
|
|
|
|
it 'should not return the 404 page if the page has not been published yet and admin is logged in' do
|
|
@controller.current_admin = true
|
|
@controller.request.fullpath = '/contact'
|
|
@controller.current_site.pages.expects(:where).with({ :fullpath => 'contact' }).returns([@page])
|
|
@controller.send(:locomotive_page).should == @page
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end |