class CookiesTest
Constants
- SALT
Public Instance Methods
setup()
click to toggle source
Calls superclass method
# File actionpack/test/dispatch/cookies_test.rb, line 292 def setup super @request.env["action_dispatch.key_generator"] = ActiveSupport::KeyGenerator.new(SALT, iterations: 2) @request.env["action_dispatch.signed_cookie_salt"] = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] = SALT @request.host = "www.nextangle.com" end
test_accessing_nonexistent_encrypted_cookie_should_not_raise_invalid_message()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 620 def test_accessing_nonexistent_encrypted_cookie_should_not_raise_invalid_message get :set_encrypted_cookie assert_nil @controller.send(:cookies).encrypted[:non_existent_attribute] end
test_accessing_nonexistent_signed_cookie_should_not_raise_an_invalid_signature()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 531 def test_accessing_nonexistent_signed_cookie_should_not_raise_an_invalid_signature get :set_signed_cookie assert_nil @controller.send(:cookies).signed[:non_existent_attribute] end
test_can_set_http_cookie_header()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1183 def test_can_set_http_cookie_header @request.env["HTTP_COOKIE"] = "user_name=david" get :noop assert_equal "david", cookies["user_name"] assert_equal "david", cookies[:user_name] get :noop assert_equal "david", cookies["user_name"] assert_equal "david", cookies[:user_name] @request.env["HTTP_COOKIE"] = "user_name=andrew" get :noop assert_equal "andrew", cookies["user_name"] assert_equal "andrew", cookies[:user_name] end
test_can_set_request_cookies()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1199 def test_can_set_request_cookies @request.cookies["user_name"] = "david" get :noop assert_equal "david", cookies["user_name"] assert_equal "david", cookies[:user_name] get :noop assert_equal "david", cookies["user_name"] assert_equal "david", cookies[:user_name] @request.cookies[:user_name] = "andrew" get :noop assert_equal "andrew", cookies["user_name"] assert_equal "andrew", cookies[:user_name] end
test_cookie_jar_mutated_by_request_persists_on_future_requests()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 656 def test_cookie_jar_mutated_by_request_persists_on_future_requests get :authenticate cookie_jar = @request.cookie_jar cookie_jar.signed[:user_id] = 123 assert_equal ["user_name", "user_id"], @request.cookie_jar.instance_variable_get(:@cookies).keys get :get_signed_cookie assert_equal ["user_name", "user_id"], @request.cookie_jar.instance_variable_get(:@cookies).keys end
test_cookie_with_all_domain_option()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1003 def test_cookie_with_all_domain_option get :set_cookie_with_domain assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.nextangle.com; path=/" end
test_cookie_with_all_domain_option_and_tld_length()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1065 def test_cookie_with_all_domain_option_and_tld_length get :set_cookie_with_domain_and_tld assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.nextangle.com; path=/" end
test_cookie_with_all_domain_option_using_a_non_standard_2_letter_tld()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1078 def test_cookie_with_all_domain_option_using_a_non_standard_2_letter_tld @request.host = "admin.lvh.me" get :set_cookie_with_domain_and_tld assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.lvh.me; path=/" end
test_cookie_with_all_domain_option_using_a_non_standard_tld()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1009 def test_cookie_with_all_domain_option_using_a_non_standard_tld @request.host = "two.subdomains.nextangle.local" get :set_cookie_with_domain assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.nextangle.local; path=/" end
test_cookie_with_all_domain_option_using_a_non_standard_tld_and_tld_length()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1071 def test_cookie_with_all_domain_option_using_a_non_standard_tld_and_tld_length @request.host = "two.subdomains.nextangle.local" get :set_cookie_with_domain_and_tld assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.nextangle.local; path=/" end
test_cookie_with_all_domain_option_using_australian_style_tld()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1016 def test_cookie_with_all_domain_option_using_australian_style_tld @request.host = "nextangle.com.au" get :set_cookie_with_domain assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.nextangle.com.au; path=/" end
test_cookie_with_all_domain_option_using_host_with_port()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1030 def test_cookie_with_all_domain_option_using_host_with_port @request.host = "nextangle.local:3000" get :set_cookie_with_domain assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.nextangle.local; path=/" end
test_cookie_with_all_domain_option_using_host_with_port_and_tld_length()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1085 def test_cookie_with_all_domain_option_using_host_with_port_and_tld_length @request.host = "nextangle.local:3000" get :set_cookie_with_domain_and_tld assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.nextangle.local; path=/" end
test_cookie_with_all_domain_option_using_ipv4_address()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1044 def test_cookie_with_all_domain_option_using_ipv4_address @request.host = "192.168.1.1" get :set_cookie_with_domain assert_response :success assert_cookie_header "user_name=rizwanreza; path=/" end
test_cookie_with_all_domain_option_using_ipv6_address()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1051 def test_cookie_with_all_domain_option_using_ipv6_address @request.host = "2001:0db8:85a3:0000:0000:8a2e:0370:7334" get :set_cookie_with_domain assert_response :success assert_cookie_header "user_name=rizwanreza; path=/" end
test_cookie_with_all_domain_option_using_localhost()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1037 def test_cookie_with_all_domain_option_using_localhost @request.host = "localhost" get :set_cookie_with_domain assert_response :success assert_cookie_header "user_name=rizwanreza; path=/" end
test_cookie_with_all_domain_option_using_uk_style_tld()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1023 def test_cookie_with_all_domain_option_using_uk_style_tld @request.host = "nextangle.co.uk" get :set_cookie_with_domain assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.nextangle.co.uk; path=/" end
test_cookie_with_several_preset_domains_using_one_of_these_domains()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1099 def test_cookie_with_several_preset_domains_using_one_of_these_domains @request.host = "example1.com" get :set_cookie_with_domains assert_response :success assert_cookie_header "user_name=rizwanreza; domain=example1.com; path=/" end
test_cookie_with_several_preset_domains_using_other_domain()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1106 def test_cookie_with_several_preset_domains_using_other_domain @request.host = "other-domain.com" get :set_cookie_with_domains assert_response :success assert_cookie_header "user_name=rizwanreza; path=/" end
test_cookie_with_several_preset_domains_using_shared_domain()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1113 def test_cookie_with_several_preset_domains_using_shared_domain @request.host = "example3.com" get :set_cookie_with_domains assert_response :success assert_cookie_header "user_name=rizwanreza; domain=.example3.com; path=/" end
test_cookies_are_not_cleared()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1237 def test_cookies_are_not_cleared cookies.encrypted["foo"] = "bar" get :noop assert_equal "bar", @controller.encrypted_cookie end
test_cookies_can_be_cleared()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1171 def test_cookies_can_be_cleared get :symbol_key assert_equal "david", cookies[:user_name] cookies.clear get :noop assert_nil cookies[:user_name] get :symbol_key assert_equal "david", cookies[:user_name] end
test_cookies_hash_is_indifferent_access()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1136 def test_cookies_hash_is_indifferent_access get :symbol_key assert_equal "david", cookies[:user_name] assert_equal "david", cookies["user_name"] get :string_key assert_equal "dhh", cookies[:user_name] assert_equal "dhh", cookies["user_name"] end
test_cookies_persist_throughout_request()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 410 def test_cookies_persist_throughout_request response = get :authenticate assert_match(/user_name=david/, response.headers["Set-Cookie"]) end
test_cookies_precedence_over_http_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1215 def test_cookies_precedence_over_http_cookie @request.env["HTTP_COOKIE"] = "user_name=andrew" get :authenticate assert_equal "david", cookies["user_name"] assert_equal "david", cookies[:user_name] get :noop assert_equal "david", cookies["user_name"] assert_equal "david", cookies[:user_name] end
test_cookies_precedence_over_request_cookies()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1226 def test_cookies_precedence_over_request_cookies @request.cookies["user_name"] = "andrew" get :authenticate assert_equal "david", cookies["user_name"] assert_equal "david", cookies[:user_name] get :noop assert_equal "david", cookies["user_name"] assert_equal "david", cookies[:user_name] end
test_cookies_retained_across_requests()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1157 def test_cookies_retained_across_requests get :symbol_key assert_cookie_header "user_name=david; path=/" assert_equal "david", cookies[:user_name] get :noop assert_not_includes @response.headers, "Set-Cookie" assert_equal "david", cookies[:user_name] get :noop assert_not_includes @response.headers, "Set-Cookie" assert_equal "david", cookies[:user_name] end
test_delete_and_set_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 636 def test_delete_and_set_cookie request.cookies[:user_name] = "Joe" get :delete_and_set_cookie assert_cookie_header "user_name=david; path=/; expires=Mon, 10 Oct 2005 05:00:00 -0000" assert_equal({ "user_name" => "david" }, @response.cookies) end
test_delete_cookie_with_path()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 385 def test_delete_cookie_with_path request.cookies[:user_name] = "Joe" get :delete_cookie_with_path assert_cookie_header "user_name=; path=/beaten; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 -0000" end
test_delete_unexisting_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 391 def test_delete_unexisting_cookie request.cookies.clear get :delete_cookie assert_predicate @response.cookies, :empty? end
test_deleted_cookie_predicate()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 397 def test_deleted_cookie_predicate cookies[:user_name] = "Joe" cookies.delete("user_name") assert cookies.deleted?("user_name") assert_equal false, cookies.deleted?("another") end
test_deleted_cookie_predicate_with_mismatching_options()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 404 def test_deleted_cookie_predicate_with_mismatching_options cookies[:user_name] = "Joe" cookies.delete("user_name", path: "/path") assert_equal false, cookies.deleted?("user_name", path: "/different") end
test_deleting_cookie_with_all_domain_option()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1058 def test_deleting_cookie_with_all_domain_option request.cookies[:user_name] = "Joe" get :delete_cookie_with_domain assert_response :success assert_cookie_header "user_name=; domain=.nextangle.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 -0000" end
test_deleting_cookie_with_all_domain_option_and_tld_length()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1092 def test_deleting_cookie_with_all_domain_option_and_tld_length request.cookies[:user_name] = "Joe" get :delete_cookie_with_domain_and_tld assert_response :success assert_cookie_header "user_name=; domain=.nextangle.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 -0000" end
test_deletings_cookie_with_several_preset_domains_using_one_of_these_domains()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1120 def test_deletings_cookie_with_several_preset_domains_using_one_of_these_domains @request.host = "example2.com" request.cookies[:user_name] = "Joe" get :delete_cookie_with_domains assert_response :success assert_cookie_header "user_name=; domain=example2.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 -0000" end
test_deletings_cookie_with_several_preset_domains_using_other_domain()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1128 def test_deletings_cookie_with_several_preset_domains_using_other_domain @request.host = "other-domain.com" request.cookies[:user_name] = "Joe" get :delete_cookie_with_domains assert_response :success assert_cookie_header "user_name=; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 -0000" end
test_encrypted_cookie_using_custom_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 571 def test_encrypted_cookie_using_custom_serializer @request.env["action_dispatch.cookies_serializer"] = CustomSerializer get :set_encrypted_cookie assert_not_equal "bar", cookies.encrypted[:foo] assert_equal "bar was dumped and loaded", cookies.encrypted[:foo] end
test_encrypted_cookie_using_default_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 536 def test_encrypted_cookie_using_default_serializer get :set_encrypted_cookie cookies = @controller.send :cookies assert_not_equal "bar", cookies[:foo] assert_nil cookies.signed[:foo] assert_equal "bar", cookies.encrypted[:foo] end
test_encrypted_cookie_using_hybrid_serializer_can_migrate_marshal_dumped_value_to_json()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 578 def test_encrypted_cookie_using_hybrid_serializer_can_migrate_marshal_dumped_value_to_json @request.env["action_dispatch.cookies_serializer"] = :hybrid cipher = "aes-256-gcm" salt = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] secret = @request.env["action_dispatch.key_generator"].generate_key(salt)[0, ActiveSupport::MessageEncryptor.key_len(cipher)] encryptor = ActiveSupport::MessageEncryptor.new(secret, cipher: cipher, serializer: Marshal) marshal_value = encryptor.encrypt_and_sign("bar") @request.headers["Cookie"] = "foo=#{::Rack::Utils.escape marshal_value}" get :get_encrypted_cookie cookies = @controller.send :cookies assert_not_equal "bar", cookies[:foo] assert_equal "bar", cookies.encrypted[:foo] json_encryptor = ActiveSupport::MessageEncryptor.new(secret, cipher: cipher, serializer: JSON) assert_not_nil @response.cookies["foo"] assert_equal "bar", json_encryptor.decrypt_and_verify(@response.cookies["foo"]) end
test_encrypted_cookie_using_hybrid_serializer_can_read_from_json_dumped_value()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 600 def test_encrypted_cookie_using_hybrid_serializer_can_read_from_json_dumped_value @request.env["action_dispatch.cookies_serializer"] = :hybrid cipher = "aes-256-gcm" salt = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] secret = @request.env["action_dispatch.key_generator"].generate_key(salt)[0, ActiveSupport::MessageEncryptor.key_len(cipher)] encryptor = ActiveSupport::MessageEncryptor.new(secret, cipher: cipher, serializer: JSON) json_value = encryptor.encrypt_and_sign("bar") @request.headers["Cookie"] = "foo=#{::Rack::Utils.escape json_value}" get :get_encrypted_cookie cookies = @controller.send :cookies assert_not_equal "bar", cookies[:foo] assert_equal "bar", cookies.encrypted[:foo] assert_nil @response.cookies["foo"] end
test_encrypted_cookie_using_json_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 553 def test_encrypted_cookie_using_json_serializer @request.env["action_dispatch.cookies_serializer"] = :json get :set_encrypted_cookie cookies = @controller.send :cookies assert_not_equal "bar", cookies[:foo] assert_nil cookies.signed[:foo] assert_equal "bar", cookies.encrypted[:foo] end
test_encrypted_cookie_using_marshal_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 544 def test_encrypted_cookie_using_marshal_serializer @request.env["action_dispatch.cookies_serializer"] = :marshal get :set_encrypted_cookie cookies = @controller.send :cookies assert_not_equal "bar", cookies[:foo] assert_nil cookies.signed[:foo] assert_equal "bar", cookies.encrypted[:foo] end
test_encrypted_cookie_with_expires_set_relatively()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1253 def test_encrypted_cookie_with_expires_set_relatively cookies.encrypted[:user_name] = { value: "assain", expires: 2.hours } travel 1.hour assert_equal "assain", cookies.encrypted[:user_name] travel 2.hours assert_nil cookies.encrypted[:user_name] end
test_encrypted_uses_encrypted_cookie_jar_if_only_secret_key_base_is_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 736 def test_encrypted_uses_encrypted_cookie_jar_if_only_secret_key_base_is_set @request.env["action_dispatch.secret_token"] = nil @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" get :get_encrypted_cookie assert_kind_of ActionDispatch::Cookies::EncryptedCookieJar, cookies.encrypted end
test_encrypted_uses_upgrade_legacy_encrypted_cookie_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 743 def test_encrypted_uses_upgrade_legacy_encrypted_cookie_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" get :get_encrypted_cookie assert_kind_of ActionDispatch::Cookies::UpgradeLegacyEncryptedCookieJar, cookies.encrypted end
test_expiring_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 378 def test_expiring_cookie request.cookies[:user_name] = "Joe" get :logout assert_cookie_header "user_name=; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 -0000" assert_equal({ "user_name" => nil }, @response.cookies) end
test_legacy_hmac_aes_cbc_encrypted_cookie_using_64_byte_key_is_upgraded_to_authenticated_encrypted_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 979 def test_legacy_hmac_aes_cbc_encrypted_cookie_using_64_byte_key_is_upgraded_to_authenticated_encrypted_cookie @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" @request.env["action_dispatch.encrypted_cookie_salt"] = @request.env["action_dispatch.encrypted_signed_cookie_salt"] = SALT # Cookie generated with 64 bytes secret message = ["566d4e75536d686e633246564e6b493062557079626c566d51574d30515430394c53315665564a694e4563786555744f57537454576b396a5a31566a626e52525054303d2d2d34663234333330623130623261306163363562316266323335396164666364613564643134623131"].pack("H*") @request.headers["Cookie"] = "foo=#{message}" get :get_encrypted_cookie cookies = @controller.send :cookies assert_not_equal "bar", cookies[:foo] assert_equal "bar", cookies.encrypted[:foo] cipher = "aes-256-gcm" salt = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] secret = @request.env["action_dispatch.key_generator"].generate_key(salt)[0, ActiveSupport::MessageEncryptor.key_len(cipher)] encryptor = ActiveSupport::MessageEncryptor.new(secret, cipher: cipher, serializer: Marshal) assert_equal "bar", encryptor.decrypt_and_verify(@response.cookies["foo"]) end
test_legacy_hmac_aes_cbc_encrypted_json_cookie_is_upgraded_to_authenticated_encrypted_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 949 def test_legacy_hmac_aes_cbc_encrypted_json_cookie_is_upgraded_to_authenticated_encrypted_cookie @request.env["action_dispatch.cookies_serializer"] = :json @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" @request.env["action_dispatch.encrypted_cookie_salt"] = @request.env["action_dispatch.encrypted_signed_cookie_salt"] = SALT key_generator = @request.env["action_dispatch.key_generator"] encrypted_cookie_salt = @request.env["action_dispatch.encrypted_cookie_salt"] encrypted_signed_cookie_salt = @request.env["action_dispatch.encrypted_signed_cookie_salt"] secret = key_generator.generate_key(encrypted_cookie_salt) sign_secret = key_generator.generate_key(encrypted_signed_cookie_salt) marshal_value = ActiveSupport::MessageEncryptor.new(secret[0, ActiveSupport::MessageEncryptor.key_len], sign_secret, serializer: JSON).encrypt_and_sign("bar") @request.headers["Cookie"] = "foo=#{marshal_value}" get :get_encrypted_cookie cookies = @controller.send :cookies assert_not_equal "bar", cookies[:foo] assert_equal "bar", cookies.encrypted[:foo] aead_cipher = "aes-256-gcm" aead_salt = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] aead_secret = key_generator.generate_key(aead_salt)[0, ActiveSupport::MessageEncryptor.key_len(aead_cipher)] aead_encryptor = ActiveSupport::MessageEncryptor.new(aead_secret, cipher: aead_cipher, serializer: JSON) assert_equal "bar", aead_encryptor.decrypt_and_verify(@response.cookies["foo"]) end
test_legacy_hmac_aes_cbc_encrypted_marshal_cookie_is_upgraded_to_authenticated_encrypted_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 920 def test_legacy_hmac_aes_cbc_encrypted_marshal_cookie_is_upgraded_to_authenticated_encrypted_cookie @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" @request.env["action_dispatch.encrypted_cookie_salt"] = @request.env["action_dispatch.encrypted_signed_cookie_salt"] = SALT key_generator = @request.env["action_dispatch.key_generator"] encrypted_cookie_salt = @request.env["action_dispatch.encrypted_cookie_salt"] encrypted_signed_cookie_salt = @request.env["action_dispatch.encrypted_signed_cookie_salt"] secret = key_generator.generate_key(encrypted_cookie_salt) sign_secret = key_generator.generate_key(encrypted_signed_cookie_salt) marshal_value = ActiveSupport::MessageEncryptor.new(secret[0, ActiveSupport::MessageEncryptor.key_len], sign_secret, serializer: Marshal).encrypt_and_sign("bar") @request.headers["Cookie"] = "foo=#{marshal_value}" get :get_encrypted_cookie cookies = @controller.send :cookies assert_not_equal "bar", cookies[:foo] assert_equal "bar", cookies.encrypted[:foo] aead_cipher = "aes-256-gcm" aead_salt = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] aead_secret = key_generator.generate_key(aead_salt)[0, ActiveSupport::MessageEncryptor.key_len(aead_cipher)] aead_encryptor = ActiveSupport::MessageEncryptor.new(aead_secret, cipher: aead_cipher, serializer: Marshal) assert_equal "bar", aead_encryptor.decrypt_and_verify(@response.cookies["foo"]) end
test_legacy_json_signed_cookie_is_read_and_transparently_encrypted_by_encrypted_hybrid_cookie_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 842 def test_legacy_json_signed_cookie_is_read_and_transparently_encrypted_by_encrypted_hybrid_cookie_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.cookies_serializer"] = :hybrid @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" legacy_value = ActiveSupport::MessageVerifier.new("b3c631c314c0bbca50c1b2843150fe33", serializer: JSON).generate("bar") @request.headers["Cookie"] = "foo=#{legacy_value}" get :get_encrypted_cookie assert_equal "bar", @controller.send(:cookies).encrypted[:foo] cipher = "aes-256-gcm" salt = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] secret = @request.env["action_dispatch.key_generator"].generate_key(salt)[0, ActiveSupport::MessageEncryptor.key_len(cipher)] encryptor = ActiveSupport::MessageEncryptor.new(secret, cipher: cipher, serializer: JSON) assert_equal "bar", encryptor.decrypt_and_verify(@response.cookies["foo"]) end
test_legacy_json_signed_cookie_is_read_and_transparently_encrypted_by_encrypted_json_cookie_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 805 def test_legacy_json_signed_cookie_is_read_and_transparently_encrypted_by_encrypted_json_cookie_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.cookies_serializer"] = :json @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" legacy_value = ActiveSupport::MessageVerifier.new("b3c631c314c0bbca50c1b2843150fe33", serializer: JSON).generate("bar") @request.headers["Cookie"] = "foo=#{legacy_value}" get :get_encrypted_cookie assert_equal "bar", @controller.send(:cookies).encrypted[:foo] cipher = "aes-256-gcm" salt = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] secret = @request.env["action_dispatch.key_generator"].generate_key(salt)[0, ActiveSupport::MessageEncryptor.key_len(cipher)] encryptor = ActiveSupport::MessageEncryptor.new(secret, cipher: cipher, serializer: JSON) assert_equal "bar", encryptor.decrypt_and_verify(@response.cookies["foo"]) end
test_legacy_json_signed_cookie_is_read_and_transparently_upgraded_by_signed_json_cookie_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 787 def test_legacy_json_signed_cookie_is_read_and_transparently_upgraded_by_signed_json_cookie_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.cookies_serializer"] = :json @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" legacy_value = ActiveSupport::MessageVerifier.new("b3c631c314c0bbca50c1b2843150fe33", serializer: JSON).generate(45) @request.headers["Cookie"] = "user_id=#{legacy_value}" get :get_signed_cookie assert_equal 45, @controller.send(:cookies).signed[:user_id] key_generator = @request.env["action_dispatch.key_generator"] secret = key_generator.generate_key(@request.env["action_dispatch.signed_cookie_salt"]) verifier = ActiveSupport::MessageVerifier.new(secret, serializer: JSON) assert_equal 45, verifier.verify(@response.cookies["user_id"]) end
test_legacy_json_signed_cookie_is_read_and_transparently_upgraded_by_signed_json_hybrid_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 824 def test_legacy_json_signed_cookie_is_read_and_transparently_upgraded_by_signed_json_hybrid_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.cookies_serializer"] = :hybrid @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" legacy_value = ActiveSupport::MessageVerifier.new("b3c631c314c0bbca50c1b2843150fe33", serializer: JSON).generate(45) @request.headers["Cookie"] = "user_id=#{legacy_value}" get :get_signed_cookie assert_equal 45, @controller.send(:cookies).signed[:user_id] key_generator = @request.env["action_dispatch.key_generator"] secret = key_generator.generate_key(@request.env["action_dispatch.signed_cookie_salt"]) verifier = ActiveSupport::MessageVerifier.new(secret, serializer: JSON) assert_equal 45, verifier.verify(@response.cookies["user_id"]) end
test_legacy_marshal_signed_cookie_is_read_and_transparently_encrypted_by_encrypted_hybrid_cookie_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 879 def test_legacy_marshal_signed_cookie_is_read_and_transparently_encrypted_by_encrypted_hybrid_cookie_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.cookies_serializer"] = :hybrid @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" legacy_value = ActiveSupport::MessageVerifier.new("b3c631c314c0bbca50c1b2843150fe33").generate("bar") @request.headers["Cookie"] = "foo=#{legacy_value}" get :get_encrypted_cookie assert_equal "bar", @controller.send(:cookies).encrypted[:foo] cipher = "aes-256-gcm" salt = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] secret = @request.env["action_dispatch.key_generator"].generate_key(salt)[0, ActiveSupport::MessageEncryptor.key_len(cipher)] encryptor = ActiveSupport::MessageEncryptor.new(secret, cipher: cipher, serializer: JSON) assert_equal "bar", encryptor.decrypt_and_verify(@response.cookies["foo"]) end
test_legacy_marshal_signed_cookie_is_read_and_transparently_upgraded_by_signed_json_hybrid_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 861 def test_legacy_marshal_signed_cookie_is_read_and_transparently_upgraded_by_signed_json_hybrid_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.cookies_serializer"] = :hybrid @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" legacy_value = ActiveSupport::MessageVerifier.new("b3c631c314c0bbca50c1b2843150fe33").generate(45) @request.headers["Cookie"] = "user_id=#{legacy_value}" get :get_signed_cookie assert_equal 45, @controller.send(:cookies).signed[:user_id] key_generator = @request.env["action_dispatch.key_generator"] secret = key_generator.generate_key(@request.env["action_dispatch.signed_cookie_salt"]) verifier = ActiveSupport::MessageVerifier.new(secret, serializer: JSON) assert_equal 45, verifier.verify(@response.cookies["user_id"]) end
test_legacy_signed_cookie_is_read_and_transparently_encrypted_by_encrypted_cookie_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 767 def test_legacy_signed_cookie_is_read_and_transparently_encrypted_by_encrypted_cookie_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" @request.env["action_dispatch.encrypted_cookie_salt"] = "4433796b79d99a7735553e316522acee" @request.env["action_dispatch.encrypted_signed_cookie_salt"] = "00646eb40062e1b1deff205a27cd30f9" legacy_value = ActiveSupport::MessageVerifier.new("b3c631c314c0bbca50c1b2843150fe33").generate("bar") @request.headers["Cookie"] = "foo=#{legacy_value}" get :get_encrypted_cookie assert_equal "bar", @controller.send(:cookies).encrypted[:foo] cipher = "aes-256-gcm" salt = @request.env["action_dispatch.authenticated_encrypted_cookie_salt"] secret = @request.env["action_dispatch.key_generator"].generate_key(salt)[0, ActiveSupport::MessageEncryptor.key_len(cipher)] encryptor = ActiveSupport::MessageEncryptor.new(secret, cipher: cipher, serializer: Marshal) assert_equal "bar", encryptor.decrypt_and_verify(@response.cookies["foo"]) end
test_legacy_signed_cookie_is_read_and_transparently_upgraded_by_signed_cookie_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 750 def test_legacy_signed_cookie_is_read_and_transparently_upgraded_by_signed_cookie_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" legacy_value = ActiveSupport::MessageVerifier.new("b3c631c314c0bbca50c1b2843150fe33").generate(45) @request.headers["Cookie"] = "user_id=#{legacy_value}" get :get_signed_cookie assert_equal 45, @controller.send(:cookies).signed[:user_id] key_generator = @request.env["action_dispatch.key_generator"] secret = key_generator.generate_key(@request.env["action_dispatch.signed_cookie_salt"]) verifier = ActiveSupport::MessageVerifier.new(secret) assert_equal 45, verifier.verify(@response.cookies["user_id"]) end
test_legacy_signed_cookie_is_treated_as_nil_by_encrypted_cookie_jar_if_tampered()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 909 def test_legacy_signed_cookie_is_treated_as_nil_by_encrypted_cookie_jar_if_tampered @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" @request.headers["Cookie"] = "foo=baz" get :get_encrypted_cookie assert_nil @controller.send(:cookies).encrypted[:foo] assert_nil @response.cookies["foo"] end
test_legacy_signed_cookie_is_treated_as_nil_by_signed_cookie_jar_if_tampered()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 898 def test_legacy_signed_cookie_is_treated_as_nil_by_signed_cookie_jar_if_tampered @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" @request.headers["Cookie"] = "user_id=45" get :get_signed_cookie assert_nil @controller.send(:cookies).signed[:user_id] assert_nil @response.cookies["user_id"] end
test_multiple_cookies()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 367 def test_multiple_cookies get :set_multiple_cookies assert_equal 2, @response.cookies.size assert_cookie_header "user_name=david; path=/; expires=Mon, 10 Oct 2005 05:00:00 -0000\nlogin=XJ-122; path=/" assert_equal({ "login" => "XJ-122", "user_name" => "david" }, @response.cookies) end
test_not_setting_cookie_with_secure()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 361 def test_not_setting_cookie_with_secure get :authenticate_with_secure assert_not_cookie_header "user_name=david; path=/; secure" assert_not_equal({ "user_name" => "david" }, @response.cookies) end
test_permanent_signed_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 630 def test_permanent_signed_cookie get :set_permanent_signed_cookie assert_match(%r(#{20.years.from_now.utc.year}), @response.headers["Set-Cookie"]) assert_equal 100, @controller.send(:cookies).signed[:remember_me] end
test_raise_data_overflow()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 643 def test_raise_data_overflow assert_raise(ActionDispatch::Cookies::CookieOverflow) do get :raise_data_overflow end end
test_raises_argument_error_if_missing_secret()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 665 def test_raises_argument_error_if_missing_secret assert_raise(ArgumentError, nil.inspect) { @request.env["action_dispatch.key_generator"] = ActiveSupport::LegacyKeyGenerator.new(nil) get :set_signed_cookie } assert_raise(ArgumentError, "".inspect) { @request.env["action_dispatch.key_generator"] = ActiveSupport::LegacyKeyGenerator.new("") get :set_signed_cookie } end
test_raises_argument_error_if_secret_is_probably_insecure()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 677 def test_raises_argument_error_if_secret_is_probably_insecure assert_raise(ArgumentError, "password".inspect) { @request.env["action_dispatch.key_generator"] = ActiveSupport::LegacyKeyGenerator.new("password") get :set_signed_cookie } assert_raise(ArgumentError, "secret".inspect) { @request.env["action_dispatch.key_generator"] = ActiveSupport::LegacyKeyGenerator.new("secret") get :set_signed_cookie } assert_raise(ArgumentError, "12345678901234567890123456789".inspect) { @request.env["action_dispatch.key_generator"] = ActiveSupport::LegacyKeyGenerator.new("12345678901234567890123456789") get :set_signed_cookie } end
test_read_permanent_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 421 def test_read_permanent_cookie get :set_permanent_cookie assert_equal "Jamie", @controller.send(:cookies).permanent[:user_name] end
test_set_permanent_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 415 def test_set_permanent_cookie get :set_permanent_cookie assert_match(/Jamie/, @response.headers["Set-Cookie"]) assert_match(%r(#{20.years.from_now.utc.year}), @response.headers["Set-Cookie"]) end
test_setting_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 303 def test_setting_cookie get :authenticate assert_cookie_header "user_name=david; path=/" assert_equal({ "user_name" => "david" }, @response.cookies) end
test_setting_cookie_for_fourteen_days()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 327 def test_setting_cookie_for_fourteen_days get :authenticate_for_fourteen_days assert_cookie_header "user_name=david; path=/; expires=Mon, 10 Oct 2005 05:00:00 -0000" assert_equal({ "user_name" => "david" }, @response.cookies) end
test_setting_cookie_for_fourteen_days_with_symbols()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 333 def test_setting_cookie_for_fourteen_days_with_symbols get :authenticate_for_fourteen_days_with_symbols assert_cookie_header "user_name=david; path=/; expires=Mon, 10 Oct 2005 05:00:00 -0000" assert_equal({ "user_name" => "david" }, @response.cookies) end
test_setting_cookie_with_http_only()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 339 def test_setting_cookie_with_http_only get :authenticate_with_http_only assert_cookie_header "user_name=david; path=/; HttpOnly" assert_equal({ "user_name" => "david" }, @response.cookies) end
test_setting_cookie_with_secure()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 345 def test_setting_cookie_with_secure @request.env["HTTPS"] = "on" get :authenticate_with_secure assert_cookie_header "user_name=david; path=/; secure" assert_equal({ "user_name" => "david" }, @response.cookies) end
test_setting_cookie_with_secure_when_always_write_cookie_is_true()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 352 def test_setting_cookie_with_secure_when_always_write_cookie_is_true old_cookie, @request.cookie_jar.always_write_cookie = @request.cookie_jar.always_write_cookie, true get :authenticate_with_secure assert_cookie_header "user_name=david; path=/; secure" assert_equal({ "user_name" => "david" }, @response.cookies) ensure @request.cookie_jar.always_write_cookie = old_cookie end
test_setting_invalid_encrypted_cookie_should_return_nil_when_accessing_it()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 625 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
test_setting_request_cookies_is_indifferent_access()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1145 def test_setting_request_cookies_is_indifferent_access cookies.clear cookies[:user_name] = "andrew" get :string_key_mock assert_equal "david", cookies["user_name"] cookies.clear cookies["user_name"] = "andrew" get :symbol_key_mock assert_equal "david", cookies[:user_name] end
test_setting_test_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 374 def test_setting_test_cookie assert_nothing_raised { get :access_frozen_cookies } end
test_setting_the_same_value_to_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 309 def test_setting_the_same_value_to_cookie request.cookies[:user_name] = "david" get :authenticate assert_predicate response.cookies, :empty? end
test_setting_the_same_value_to_permanent_cookie()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 315 def test_setting_the_same_value_to_permanent_cookie request.cookies[:user_name] = "Jamie" get :set_permanent_cookie assert_equal({ "user_name" => "Jamie" }, response.cookies) end
test_setting_with_escapable_characters()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 321 def test_setting_with_escapable_characters get :set_with_with_escapable_characters assert_cookie_header "that+%26+guy=foo+%26+bar+%3D%3E+baz; path=/" assert_equal({ "that & guy" => "foo & bar => baz" }, @response.cookies) end
test_signed_cookie_using_custom_digest()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 440 def test_signed_cookie_using_custom_digest @request.env["action_dispatch.cookies_digest"] = "SHA256" get :set_signed_cookie cookies = @controller.send :cookies assert_not_equal 45, cookies[:user_id] assert_equal 45, cookies.signed[:user_id] key_generator = @request.env["action_dispatch.key_generator"] signed_cookie_salt = @request.env["action_dispatch.signed_cookie_salt"] secret = key_generator.generate_key(signed_cookie_salt) verifier = ActiveSupport::MessageVerifier.new(secret, serializer: Marshal, digest: "SHA256") assert_equal verifier.generate(45), cookies[:user_id] end
test_signed_cookie_using_custom_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 486 def test_signed_cookie_using_custom_serializer @request.env["action_dispatch.cookies_serializer"] = CustomSerializer get :set_signed_cookie assert_not_equal 45, cookies[:user_id] assert_equal "45 was dumped and loaded", cookies.signed[:user_id] end
test_signed_cookie_using_default_digest()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 426 def test_signed_cookie_using_default_digest get :set_signed_cookie cookies = @controller.send :cookies assert_not_equal 45, cookies[:user_id] assert_equal 45, cookies.signed[:user_id] key_generator = @request.env["action_dispatch.key_generator"] signed_cookie_salt = @request.env["action_dispatch.signed_cookie_salt"] secret = key_generator.generate_key(signed_cookie_salt) verifier = ActiveSupport::MessageVerifier.new(secret, serializer: Marshal, digest: "SHA1") assert_equal verifier.generate(45), cookies[:user_id] end
test_signed_cookie_using_default_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 455 def test_signed_cookie_using_default_serializer get :set_signed_cookie cookies = @controller.send :cookies assert_not_equal 45, cookies[:user_id] assert_equal 45, cookies.signed[:user_id] end
test_signed_cookie_using_hybrid_serializer_can_migrate_marshal_dumped_value_to_json()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 493 def test_signed_cookie_using_hybrid_serializer_can_migrate_marshal_dumped_value_to_json @request.env["action_dispatch.cookies_serializer"] = :hybrid key_generator = @request.env["action_dispatch.key_generator"] signed_cookie_salt = @request.env["action_dispatch.signed_cookie_salt"] secret = key_generator.generate_key(signed_cookie_salt) marshal_value = ActiveSupport::MessageVerifier.new(secret, serializer: Marshal).generate(45) @request.headers["Cookie"] = "user_id=#{marshal_value}" get :get_signed_cookie cookies = @controller.send :cookies assert_not_equal 45, cookies[:user_id] assert_equal 45, cookies.signed[:user_id] verifier = ActiveSupport::MessageVerifier.new(secret, serializer: JSON) assert_equal 45, verifier.verify(@response.cookies["user_id"]) end
test_signed_cookie_using_hybrid_serializer_can_read_from_json_dumped_value()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 513 def test_signed_cookie_using_hybrid_serializer_can_read_from_json_dumped_value @request.env["action_dispatch.cookies_serializer"] = :hybrid key_generator = @request.env["action_dispatch.key_generator"] signed_cookie_salt = @request.env["action_dispatch.signed_cookie_salt"] secret = key_generator.generate_key(signed_cookie_salt) json_value = ActiveSupport::MessageVerifier.new(secret, serializer: JSON).generate(45) @request.headers["Cookie"] = "user_id=#{json_value}" get :get_signed_cookie cookies = @controller.send :cookies assert_not_equal 45, cookies[:user_id] assert_equal 45, cookies.signed[:user_id] assert_nil @response.cookies["user_id"] end
test_signed_cookie_using_json_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 470 def test_signed_cookie_using_json_serializer @request.env["action_dispatch.cookies_serializer"] = :json get :set_signed_cookie cookies = @controller.send :cookies assert_not_equal 45, cookies[:user_id] assert_equal 45, cookies.signed[:user_id] end
test_signed_cookie_using_marshal_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 462 def test_signed_cookie_using_marshal_serializer @request.env["action_dispatch.cookies_serializer"] = :marshal get :set_signed_cookie cookies = @controller.send :cookies assert_not_equal 45, cookies[:user_id] assert_equal 45, cookies.signed[:user_id] end
test_signed_cookie_with_expires_set_relatively()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1243 def test_signed_cookie_with_expires_set_relatively cookies.signed[:user_name] = { value: "assain", expires: 2.hours } travel 1.hour assert_equal "assain", cookies.signed[:user_name] travel 2.hours assert_nil cookies.signed[:user_name] end
test_signed_or_encrypted_uses_encrypted_cookie_jar_if_only_secret_key_base_is_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 722 def test_signed_or_encrypted_uses_encrypted_cookie_jar_if_only_secret_key_base_is_set @request.env["action_dispatch.secret_token"] = nil @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" get :get_encrypted_cookie assert_kind_of ActionDispatch::Cookies::EncryptedCookieJar, cookies.signed_or_encrypted end
test_signed_or_encrypted_uses_signed_cookie_jar_if_only_secret_token_is_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 715 def test_signed_or_encrypted_uses_signed_cookie_jar_if_only_secret_token_is_set @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = nil get :get_encrypted_cookie assert_kind_of ActionDispatch::Cookies::SignedCookieJar, cookies.signed_or_encrypted end
test_signed_or_encrypted_uses_upgrade_legacy_encrypted_cookie_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 729 def test_signed_or_encrypted_uses_upgrade_legacy_encrypted_cookie_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" get :get_encrypted_cookie assert_kind_of ActionDispatch::Cookies::UpgradeLegacyEncryptedCookieJar, cookies.signed_or_encrypted end
test_signed_uses_signed_cookie_jar_if_only_secret_key_base_is_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 701 def test_signed_uses_signed_cookie_jar_if_only_secret_key_base_is_set @request.env["action_dispatch.secret_token"] = nil @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" get :set_signed_cookie assert_kind_of ActionDispatch::Cookies::SignedCookieJar, cookies.signed end
test_signed_uses_signed_cookie_jar_if_only_secret_token_is_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 694 def test_signed_uses_signed_cookie_jar_if_only_secret_token_is_set @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = nil get :set_signed_cookie assert_kind_of ActionDispatch::Cookies::SignedCookieJar, cookies.signed end
test_signed_uses_upgrade_legacy_signed_cookie_jar_if_both_secret_token_and_secret_key_base_are_set()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 708 def test_signed_uses_upgrade_legacy_signed_cookie_jar_if_both_secret_token_and_secret_key_base_are_set @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33" @request.env["action_dispatch.secret_key_base"] = "c3b95688f35581fad38df788add315ff" get :set_signed_cookie assert_kind_of ActionDispatch::Cookies::UpgradeLegacySignedCookieJar, cookies.signed end
test_tampered_cookies()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 649 def test_tampered_cookies assert_nothing_raised do get :tampered_cookies assert_response :success end end
test_vanilla_cookie_with_expires_set_relatively()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1263 def test_vanilla_cookie_with_expires_set_relatively travel_to Time.utc(2017, 8, 15) do get :cookie_expires_in_two_hours assert_cookie_header "user_name=assain; path=/; expires=Tue, 15 Aug 2017 02:00:00 -0000" end end
test_wrapped_encrypted_cookie_using_json_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 562 def test_wrapped_encrypted_cookie_using_json_serializer @request.env["action_dispatch.cookies_serializer"] = :json get :set_wrapped_encrypted_cookie cookies = @controller.send :cookies assert_not_equal "wrapped: bar", cookies[:foo] assert_nil cookies.signed[:foo] assert_equal "wrapped: bar", cookies.encrypted[:foo] end
test_wrapped_signed_cookie_using_json_serializer()
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 478 def test_wrapped_signed_cookie_using_json_serializer @request.env["action_dispatch.cookies_serializer"] = :json get :set_wrapped_signed_cookie cookies = @controller.send :cookies assert_not_equal "wrapped: 45", cookies[:user_id] assert_equal "wrapped: 45", cookies.signed[:user_id] end
Private Instance Methods
assert_cookie_header(expected)
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1271 def assert_cookie_header(expected) header = @response.headers["Set-Cookie"] if header.respond_to?(:to_str) assert_equal expected.split("\n").sort, header.split("\n").sort else assert_equal expected.split("\n"), header end end
assert_not_cookie_header(expected)
click to toggle source
# File actionpack/test/dispatch/cookies_test.rb, line 1280 def assert_not_cookie_header(expected) header = @response.headers["Set-Cookie"] if header.respond_to?(:to_str) assert_not_equal expected.split("\n").sort, header.split("\n").sort else assert_not_equal expected.split("\n"), header end end