Sha256: 9ce4e674a0d8358d7c57cc7d573eab14628cd004f5caf4cee3d3f1d6a52d67b4

Contents?: true

Size: 1.32 KB

Versions: 10

Compression:

Stored size: 1.32 KB

Contents

require File.dirname(__FILE__) + '/../../test/test_helper'
require File.dirname(__FILE__) + '/../spec_helper'
require 'theme_controller'

# Re-raise errors caught by the controller.
class ThemeController; def rescue_action(e) raise e end; end

describe ThemeController do
  integrate_views

  def test_stylesheets
    get :stylesheets, :filename => "style.css"
    assert_response :success
    assert_equal "text/css; charset=utf-8", @response.headers['type']
    assert_equal "inline; filename=\"style.css\"", @response.headers['Content-Disposition']
  end

  def test_images
    get :images, :filename => "bg_white.png"
    assert_response :success
    assert_equal "image/png", @response.headers['type']
    assert_equal "inline; filename=\"bg_white.png\"", @response.headers['Content-Disposition']
  end

  def test_malicious_path
    get :stylesheets, :filename => "../../../config/database.yml"
    assert_response 404
  end

  def test_view_theming
    get :static_view_test
    assert_response :success

    assert @response.body =~ /Static View Test from typographic/
  end

  def disabled_test_javascript
    get :stylesheets, :filename => "typo.js"
    assert_response :success
    assert_equal "text/javascript", @response.headers['type']
    assert_equal "inline; filename=\"typo.js\"", @response.headers['Content-Disposition']
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
typo-5.0.3.98.1 spec/controllers/theme_controller_spec.rb
typo-5.0.3.98 spec/controllers/theme_controller_spec.rb
typo-5.1.1 spec/controllers/theme_controller_spec.rb
typo-5.1.2 spec/controllers/theme_controller_spec.rb
typo-5.1.3 spec/controllers/theme_controller_spec.rb
typo-5.1 spec/controllers/theme_controller_spec.rb
typo-5.1.98 spec/controllers/theme_controller_spec.rb
typo-5.2.98 spec/controllers/theme_controller_spec.rb
typo-5.2 spec/controllers/theme_controller_spec.rb
typo-5.3 spec/controllers/theme_controller_spec.rb