I'm writing some RSpec tests for my Rails 3 application and trying to switch from Webrat to Capybara. So far so good but the application uses HTTP basic auth to authorize my admin user, any idea how I can test that with Capybara?

Here is my current Webrat step:

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

How do I do this with Capybara? Thanks!

link|improve this question

79% accept rate
feedback

4 Answers

up vote 19 down vote accepted

I got it to work using page.driver.basic_authorize(name, password) instead

Update:

At the moment, after a Capybara upgrade, I'm using this pile of workarounds:

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
link|improve this answer
Cool, this works! For future reference: I found a comment by Jonas Nicklas, the creator of Capybara, advising against using the driver as not all possible Capybara drivers support HTTP headers (github.com/jnicklas/capybara/issues/issue/17)... if someone would need this. As far as I am concerned this is the solution I need. Thanks Anders! – Cimm Dec 3 '10 at 20:58
feedback

The default Capybara driver, rack-test, has a basic_authorize method (with alias authorize) for Basic HTTP Auth, and digest_authorize for Digest HTTP Auth, here you can find them: https://github.com/brynary/rack-test/blob/master/lib/rack/test.rb

So you can do:

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

Or you can write a simple helper for Basic HTTP Auth:

def basic_auth(user, password)
  encoded_login = ["#{user}:#{password}"].pack("m*")
  page.driver.header 'Authorization', "Basic #{encoded_login}"
end
link|improve this answer
Your first line {page.driver.browser.authorize 'login', 'password'} works a treat, shame it won't work in a before :each block for an rspec 2 test but it does work fine directly before to a call to visit. Thanks for the answer – jamesw Nov 26 '11 at 12:52
feedback

This has changed in recent versions of cucumber-rails (I am using 1.0.2).

cucumber-rails uses the Rack/Test driver by default, so if you have not changed that, the following instructions will work.

Create features/step_definitions/authorize.rb:

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

Now you can use this in your features:

Given I am logged in as "admin" with "password"
link|improve this answer
Thanks Joost but the question didn't mention Cucumber. It was a Capybara only question. Good to know there is a simple way in Cucumber to do this though. – Cimm Aug 2 '11 at 13:11
Regardless if you use RSpec and not Cucumber to run the features, the answer is equally valid if you have kept the default driver in Capybara which is Rack::Test. – Joost Baaij Aug 17 '11 at 7:42
feedback

I had to do this horrible hack to get it work worth headless and with 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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.