aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/cookies_test.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2013-02-19 10:35:03 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2013-02-19 10:35:06 -0200
commit00147c8762124795ab69ccb56473b449f9e3362e (patch)
treef770b1d5d718002ea27ee594d4670d517cd543c7 /actionpack/test/dispatch/cookies_test.rb
parenta7009172728fbc107cdae1e107003601dcb8fa76 (diff)
downloadrails-00147c8762124795ab69ccb56473b449f9e3362e.tar.gz
rails-00147c8762124795ab69ccb56473b449f9e3362e.tar.bz2
rails-00147c8762124795ab69ccb56473b449f9e3362e.zip
InvalidMessage is in ActiveSupport::MessageEncryptor namespace
Closes #9302
Diffstat (limited to 'actionpack/test/dispatch/cookies_test.rb')
-rw-r--r--actionpack/test/dispatch/cookies_test.rb21
1 files changed, 18 insertions, 3 deletions
diff --git a/actionpack/test/dispatch/cookies_test.rb b/actionpack/test/dispatch/cookies_test.rb
index 66d2cade22..5ada5a7603 100644
--- a/actionpack/test/dispatch/cookies_test.rb
+++ b/actionpack/test/dispatch/cookies_test.rb
@@ -72,6 +72,11 @@ class CookiesTest < ActionController::TestCase
head :ok
end
+ def set_invalid_encrypted_cookie
+ cookies[:invalid_cookie] = 'invalid--9170e00a57cfc27083363b5c75b835e477bd90cf'
+ head :ok
+ end
+
def raise_data_overflow
cookies.signed[:foo] = 'bye!' * 1024
head :ok
@@ -336,6 +341,11 @@ class CookiesTest < ActionController::TestCase
assert_equal 45, @controller.send(:cookies).signed[:user_id]
end
+ 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
+
def test_encrypted_cookie
get :set_encrypted_cookie
cookies = @controller.send :cookies
@@ -346,9 +356,14 @@ class CookiesTest < ActionController::TestCase
assert_equal 'bar', cookies.encrypted[:foo]
end
- 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]
+ def test_accessing_nonexistant_encrypted_cookie_should_not_raise_invalid_message
+ get :set_encrypted_cookie
+ assert_nil @controller.send(:cookies).encrypted[:non_existant_attribute]
+ end
+
+ def test_setting_invalid_encrypted_cookie_should_return_nil_when_accessing_it
+ get :set_invalid_encrypted_cookie
+ assert_nil @controller.send(:cookies).encrypted[:invalid_cookie]
end
def test_permanent_signed_cookie