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.
|
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.
| |||||||
feedback
|
|
I fear I bring bad news, but from Capybara's documentation:
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.:
A better option would be to monkey patch your controller only for your integration tests. | ||||
|
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):
If you trying to do something different or are having trouble with the normal login process, this SO question may help. | |||||||
feedback
|
|
You can use something like VCR or webmock to stub out the call to the external http resource. | |||
|
feedback
|