Это отличные решения для контроллера и спецификации запроса.
Для тестов функций с использованием Capybara, вот решение, чтобы заставить HTTP Basic аутентификацию работать:
Спецификация / поддержка / when_authenticated.rb
RSpec.shared_context 'When authenticated' do
background do
authenticate
end
def authenticate
if page.driver.browser.respond_to?(:authorize)
# When headless
page.driver.browser.authorize(username, password)
else
# When javascript test
visit "http://#{username}:#{password}@#{host}:#{port}/"
end
end
def username
# Your value here. Replace with string or config location
Rails.application.secrets.http_auth_username
end
def password
# Your value here. Replace with string or config location
Rails.application.secrets.http_auth_password
end
def host
Capybara.current_session.server.host
end
def port
Capybara.current_session.server.port
end
end
Тогда в вашей спецификации:
feature 'User does something' do
include_context 'When authenticated'
# test examples
end