2008-01-05 08:32:06 -05:00
|
|
|
require 'abstract_unit'
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2009-12-20 17:33:13 -05:00
|
|
|
ActionController::Base.cookie_verifier_secret = "thisISverySECRET123"
|
|
|
|
|
2009-01-07 16:23:10 -05:00
|
|
|
class CookieTest < ActionController::TestCase
|
2004-11-23 20:04:44 -05:00
|
|
|
class TestController < ActionController::Base
|
2004-11-25 21:04:35 -05:00
|
|
|
def authenticate
|
|
|
|
cookies["user_name"] = "david"
|
2009-05-22 19:57:45 -04:00
|
|
|
head :ok
|
2004-11-25 21:04:35 -05:00
|
|
|
end
|
|
|
|
|
2009-02-03 21:37:55 -05:00
|
|
|
def set_with_with_escapable_characters
|
|
|
|
cookies["that & guy"] = "foo & bar => baz"
|
2009-05-22 19:57:45 -04:00
|
|
|
head :ok
|
2009-02-03 21:37:55 -05:00
|
|
|
end
|
|
|
|
|
2007-09-28 10:18:47 -04:00
|
|
|
def authenticate_for_fourteen_days
|
2008-12-21 07:35:29 -05:00
|
|
|
cookies["user_name"] = { "value" => "david", "expires" => Time.utc(2005, 10, 10,5) }
|
2009-05-22 19:57:45 -04:00
|
|
|
head :ok
|
2004-11-25 21:04:35 -05:00
|
|
|
end
|
|
|
|
|
2007-09-28 10:18:47 -04:00
|
|
|
def authenticate_for_fourteen_days_with_symbols
|
2008-12-21 07:35:29 -05:00
|
|
|
cookies[:user_name] = { :value => "david", :expires => Time.utc(2005, 10, 10,5) }
|
2009-05-22 19:57:45 -04:00
|
|
|
head :ok
|
2004-11-25 21:09:38 -05:00
|
|
|
end
|
|
|
|
|
2004-11-25 21:04:35 -05:00
|
|
|
def set_multiple_cookies
|
2008-12-21 07:35:29 -05:00
|
|
|
cookies["user_name"] = { "value" => "david", "expires" => Time.utc(2005, 10, 10,5) }
|
2004-11-25 21:04:35 -05:00
|
|
|
cookies["login"] = "XJ-122"
|
2009-05-22 19:57:45 -04:00
|
|
|
head :ok
|
2004-11-25 21:04:35 -05:00
|
|
|
end
|
2008-12-19 17:35:23 -05:00
|
|
|
|
2005-04-02 03:54:25 -05:00
|
|
|
def access_frozen_cookies
|
2006-09-29 04:04:39 -04:00
|
|
|
cookies["will"] = "work"
|
2009-05-22 19:57:45 -04:00
|
|
|
head :ok
|
2005-04-02 03:54:25 -05:00
|
|
|
end
|
|
|
|
|
2007-01-17 01:51:59 -05:00
|
|
|
def logout
|
|
|
|
cookies.delete("user_name")
|
2009-05-22 19:57:45 -04:00
|
|
|
head :ok
|
2007-01-17 01:51:59 -05:00
|
|
|
end
|
|
|
|
|
2007-07-01 19:27:59 -04:00
|
|
|
def delete_cookie_with_path
|
|
|
|
cookies.delete("user_name", :path => '/beaten')
|
2009-05-22 19:57:45 -04:00
|
|
|
head :ok
|
2007-07-01 19:27:59 -04:00
|
|
|
end
|
|
|
|
|
2007-09-21 11:05:49 -04:00
|
|
|
def authenticate_with_http_only
|
2009-02-07 16:37:54 -05:00
|
|
|
cookies["user_name"] = { :value => "david", :httponly => true }
|
2009-05-22 19:57:45 -04:00
|
|
|
head :ok
|
2007-01-17 01:51:59 -05:00
|
|
|
end
|
2009-12-20 17:33:13 -05:00
|
|
|
|
|
|
|
def set_permanent_cookie
|
|
|
|
cookies.permanent[:user_name] = "Jamie"
|
|
|
|
head :ok
|
|
|
|
end
|
2010-01-16 18:21:46 -05:00
|
|
|
|
2009-12-20 17:33:13 -05:00
|
|
|
def set_signed_cookie
|
|
|
|
cookies.signed[:user_id] = 45
|
|
|
|
head :ok
|
|
|
|
end
|
2010-01-16 18:21:46 -05:00
|
|
|
|
2009-12-20 17:33:13 -05:00
|
|
|
def set_permanent_signed_cookie
|
|
|
|
cookies.permanent.signed[:remember_me] = 100
|
|
|
|
head :ok
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2009-01-07 16:23:10 -05:00
|
|
|
tests TestController
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2009-01-07 16:23:10 -05:00
|
|
|
def setup
|
2009-04-08 20:33:06 -04:00
|
|
|
super
|
2004-11-23 20:04:44 -05:00
|
|
|
@request.host = "www.nextangle.com"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_setting_cookie
|
2007-01-17 01:51:59 -05:00
|
|
|
get :authenticate
|
2009-05-22 19:57:45 -04:00
|
|
|
assert_cookie_header "user_name=david; path=/"
|
2008-12-20 22:25:09 -05:00
|
|
|
assert_equal({"user_name" => "david"}, @response.cookies)
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2009-02-03 21:37:55 -05:00
|
|
|
def test_setting_with_escapable_characters
|
|
|
|
get :set_with_with_escapable_characters
|
2009-05-22 19:57:45 -04:00
|
|
|
assert_cookie_header "that+%26+guy=foo+%26+bar+%3D%3E+baz; path=/"
|
2009-02-03 21:37:55 -05:00
|
|
|
assert_equal({"that & guy" => "foo & bar => baz"}, @response.cookies)
|
|
|
|
end
|
|
|
|
|
2004-11-25 21:04:35 -05:00
|
|
|
def test_setting_cookie_for_fourteen_days
|
2007-09-28 10:18:47 -04:00
|
|
|
get :authenticate_for_fourteen_days
|
2009-05-22 19:57:45 -04:00
|
|
|
assert_cookie_header "user_name=david; path=/; expires=Mon, 10-Oct-2005 05:00:00 GMT"
|
2008-12-20 22:25:09 -05:00
|
|
|
assert_equal({"user_name" => "david"}, @response.cookies)
|
2008-12-19 18:15:22 -05:00
|
|
|
end
|
2004-11-25 21:04:35 -05:00
|
|
|
|
2004-11-25 21:09:38 -05:00
|
|
|
def test_setting_cookie_for_fourteen_days_with_symbols
|
2008-07-17 13:19:09 -04:00
|
|
|
get :authenticate_for_fourteen_days_with_symbols
|
2009-05-22 19:57:45 -04:00
|
|
|
assert_cookie_header "user_name=david; path=/; expires=Mon, 10-Oct-2005 05:00:00 GMT"
|
2008-12-20 22:25:09 -05:00
|
|
|
assert_equal({"user_name" => "david"}, @response.cookies)
|
2004-11-25 21:09:38 -05:00
|
|
|
end
|
|
|
|
|
2007-09-21 11:05:49 -04:00
|
|
|
def test_setting_cookie_with_http_only
|
|
|
|
get :authenticate_with_http_only
|
2009-05-22 19:57:45 -04:00
|
|
|
assert_cookie_header "user_name=david; path=/; HttpOnly"
|
2008-12-20 22:25:09 -05:00
|
|
|
assert_equal({"user_name" => "david"}, @response.cookies)
|
2008-12-19 18:15:22 -05:00
|
|
|
end
|
2007-09-21 11:05:49 -04:00
|
|
|
|
2004-11-25 21:04:35 -05:00
|
|
|
def test_multiple_cookies
|
2007-01-17 01:51:59 -05:00
|
|
|
get :set_multiple_cookies
|
|
|
|
assert_equal 2, @response.cookies.size
|
2009-05-22 19:57:45 -04:00
|
|
|
assert_cookie_header "user_name=david; path=/; expires=Mon, 10-Oct-2005 05:00:00 GMT\nlogin=XJ-122; path=/"
|
2008-12-20 22:25:09 -05:00
|
|
|
assert_equal({"login" => "XJ-122", "user_name" => "david"}, @response.cookies)
|
2008-12-19 18:15:22 -05:00
|
|
|
end
|
2004-11-25 21:04:35 -05:00
|
|
|
|
2005-04-02 03:54:25 -05:00
|
|
|
def test_setting_test_cookie
|
2007-01-17 01:51:59 -05:00
|
|
|
assert_nothing_raised { get :access_frozen_cookies }
|
|
|
|
end
|
2008-12-19 17:35:23 -05:00
|
|
|
|
2007-01-17 01:51:59 -05:00
|
|
|
def test_expiring_cookie
|
|
|
|
get :logout
|
2009-05-22 19:57:45 -04:00
|
|
|
assert_cookie_header "user_name=; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"
|
2008-12-20 22:25:09 -05:00
|
|
|
assert_equal({"user_name" => nil}, @response.cookies)
|
2008-12-19 18:15:22 -05:00
|
|
|
end
|
2008-12-19 17:35:23 -05:00
|
|
|
|
2007-07-01 19:27:59 -04:00
|
|
|
def test_delete_cookie_with_path
|
|
|
|
get :delete_cookie_with_path
|
2009-05-22 19:57:45 -04:00
|
|
|
assert_cookie_header "user_name=; path=/beaten; expires=Thu, 01-Jan-1970 00:00:00 GMT"
|
2008-05-12 18:25:56 -04:00
|
|
|
end
|
2009-05-22 19:57:45 -04:00
|
|
|
|
2009-05-28 10:18:27 -04:00
|
|
|
def test_cookies_persist_throughout_request
|
2009-10-26 21:01:09 -04:00
|
|
|
response = get :authenticate
|
|
|
|
assert response.headers["Set-Cookie"] =~ /user_name=david/
|
2009-05-28 10:18:27 -04:00
|
|
|
end
|
2009-12-20 17:33:13 -05:00
|
|
|
|
|
|
|
def test_permanent_cookie
|
|
|
|
get :set_permanent_cookie
|
|
|
|
assert_match /Jamie/, @response.headers["Set-Cookie"]
|
2009-12-31 21:32:16 -05:00
|
|
|
assert_match %r(#{20.years.from_now.utc.year}), @response.headers["Set-Cookie"]
|
2009-12-20 17:33:13 -05:00
|
|
|
end
|
2010-01-16 18:21:46 -05:00
|
|
|
|
2009-12-20 17:33:13 -05:00
|
|
|
def test_signed_cookie
|
|
|
|
get :set_signed_cookie
|
|
|
|
assert_equal 45, @controller.send(:cookies).signed[:user_id]
|
|
|
|
end
|
2010-01-16 18:21:46 -05:00
|
|
|
|
2010-01-17 22:30:38 -05:00
|
|
|
def test_accessing_nonexistant_signed_cookie_should_not_raise_an_invalid_signature
|
|
|
|
get :set_signed_cookie
|
|
|
|
assert_nil @controller.send(:cookies).signed[:non_existant_attribute]
|
|
|
|
end
|
|
|
|
|
2009-12-20 17:33:13 -05:00
|
|
|
def test_permanent_signed_cookie
|
|
|
|
get :set_permanent_signed_cookie
|
2009-12-31 21:32:16 -05:00
|
|
|
assert_match %r(#{20.years.from_now.utc.year}), @response.headers["Set-Cookie"]
|
2009-12-20 17:33:13 -05:00
|
|
|
assert_equal 100, @controller.send(:cookies).signed[:remember_me]
|
|
|
|
end
|
|
|
|
|
2010-01-16 18:21:46 -05:00
|
|
|
|
2009-05-22 19:57:45 -04:00
|
|
|
private
|
|
|
|
def assert_cookie_header(expected)
|
|
|
|
header = @response.headers["Set-Cookie"]
|
|
|
|
if header.respond_to?(:to_str)
|
2010-03-03 19:06:15 -05:00
|
|
|
assert_equal expected.split("\n").sort, header.split("\n").sort
|
2009-05-22 19:57:45 -04:00
|
|
|
else
|
|
|
|
assert_equal expected.split("\n"), header
|
|
|
|
end
|
|
|
|
end
|
2005-04-02 03:54:25 -05:00
|
|
|
end
|