В моем приложении Rails (5.1) я использую devise для аутентификации и ActionCable.
Мое соединение ActionCable выглядит так:
module ApplicationCable
class Connection < ActionCable::Connection::Base
identified_by :current_user
def connect
puts 'current_user:', current_user.inspect
self.current_user = find_verified_user
logger.add_tags 'ActionCable', current_user.id
end
def disconnect
# ...
end
protected
def find_verified_user
verified_user = env['warden'].user
return verified_user if verified_user
reject_unauthorized_connection
end
end
end
Теперь я хочу протестировать его с помощью action-cable-testing
gem:
require 'rails_helper'
RSpec.describe ApplicationCable::Connection, type: :channel do
let(:user) { create(:user) }
before do
stub_connection(current_user: user)
end
it 'successfully connects' do
expect { connect '/cable' }.to_not raise_error
end
end
Но получил ошибку:
ApplicationCable::Connection
current_user:
nil
successfully connects (FAILED - 1)
Failures:
1) ApplicationCable::Connection successfully connects
Failure/Error: expect { connect '/cable' }.to_not raise_error
expected no Exception, got #<NoMethodError: undefined method `[]' for nil:NilClass> with backtrace:
# ./app/channels/application_cable/connection.rb:19:in `find_verified_user'
# ./app/channels/application_cable/connection.rb:8:in `connect'
# /home/user/.rvm/gems/ruby-2.4.1/gems/action-cable-testing-0.3.1/lib/action_cable/connection/test_case.rb:176:in `connect'
# ./spec/channels/user_channel_spec.rb:11:in `block (3 levels) in <top (required)>'
# ./spec/channels/user_channel_spec.rb:11:in `block (2 levels) in <top (required)>'
# ./spec/channels/user_channel_spec.rb:11:in `block (2 levels) in <top (required)>'
Поэтому у меня два вопроса:
- Почему
current_user
означает nil
? - Как аутентифицировать пользователя?