I am developing an app for Shopify and I want to do integration testing.

I need to be able to store some values in the session variable, so that authentication works.

How could I do that?

I use Capybara and Capybara-webkit.

link|improve this question

1  
In integration testing, you should log users from the login forms. – apneadiving Dec 17 '11 at 18:49
That won't work. The key issue is that I am using an external authentication system: Shopify. So Shopify is configured to return a successful log-in to a specific URL. Do see the problem? That URL can't be localhost. That's why I need to fake the log in process, even if I am in Integration testing – Nerian Dec 17 '11 at 20:53
feedback

3 Answers

up vote 1 down vote accepted

I fear I bring bad news, but from Capybara's documentation:

Access to session and request is not possible from the test, Access to response is limited.

So you won't be able to test as you expect.


Just thinking: it would be acceptable that you insert some conditional statement in your controller for test purpose.:

 session[:foo] = User.first.id if Rails.env.test?

A better option would be to monkey patch your controller only for your integration tests.

link|improve this answer
feedback

As the comment by apneadiving recommends, you should fill the form out "directly" using capybara. Testing using Cucumber might look like this for filling in a login form for authentication (from the Capybara github page):

When /I sign in/ do
  within("#session") do
    fill_in 'Login', :with => 'user@example.com'
    fill_in 'Password', :with => 'password'
  end
  click_link 'Sign in'
  ...
end

If you trying to do something different or are having trouble with the normal login process, this SO question may help.

link|improve this answer
That won't work. The key issue is that I am using an external authentication system: Shopify. So Shopify is configured to return a successful log-in to a specific URL. Do see the problem? That URL can't be localhost. That's why I need to fake the log in process, even if I am in Integration testing. – Nerian Dec 17 '11 at 20:52
1  
@Nerian see if you can use github.com/myronmarston/vcr to record that external request to your local environment, then you can use this method. – Christopher Manning Dec 22 '11 at 7:50
feedback

You can use something like VCR or webmock to stub out the call to the external http resource.

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.