2008-01-05 13:32:06 +00:00
|
|
|
require 'abstract_unit'
|
2007-09-28 16:48:59 +00:00
|
|
|
require 'digest/sha1'
|
2007-09-23 02:32:55 +00:00
|
|
|
|
|
|
|
ActionController::Routing::Routes.draw do |map|
|
|
|
|
map.connect ':controller/:action/:id'
|
|
|
|
end
|
|
|
|
|
2007-09-28 16:50:48 +00:00
|
|
|
# common controller actions
|
|
|
|
module RequestForgeryProtectionActions
|
|
|
|
def index
|
|
|
|
render :inline => "<%= form_tag('/') {} %>"
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_button
|
|
|
|
render :inline => "<%= button_to('New', '/') {} %>"
|
|
|
|
end
|
|
|
|
|
2008-01-08 21:17:08 +00:00
|
|
|
def remote_form
|
|
|
|
render :inline => "<% form_remote_tag(:url => '/') {} %>"
|
|
|
|
end
|
|
|
|
|
2007-09-28 16:50:48 +00:00
|
|
|
def unsafe
|
|
|
|
render :text => 'pwn'
|
|
|
|
end
|
|
|
|
|
|
|
|
def rescue_action(e) raise e end
|
|
|
|
end
|
|
|
|
|
|
|
|
# sample controllers
|
|
|
|
class RequestForgeryProtectionController < ActionController::Base
|
|
|
|
include RequestForgeryProtectionActions
|
|
|
|
protect_from_forgery :only => :index
|
|
|
|
end
|
|
|
|
|
2008-11-20 22:06:19 +00:00
|
|
|
class FreeCookieController < RequestForgeryProtectionController
|
2007-09-28 16:50:48 +00:00
|
|
|
self.allow_forgery_protection = false
|
|
|
|
|
|
|
|
def index
|
|
|
|
render :inline => "<%= form_tag('/') {} %>"
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_button
|
|
|
|
render :inline => "<%= button_to('New', '/') {} %>"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# common test methods
|
|
|
|
|
2007-09-25 16:50:35 +00:00
|
|
|
module RequestForgeryProtectionTests
|
2007-09-23 02:32:55 +00:00
|
|
|
def teardown
|
|
|
|
ActionController::Base.request_forgery_protection_token = nil
|
|
|
|
end
|
2007-09-25 16:50:35 +00:00
|
|
|
|
2008-11-01 04:10:44 +00:00
|
|
|
|
2007-09-23 02:32:55 +00:00
|
|
|
def test_should_render_form_with_token_tag
|
2008-11-01 04:10:44 +00:00
|
|
|
get :index
|
|
|
|
assert_select 'form>div>input[name=?][value=?]', 'authenticity_token', @token
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_render_button_to_with_token_tag
|
|
|
|
get :show_button
|
|
|
|
assert_select 'form>div>input[name=?][value=?]', 'authenticity_token', @token
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_render_remote_form_with_only_one_token_parameter
|
|
|
|
get :remote_form
|
|
|
|
assert_equal 1, @response.body.scan(@token).size
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_allow_get
|
|
|
|
get :index
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_allow_post_without_token_on_unsafe_action
|
|
|
|
post :unsafe
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_allow_html_post_without_token
|
|
|
|
@request.env['CONTENT_TYPE'] = Mime::URL_ENCODED_FORM.to_s
|
|
|
|
assert_raises(ActionController::InvalidAuthenticityToken) { post :index, :format => :html }
|
2007-09-23 02:32:55 +00:00
|
|
|
end
|
2007-09-25 16:50:35 +00:00
|
|
|
|
2008-11-01 04:10:44 +00:00
|
|
|
def test_should_not_allow_html_put_without_token
|
|
|
|
@request.env['CONTENT_TYPE'] = Mime::URL_ENCODED_FORM.to_s
|
|
|
|
assert_raises(ActionController::InvalidAuthenticityToken) { put :index, :format => :html }
|
2007-09-23 02:32:55 +00:00
|
|
|
end
|
|
|
|
|
2008-11-01 04:10:44 +00:00
|
|
|
def test_should_not_allow_html_delete_without_token
|
|
|
|
@request.env['CONTENT_TYPE'] = Mime::URL_ENCODED_FORM.to_s
|
|
|
|
assert_raises(ActionController::InvalidAuthenticityToken) { delete :index, :format => :html }
|
2007-09-23 02:32:55 +00:00
|
|
|
end
|
2008-05-06 07:42:24 +00:00
|
|
|
|
2008-11-01 04:10:44 +00:00
|
|
|
def test_should_allow_api_formatted_post_without_token
|
|
|
|
assert_nothing_raised do
|
2008-05-06 07:42:24 +00:00
|
|
|
post :index, :format => 'xml'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-05-06 09:58:32 +00:00
|
|
|
def test_should_not_allow_api_formatted_put_without_token
|
2008-11-01 04:10:44 +00:00
|
|
|
assert_nothing_raised do
|
2008-05-06 07:42:24 +00:00
|
|
|
put :index, :format => 'xml'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-11-01 04:10:44 +00:00
|
|
|
def test_should_allow_api_formatted_delete_without_token
|
|
|
|
assert_nothing_raised do
|
2008-05-06 09:58:32 +00:00
|
|
|
delete :index, :format => 'xml'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_allow_api_formatted_post_sent_as_url_encoded_form_without_token
|
|
|
|
assert_raises(ActionController::InvalidAuthenticityToken) do
|
|
|
|
@request.env['CONTENT_TYPE'] = Mime::URL_ENCODED_FORM.to_s
|
|
|
|
post :index, :format => 'xml'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_allow_api_formatted_put_sent_as_url_encoded_form_without_token
|
|
|
|
assert_raises(ActionController::InvalidAuthenticityToken) do
|
|
|
|
@request.env['CONTENT_TYPE'] = Mime::URL_ENCODED_FORM.to_s
|
|
|
|
put :index, :format => 'xml'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_allow_api_formatted_delete_sent_as_url_encoded_form_without_token
|
|
|
|
assert_raises(ActionController::InvalidAuthenticityToken) do
|
|
|
|
@request.env['CONTENT_TYPE'] = Mime::URL_ENCODED_FORM.to_s
|
|
|
|
delete :index, :format => 'xml'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_allow_api_formatted_post_sent_as_multipart_form_without_token
|
|
|
|
assert_raises(ActionController::InvalidAuthenticityToken) do
|
|
|
|
@request.env['CONTENT_TYPE'] = Mime::MULTIPART_FORM.to_s
|
|
|
|
post :index, :format => 'xml'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_allow_api_formatted_put_sent_as_multipart_form_without_token
|
|
|
|
assert_raises(ActionController::InvalidAuthenticityToken) do
|
|
|
|
@request.env['CONTENT_TYPE'] = Mime::MULTIPART_FORM.to_s
|
|
|
|
put :index, :format => 'xml'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_allow_api_formatted_delete_sent_as_multipart_form_without_token
|
2008-05-06 07:42:24 +00:00
|
|
|
assert_raises(ActionController::InvalidAuthenticityToken) do
|
2008-05-06 09:58:32 +00:00
|
|
|
@request.env['CONTENT_TYPE'] = Mime::MULTIPART_FORM.to_s
|
2008-05-06 07:42:24 +00:00
|
|
|
delete :index, :format => 'xml'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-11-01 04:10:44 +00:00
|
|
|
def test_should_allow_xhr_post_without_token
|
|
|
|
assert_nothing_raised { xhr :post, :index }
|
|
|
|
end
|
|
|
|
def test_should_not_allow_xhr_post_with_html_without_token
|
|
|
|
@request.env['CONTENT_TYPE'] = Mime::URL_ENCODED_FORM.to_s
|
|
|
|
assert_raise(ActionController::InvalidAuthenticityToken) { xhr :post, :index }
|
2007-09-23 02:32:55 +00:00
|
|
|
end
|
|
|
|
|
2008-11-01 04:10:44 +00:00
|
|
|
def test_should_allow_xhr_put_without_token
|
|
|
|
assert_nothing_raised { xhr :put, :index }
|
2007-09-23 02:32:55 +00:00
|
|
|
end
|
|
|
|
|
2008-11-01 04:10:44 +00:00
|
|
|
def test_should_allow_xhr_delete_without_token
|
|
|
|
assert_nothing_raised { xhr :delete, :index }
|
2007-09-23 02:32:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_allow_post_with_token
|
2007-09-23 18:14:44 +00:00
|
|
|
post :index, :authenticity_token => @token
|
2007-09-23 02:32:55 +00:00
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_allow_put_with_token
|
2007-09-23 18:14:44 +00:00
|
|
|
put :index, :authenticity_token => @token
|
2007-09-23 02:32:55 +00:00
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_allow_delete_with_token
|
2007-09-23 18:14:44 +00:00
|
|
|
delete :index, :authenticity_token => @token
|
2007-09-23 02:32:55 +00:00
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_allow_post_with_xml
|
2008-05-06 07:42:24 +00:00
|
|
|
@request.env['CONTENT_TYPE'] = Mime::XML.to_s
|
2007-09-23 02:32:55 +00:00
|
|
|
post :index, :format => 'xml'
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_allow_put_with_xml
|
2008-05-06 07:42:24 +00:00
|
|
|
@request.env['CONTENT_TYPE'] = Mime::XML.to_s
|
2007-09-23 02:32:55 +00:00
|
|
|
put :index, :format => 'xml'
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_allow_delete_with_xml
|
2008-05-06 07:42:24 +00:00
|
|
|
@request.env['CONTENT_TYPE'] = Mime::XML.to_s
|
2007-09-23 02:32:55 +00:00
|
|
|
delete :index, :format => 'xml'
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-09-28 16:50:48 +00:00
|
|
|
# OK let's get our test on
|
2007-09-25 16:50:35 +00:00
|
|
|
|
2008-11-07 20:42:34 +00:00
|
|
|
class RequestForgeryProtectionControllerTest < ActionController::TestCase
|
2007-09-25 16:50:35 +00:00
|
|
|
include RequestForgeryProtectionTests
|
|
|
|
def setup
|
|
|
|
@controller = RequestForgeryProtectionController.new
|
|
|
|
@request = ActionController::TestRequest.new
|
2008-11-01 04:10:44 +00:00
|
|
|
@request.format = :html
|
2007-09-25 16:50:35 +00:00
|
|
|
@response = ActionController::TestResponse.new
|
2008-11-20 22:06:19 +00:00
|
|
|
@token = "cf50faa3fe97702ca1ae"
|
2007-09-25 16:50:35 +00:00
|
|
|
|
2008-11-20 22:06:19 +00:00
|
|
|
ActiveSupport::SecureRandom.stubs(:base64).returns(@token)
|
2007-09-23 18:14:44 +00:00
|
|
|
ActionController::Base.request_forgery_protection_token = :authenticity_token
|
2007-09-23 02:32:55 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-11-07 20:42:34 +00:00
|
|
|
class FreeCookieControllerTest < ActionController::TestCase
|
2007-09-28 15:55:45 +00:00
|
|
|
def setup
|
|
|
|
@controller = FreeCookieController.new
|
|
|
|
@request = ActionController::TestRequest.new
|
|
|
|
@response = ActionController::TestResponse.new
|
2008-11-20 22:06:19 +00:00
|
|
|
@token = "cf50faa3fe97702ca1ae"
|
|
|
|
|
|
|
|
ActiveSupport::SecureRandom.stubs(:base64).returns(@token)
|
2007-09-28 15:55:45 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_render_form_with_token_tag
|
|
|
|
get :index
|
|
|
|
assert_select 'form>div>input[name=?][value=?]', 'authenticity_token', @token, false
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_render_button_to_with_token_tag
|
|
|
|
get :show_button
|
|
|
|
assert_select 'form>div>input[name=?][value=?]', 'authenticity_token', @token, false
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_allow_all_methods_without_token
|
|
|
|
[:post, :put, :delete].each do |method|
|
|
|
|
assert_nothing_raised { send(method, :index)}
|
|
|
|
end
|
|
|
|
end
|
2007-10-02 05:32:14 +00:00
|
|
|
end
|