cookies_test.rb 14.9 KB
Newer Older
1
require 'abstract_unit'
D
Initial  
David Heinemeier Hansson 已提交
2

3
class CookiesTest < ActionController::TestCase
D
Initial  
David Heinemeier Hansson 已提交
4
  class TestController < ActionController::Base
5 6
    def authenticate
      cookies["user_name"] = "david"
J
Jeremy Kemper 已提交
7
      head :ok
8 9
    end

10 11
    def set_with_with_escapable_characters
      cookies["that & guy"] = "foo & bar => baz"
J
Jeremy Kemper 已提交
12
      head :ok
13 14
    end

15
    def authenticate_for_fourteen_days
F
Frederick Cheung 已提交
16
      cookies["user_name"] = { "value" => "david", "expires" => Time.utc(2005, 10, 10,5) }
J
Jeremy Kemper 已提交
17
      head :ok
18 19
    end

20
    def authenticate_for_fourteen_days_with_symbols
F
Frederick Cheung 已提交
21
      cookies[:user_name] = { :value => "david", :expires => Time.utc(2005, 10, 10,5) }
J
Jeremy Kemper 已提交
22
      head :ok
23 24
    end

25
    def set_multiple_cookies
F
Frederick Cheung 已提交
26
      cookies["user_name"] = { "value" => "david", "expires" => Time.utc(2005, 10, 10,5) }
27
      cookies["login"]     = "XJ-122"
J
Jeremy Kemper 已提交
28
      head :ok
29
    end
J
Joshua Peek 已提交
30

31
    def access_frozen_cookies
J
Jeremy Kemper 已提交
32
      cookies["will"] = "work"
J
Jeremy Kemper 已提交
33
      head :ok
34 35
    end

36 37
    def logout
      cookies.delete("user_name")
J
Jeremy Kemper 已提交
38
      head :ok
39 40
    end

41 42
    def delete_cookie_with_path
      cookies.delete("user_name", :path => '/beaten')
J
Jeremy Kemper 已提交
43
      head :ok
44 45
    end

46
    def authenticate_with_http_only
47
      cookies["user_name"] = { :value => "david", :httponly => true }
J
Jeremy Kemper 已提交
48
      head :ok
49
    end
50

51 52 53 54
    def authenticate_with_secure
      cookies["user_name"] = { :value => "david", :secure => true }
      head :ok
    end
55 56 57 58 59

    def set_permanent_cookie
      cookies.permanent[:user_name] = "Jamie"
      head :ok
    end
J
Joshua Peek 已提交
60

61 62 63 64
    def set_signed_cookie
      cookies.signed[:user_id] = 45
      head :ok
    end
J
Joshua Peek 已提交
65

66 67 68 69 70 71 72 73 74 75 76
    def raise_data_overflow
      cookies.signed[:foo] = 'bye!' * 1024
      head :ok
    end

    def tampered_cookies
      cookies[:tampered] = "BAh7BjoIZm9vIghiYXI%3D--123456780"
      cookies.signed[:tampered]
      head :ok
    end

77 78 79 80
    def set_permanent_signed_cookie
      cookies.permanent.signed[:remember_me] = 100
      head :ok
    end
81 82 83 84 85 86

    def delete_and_set_cookie
      cookies.delete :user_name
      cookies[:user_name] = { :value => "david", :expires => Time.utc(2005, 10, 10,5) }
      head :ok
    end
87 88 89 90 91 92 93 94 95 96

    def set_cookie_with_domain
      cookies[:user_name] = {:value => "rizwanreza", :domain => :all}
      head :ok
    end

    def delete_cookie_with_domain
      cookies.delete(:user_name, :domain => :all)
      head :ok
    end
97

98 99 100 101 102 103 104 105 106 107
    def set_cookie_with_domain_and_tld
      cookies[:user_name] = {:value => "rizwanreza", :domain => :all, :tld_length => 2}
      head :ok
    end

    def delete_cookie_with_domain_and_tld
      cookies.delete(:user_name, :domain => :all, :tld_length => 2)
      head :ok
    end

108 109 110 111 112 113 114 115 116 117
    def set_cookie_with_domains
      cookies[:user_name] = {:value => "rizwanreza", :domain => %w(example1.com example2.com .example3.com)}
      head :ok
    end

    def delete_cookie_with_domains
      cookies.delete(:user_name, :domain => %w(example1.com example2.com .example3.com))
      head :ok
    end

118 119 120 121 122 123 124 125 126
    def symbol_key
      cookies[:user_name] = "david"
      head :ok
    end

    def string_key
      cookies['user_name'] = "david"
      head :ok
    end
127 128 129 130 131 132 133 134 135 136 137 138 139 140

    def symbol_key_mock
      cookies[:user_name] = "david" if cookies[:user_name] == "andrew"
      head :ok
    end

    def string_key_mock
      cookies['user_name'] = "david" if cookies['user_name'] == "andrew"
      head :ok
    end

    def noop
      head :ok
    end
D
Initial  
David Heinemeier Hansson 已提交
141 142
  end

143
  tests TestController
D
Initial  
David Heinemeier Hansson 已提交
144

145
  def setup
146
    super
147
    @request.env["action_dispatch.secret_token"] = "b3c631c314c0bbca50c1b2843150fe33"
D
Initial  
David Heinemeier Hansson 已提交
148 149 150 151
    @request.host = "www.nextangle.com"
  end

  def test_setting_cookie
152
    get :authenticate
J
Jeremy Kemper 已提交
153
    assert_cookie_header "user_name=david; path=/"
154
    assert_equal({"user_name" => "david"}, @response.cookies)
D
Initial  
David Heinemeier Hansson 已提交
155 156
  end

157 158
  def test_setting_with_escapable_characters
    get :set_with_with_escapable_characters
J
Jeremy Kemper 已提交
159
    assert_cookie_header "that+%26+guy=foo+%26+bar+%3D%3E+baz; path=/"
160 161 162
    assert_equal({"that & guy" => "foo & bar => baz"}, @response.cookies)
  end

163
  def test_setting_cookie_for_fourteen_days
164
    get :authenticate_for_fourteen_days
J
Jeremy Kemper 已提交
165
    assert_cookie_header "user_name=david; path=/; expires=Mon, 10-Oct-2005 05:00:00 GMT"
166
    assert_equal({"user_name" => "david"}, @response.cookies)
167
  end
168

169
  def test_setting_cookie_for_fourteen_days_with_symbols
P
Pratik Naik 已提交
170
    get :authenticate_for_fourteen_days_with_symbols
J
Jeremy Kemper 已提交
171
    assert_cookie_header "user_name=david; path=/; expires=Mon, 10-Oct-2005 05:00:00 GMT"
172
    assert_equal({"user_name" => "david"}, @response.cookies)
173 174
  end

175 176
  def test_setting_cookie_with_http_only
    get :authenticate_with_http_only
J
Jeremy Kemper 已提交
177
    assert_cookie_header "user_name=david; path=/; HttpOnly"
178
    assert_equal({"user_name" => "david"}, @response.cookies)
179
  end
180

181
  def test_setting_cookie_with_secure
182
    @request.env["HTTPS"] = "on"
183 184 185 186
    get :authenticate_with_secure
    assert_cookie_header "user_name=david; path=/; secure"
    assert_equal({"user_name" => "david"}, @response.cookies)
  end
187

188 189 190 191 192 193 194 195 196 197 198 199 200
  def test_setting_cookie_with_secure_in_development
    Rails.env.stubs(:development?).returns(true)
    get :authenticate_with_secure
    assert_cookie_header "user_name=david; path=/; secure"
    assert_equal({"user_name" => "david"}, @response.cookies)
  end

  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

201
  def test_multiple_cookies
202 203
    get :set_multiple_cookies
    assert_equal 2, @response.cookies.size
J
Jeremy Kemper 已提交
204
    assert_cookie_header "user_name=david; path=/; expires=Mon, 10-Oct-2005 05:00:00 GMT\nlogin=XJ-122; path=/"
205
    assert_equal({"login" => "XJ-122", "user_name" => "david"}, @response.cookies)
206
  end
207

208
  def test_setting_test_cookie
209 210
    assert_nothing_raised { get :access_frozen_cookies }
  end
J
Joshua Peek 已提交
211

212 213
  def test_expiring_cookie
    get :logout
J
Jeremy Kemper 已提交
214
    assert_cookie_header "user_name=; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"
215
    assert_equal({"user_name" => nil}, @response.cookies)
216
  end
J
Joshua Peek 已提交
217

218 219
  def test_delete_cookie_with_path
    get :delete_cookie_with_path
J
Jeremy Kemper 已提交
220
    assert_cookie_header "user_name=; path=/beaten; expires=Thu, 01-Jan-1970 00:00:00 GMT"
221
  end
J
Jeremy Kemper 已提交
222

223
  def test_cookies_persist_throughout_request
Y
Yehuda Katz 已提交
224 225
    response = get :authenticate
    assert response.headers["Set-Cookie"] =~ /user_name=david/
226
  end
227 228 229

  def test_permanent_cookie
    get :set_permanent_cookie
230 231
    assert_match(/Jamie/, @response.headers["Set-Cookie"])
    assert_match(%r(#{20.years.from_now.utc.year}), @response.headers["Set-Cookie"])
232
  end
J
Joshua Peek 已提交
233

234 235 236 237
  def test_signed_cookie
    get :set_signed_cookie
    assert_equal 45, @controller.send(:cookies).signed[:user_id]
  end
J
Joshua Peek 已提交
238

239 240 241 242 243
  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

244 245
  def test_permanent_signed_cookie
    get :set_permanent_signed_cookie
246
    assert_match(%r(#{20.years.from_now.utc.year}), @response.headers["Set-Cookie"])
247 248 249
    assert_equal 100, @controller.send(:cookies).signed[:remember_me]
  end

250 251 252 253 254
  def test_delete_and_set_cookie
    get :delete_and_set_cookie
    assert_cookie_header "user_name=david; path=/; expires=Mon, 10-Oct-2005 05:00:00 GMT"
    assert_equal({"user_name" => "david"}, @response.cookies)
  end
J
Joshua Peek 已提交
255

256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
  def test_raise_data_overflow
    assert_raise(ActionDispatch::Cookies::CookieOverflow) do
      get :raise_data_overflow
    end
  end

  def test_tampered_cookies
    assert_nothing_raised do
      get :tampered_cookies
      assert_response :success
    end
  end

  def test_raises_argument_error_if_missing_secret
    assert_raise(ArgumentError, nil.inspect) {
      @request.env["action_dispatch.secret_token"] = nil
      get :set_signed_cookie
    }

    assert_raise(ArgumentError, ''.inspect) {
      @request.env["action_dispatch.secret_token"] = ""
      get :set_signed_cookie
    }
  end

  def test_raises_argument_error_if_secret_is_probably_insecure
    assert_raise(ArgumentError, "password".inspect) {
      @request.env["action_dispatch.secret_token"] = "password"
      get :set_signed_cookie
    }

    assert_raise(ArgumentError, "secret".inspect) {
      @request.env["action_dispatch.secret_token"] = "secret"
      get :set_signed_cookie
    }

    assert_raise(ArgumentError, "12345678901234567890123456789".inspect) {
      @request.env["action_dispatch.secret_token"] = "12345678901234567890123456789"
      get :set_signed_cookie
    }
  end

298 299 300 301 302 303
  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

304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
  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

  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

  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

  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

332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
  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

  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

  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

353 354 355 356 357 358
  def test_deleting_cookie_with_all_domain_option
    get :delete_cookie_with_domain
    assert_response :success
    assert_cookie_header "user_name=; domain=.nextangle.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"
  end

359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
  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

  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

  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

  def test_deleting_cookie_with_all_domain_option_and_tld_length
    get :delete_cookie_with_domain_and_tld
    assert_response :success
    assert_cookie_header "user_name=; domain=.nextangle.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"
  end

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
  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

  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

  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

  def test_deletings_cookie_with_several_preset_domains_using_one_of_these_domains
    @request.host = "example2.com"
    get :delete_cookie_with_domains
    assert_response :success
    assert_cookie_header "user_name=; domain=example2.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"
  end

  def test_deletings_cookie_with_several_preset_domains_using_other_domain
    @request.host = "other-domain.com"
    get :delete_cookie_with_domains
    assert_response :success
    assert_cookie_header "user_name=; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"
  end

420 421 422 423 424 425 426 427
  def test_cookies_hash_is_indifferent_access
    [:symbol_key, :string_key].each do |cookie_key|
      get cookie_key
      assert_equal "david", cookies[:user_name]
      assert_equal "david", cookies['user_name']
    end
  end

428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
  def test_setting_request_cookies_is_indifferent_access
    @request.cookies.clear
    @request.cookies[:user_name] = "andrew"
    get :string_key_mock
    assert_equal "david", cookies[:user_name]

    @request.cookies.clear
    @request.cookies['user_name'] = "andrew"
    get :symbol_key_mock
    assert_equal "david", cookies['user_name']
  end

  def test_cookies_retained_across_requests
    get :symbol_key
    assert_equal "user_name=david; path=/", @response.headers["Set-Cookie"]
    assert_equal "david", cookies[:user_name]

    get :noop
    assert_nil @response.headers["Set-Cookie"]
    assert_equal "user_name=david", @request.env['HTTP_COOKIE']
    assert_equal "david", cookies[:user_name]

    get :noop
    assert_nil @response.headers["Set-Cookie"]
    assert_equal "user_name=david", @request.env['HTTP_COOKIE']
    assert_equal "david", cookies[:user_name]
  end

  def test_cookies_can_be_cleared
    get :symbol_key
    assert_equal "user_name=david; path=/", @response.headers["Set-Cookie"]
    assert_equal "david", cookies[:user_name]

    @request.cookies.clear
    get :noop
    assert_nil @response.headers["Set-Cookie"]
    assert_nil @request.env['HTTP_COOKIE']
    assert_nil cookies[:user_name]

    get :symbol_key
    assert_equal "user_name=david; path=/", @response.headers["Set-Cookie"]
    assert_equal "david", cookies[:user_name]
  end

  def test_cookies_are_escaped
    @request.cookies[:user_ids] = '1;2'
    get :noop
    assert_equal "user_ids=1%3B2", @request.env['HTTP_COOKIE']
    assert_equal "1;2", cookies[:user_ids]
  end

J
Jeremy Kemper 已提交
479 480 481 482
  private
    def assert_cookie_header(expected)
      header = @response.headers["Set-Cookie"]
      if header.respond_to?(:to_str)
483
        assert_equal expected.split("\n").sort, header.split("\n").sort
J
Jeremy Kemper 已提交
484 485 486 487
      else
        assert_equal expected.split("\n"), header
      end
    end
488 489 490 491 492 493 494 495 496

    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
497
end