在系统测试中设置 current_user

Setting current_user in system tests

我正在使用系统测试来验证以下流程是否按用户预期的方式工作:

  1. 在表格中注册
  2. 登录
  3. 访问帐户页面
  4. 更新账户信息

但是,我在创建用户后遇到错误:

Puma caught this error: Couldn't find User with 'id'=16 (ActiveRecord::RecordNotFound)
/Me/MyComputer/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activerecord-5.1.4/lib/active_record/core.rb:189:in `find'
/Me/MyComputer/Documents/my_app/app/controllers/application_controller.rb:30:in `current_user'

错误指向在 application_controller 中设置 current_user 的代码:

def current_user
  if session[:user_id]
    @current_user ||= User.find(session[:user_id])
  end
end

我的假设是否正确,即无法在测试中访问会话?如果是这样 - 那么我如何设置 current_user 以便我可以测试上面的场景?如果不是这样 - 可能导致错误的原因是什么?

在 rails 系统测试中,您的应用程序应该能够访问会话,但您的测试代码却不能。在您的情况下,我假设 current_user 是从应用程序代码调用的,而不是从测试代码调用的。在这种情况下,导致数据库异常的最常见原因是您的 Puma 实例 运行 处于集群模式(单独的进程),而不是所需的单一模式(同一进程只是不同的线程)。在 运行 测试时检查 Puma 的输出并确保其状态为 "single mode" - 如果不是,您需要在测试环境中调整 Puma 的配置以使用 0 个进程和 1 个或多个线程(如测试需要)