34

我正在为我的 Rails 3 应用程序编写一些 RSpec 测试,并尝试从Webrat切换到Capybara。到目前为止一切顺利,但应用程序使用 HTTP 基本身份验证来授权我的管理员用户,知道如何使用 Capybara 进行测试吗?

这是我当前的 Webrat 步骤:

it 'should authenticate for admin' do
  basic_auth('user', 'secret')
  visit '/admin'
  response.status.should eql 200
  response.status.should_not eql 401
end

我如何使用 Capybara 做到这一点?谢谢!

4

6 回答 6

44

我让它工作page.driver.basic_authorize(name, password)

更新

目前,在 Capybara 升级后,我正在使用这堆解决方法:

if page.driver.respond_to?(:basic_auth)
  page.driver.basic_auth(name, password)
elsif page.driver.respond_to?(:basic_authorize)
  page.driver.basic_authorize(name, password)
elsif page.driver.respond_to?(:browser) && page.driver.browser.respond_to?(:basic_authorize)
  page.driver.browser.basic_authorize(name, password)
else
  raise "I don't know how to log in!"
end
于 2010-12-03T12:53:41.520 回答
29

默认的 Capybara 驱动程序 rack-test 有一个用于 Basic HTTP Auth 和Digest HTTP Auth 的basic_authorize方法(带有别名) ,您可以在这里找到它们:https ://github.com/brynary/rack-test/blob/master /lib/rack/test.rbauthorizedigest_authorize

所以你可以这样做:

page.driver.browser.authorize 'login', 'password'

或者您可以为 Basic HTTP Auth 编写一个简单的帮助程序:

def basic_auth(user, password)
  encoded_login = ["#{user}:#{password}"].pack("m*")
  page.driver.header 'Authorization', "Basic #{encoded_login}"
end
于 2011-10-29T12:36:12.463 回答
7

没有一个page.driver.*解决方案对我有用。我使用的是 Poltergeist,而不是 Selenium,所以这可能与它有关。这是有效的:

RSpec.shared_context "When authenticated" do
  before do
    username = 'yourusername'
    password = 'yourpassword'
    visit "http://#{username}:#{password}@#{Capybara.current_session.server.host}:#{Capybara.current_session.server.port}/"
  end
end

然后,在您的规范中:

feature "Your feature", js: true do
  include_context "When authenticated"

  # Your test code here...
end
于 2015-04-17T15:18:39.930 回答
2

这在最近版本的 cucumber-rails 中发生了变化(我使用的是 1.0.2)。

cucumber-rails 默认使用 Rack/Test 驱动程序,所以如果您没有更改它,以下说明将起作用。

创建特征/step_definitions/authorize.rb:

Given /^I am logged in as "([^\"]*)" with "([^\"]*)"$/ do |username, password|
  authorize username, password
end

现在您可以在您的功能中使用它:

Given I am logged in as "admin" with "password"
于 2011-08-02T09:36:14.053 回答
1

我不得不做这个可怕的 hack 让它工作值得无头和 javascript

Given /^I am logged in$/ do
 if page.driver.respond_to?(:basic_authorize)
   page.driver.basic_authorize('admin', 'password')
 else
   # FIXME for this to work you need to add pref("network.http.phishy-userpass-length", 255); to /Applications/Firefox.app/Contents/MacOS/defaults/pref/firefox.js
   page.driver.visit('/')
   page.driver.visit("http://admin:password@#{page.driver.current_url.gsub(/^http\:\/\//, '')}")
 end
end
于 2010-12-13T12:42:42.773 回答
0

伙计,这些解决方案都不适合我。

Pistos 的解决方案接近并适用于功能规格,js: true但在无头时失败。

以下解决方案适用于头和js: true规格。

规范/支持/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
于 2015-09-08T23:12:57.167 回答