Sha256: 9f69db7cdb07b07e65cc688ac164dd9753e4a58206116ae6ae07c8c8c1080380

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

require 'spec_helper'

describe Spud::Cms::SitemapsController do
  describe :show do
    before(:each) do
        Spud::Core.configure do |config|
          config.site_name = "Test Site"
          config.multisite_mode_enabled = false
          config.multisite_config = []
        end

      end
    it "should return the sitemap urls" do

      get :show, :format => :xml

      assigns(:pages).should == SpudPage.published_pages.is_public.order(:spud_page_id)
    end

    it "should only respond to an XML format" do
      expect {
        get :show
      }.to raise_exception(ActionController::UnknownFormat)
    end

    describe :multisite do
      before(:each) do
        Spud::Core.configure do |config|
          config.site_name = "Test Site"
          config.multisite_mode_enabled = true
          config.multisite_config = [{:hosts => ["test.host"], :site_name =>"Site B", :site_id => 1}]
        end
      end

      it "should only assign pages for current site" do
        2.times {|x|  s = FactoryGirl.create(:spud_page)}
        3.times {|x|  s = FactoryGirl.create(:spud_page,:site_id => 1)}

        get :show, :format => :xml

        assigns(:pages).should == SpudPage.published_pages.is_public.order(:spud_page_id).site(1)

      end

    end
  end


end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spud_cms-1.0.2 spec/controllers/spud/cms/sitemaps_controller_spec.rb
spud_cms-1.0.1 spec/controllers/spud/cms/sitemaps_controller_spec.rb