Tagged Questions
0
votes
0answers
90 views
Omniauth Cucumber Testing - Routing Error
I am trying to test my Facebook login button in Cucumber. I am using Omniauth.
Here is what I have in /features/support/env.rb
Before do
OmniAuth.config.test_mode = true
...
1
vote
0answers
132 views
Integration testing omniauth-linkedin and devise, getting a Nil response
I'm trying to develop integration tests for devise + omniauth-linkedin, following these instructions, but the response is nil. The app is working on the development environment, but the tests are not ...
0
votes
1answer
141 views
Adding roles to an OmniAuth log in so that Cucumber doesn't fail a test
I've been working on an app for learning purposes which includes OmniAuth for Facebook logins, Cucumber for BDD and CanCan & Rolify for permissions and roles. No Devise is used so far. I'm trying ...
2
votes
2answers
551 views
Testing Devise+Omniauth(Facebook) with Cucumber
Here is my feature:
Scenario: Professor is not signed up and tries to sign in with Facebook
Given I do not exist as a professor
When I sign in as a professor with Facebook
Then I ...
0
votes
1answer
434 views
Trying to get Cucumber working with OmniAuth
I have been pulling my hair out because of this.
My cucumber step clicks on a login for facebook. I have mocked omniauth by following the following article:
...
1
vote
0answers
245 views
undefined method error trying to get cucumber testing of omniauth working properly
I'm trying to get some cucumber tests of omniauth with Facebook working.
Currently I get the following error:
Given I am not logged in # ...
2
votes
0answers
217 views
OmniAuth + Rails 3 + Cucumber - undefined method `test_mode!' for Devise::OmniAuth:Module (NoMethodError)
When I run the command 'cucumber' in my new Rails 3.1 project I am getting the following error:
undefined method `test_mode!' for Devise::OmniAuth:Module (NoMethodError)
here are my gems:
group ...
1
vote
3answers
543 views
Turning on test mode in OmniAuth does not redirect requests when using Cucumber
I am trying to test my OmniAuth login process by providing a faked authentication hash when a request is made to /auth/facebook, as described here and here. The problem is, when I turn test mode on, ...
0
votes
1answer
281 views
How do I get cucumber & capybara to use http:// paths instead of file:/// paths?
I'm using omniauth and cucumber with a new application. I've got omniauth up and working and am trying to add appropriate cucumber feature tests. I kept running into odd errors in testing - errors ...
5
votes
2answers
1k views
Rails/Cucumber - Hosting error testing omniauth (provider: facebook) - (URI::InvalidComponentError)
I am facing an error trying to configure omniauth for integration testing purpose with cucumber (I set up Omniauth through Devise as the wiki provides)
Please see below:
Scenario: Test ...
1
vote
1answer
548 views
Rails 3-Cucumber-Omniauth and issue … :(
I have updated my bundle, and since, my acceptance tests do not pass ...
when /^Facebook reply$/ do
Devise::OmniAuth.short_circuit_authorizers!
Devise::OmniAuth.stub!(:facebook) do |b|
...
1
vote
2answers
1k views
Heroku + Devise 1.2 + OmniAuth to GitHub = null value in column “email”
I'm trying to set up Devise 1.2 to allow user authentication via GitGub. As far as I can test it locally using Cucumber, and stubbing out GitHub OAuth, it seems to be working fine. After I deploy to ...
5
votes
1answer
471 views
How should I test user signup/login with third party library like Omniauth?
I'm using Rails 3.0.3, Rspec2 , Cucumber , Capybara
How should a scenario look for user signup process , when using the Omniauth gem ?
I mean it doesn't make sense for me to testing this library, I ...