如何在Rails的功能测试中测试cookie状态?

时间:2010-08-26 16:21:39

标签: ruby-on-rails cookies functional-testing

如何测试使用Cookie的给定控制器操作?

如何在功能测试中设置cookie以及如何获取它们?

1 个答案:

答案 0 :(得分:13)

这是适用于Rails 2.3.8的代码(注释掉的行使测试不通过):

test 'cookie testing should work' do
  @request.cookies['foo'] = 'Foo'
  # cookies['foo'] = 'Foo'
  # this does not work to: CGI::Cookie.new('foo', 'bar')
  get :index # does: cookies[:foo] = (cookies['foo'] || "") + " bar!" 
  # the cookie key in the controller can by a symbol, but not in the test
  assert_response :success
  assert_not_nil cookies['foo'], "Cookie with foo key should not be nil. Debug: Cookies=#{cookies.inspect}"
  assert_equal "Foo bar!", cookies['foo'], "Debug: Cookies=#{cookies.inspect}"
  # assert_not_nil @cookies['foo'], "Cookie with foo key should not be nil. Debug: Cookies=#{@cookies.inspect}"
  # assert_not_nil @request.cookies['foo'], "Cookie with foo key should not be nil. Debug: Cookies=#{@request.cookies.inspect}"
  # assert_equal "Foo bar!", @request.cookies['foo'], "Debug: Cookies=#{@request.cookies.inspect}"
end

我花了很长时间寻找答案。