Sha256: 83f532ad7e7080ee45cd031a0d3e8bd9109ab1e38758849076ddf3f32304e3f2

Contents?: true

Size: 1.9 KB

Versions: 14

Compression:

Stored size: 1.9 KB

Contents

require File.expand_path('../test_helper', File.dirname(__FILE__))

class SitesTest < ActionDispatch::IntegrationTest
  
  def test_get_admin
    http_auth :get, cms_admin_pages_path
    assert_response :success
  end
  
  def test_get_admin_with_no_site
    CmsSite.delete_all
    assert_difference 'CmsSite.count' do
      http_auth :get, cms_admin_pages_path
      assert_response :redirect
      assert_redirected_to new_cms_admin_page_path
      site = CmsSite.first
      assert_equal 'test.host', site.hostname
      assert_equal 'Default Site', site.label
    end
  end
  
  def test_get_admin_with_wrong_site
    site = cms_sites(:default)
    site.update_attribute(:hostname, 'remote.host')
    assert_no_difference 'CmsSite.count' do
      http_auth :get, cms_admin_pages_path
      assert_response :success
      site.reload
      assert_equal 'test.host', site.hostname
    end
  end
  
  def test_get_admin_with_two_wrong_sites
    CmsSite.delete_all
    CmsSite.create!(:label => 'Site1', :hostname => 'site1.host')
    CmsSite.create!(:label => 'Site2', :hostname => 'site2.host')
    assert_no_difference 'CmsSite.count' do
      http_auth :get, cms_admin_pages_path
      assert_response :redirect
      assert_redirected_to cms_admin_sites_path
      assert_equal 'No Site defined for this hostname. Create it now.', flash[:error]
    end
  end
  
  def test_get_admin_with_no_site_and_no_auto_manage
    ComfortableMexicanSofa.config.auto_manage_sites = false
    CmsSite.delete_all
    assert_no_difference 'CmsSite.count' do
      http_auth :get, cms_admin_pages_path
      assert_response :redirect
      assert_redirected_to cms_admin_sites_path
      assert_equal 'No Site defined for this hostname. Create it now.', flash[:error]
    end
  end
  
  def test_get_public_page_for_non_existent_site
    host! 'bogus.host'
    get '/'
    assert_response 404
    assert_equal 'Site Not Found', response.body
  end
  
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.0.51 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.50 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.49 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.48 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.47 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.46 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.45 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.44 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.43 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.42 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.41 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.40 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.39 test/integration/sites_test.rb
comfortable_mexican_sofa-1.0.38 test/integration/sites_test.rb