2
votes
1answer
44 views

Rspec: Test redirects in Devise::OmniauthCallbacksController subclass

Following the Railscast on Devise and OmniAuth I have implemented an OmniauthCallbacksController < Devise::OmniauthCallbacksController which contains a single method to handle an OmniAuth callback: ...
2
votes
0answers
63 views

Creating Rspec tests with Omniauth

Rails noob here. I'm having trouble understanding how/what to test for regarding authentication with Omniauth-Facebook. Pretty much have a similar setup to the relevant railscast. And have the test ...
1
vote
1answer
27 views

Routing Test Fails with Matched Route

I have this line of code in my routes namespace :api, defaults: {format: 'json'} do namespace :v1 do match '/auth/:provider/callback', to: 'sign_in#authenticate' end end And my test as ...
0
votes
1answer
27 views

Trying to run test using 'rspec' but can't due to my omniauth.rb

Has my whole testing ability been render useless with the inclusion of Omniauth? When running any 'rspec' commands I immediately recieve this error: config/initializers/omniauth.rb:4:in `block in ...
0
votes
0answers
105 views

RSpec controller test + OmniAuth = bad idea?

This is a generalized version of a more specific question I've had. Basically, I have a project that uses OmniAuth + rolify, and I'm trying to create controller tests (not integration/feature tests, ...
0
votes
0answers
157 views

Rspec + OAuth: Having trouble signing in from within a test (omniauth mock)

I'm testing a controller in my app which should render one view for users who've given over their info and requested access ("signed in guests") and another view for the rest of the world (anonymous ...
1
vote
1answer
260 views

How should I test Omniauth with Rspec and Capybara?

Trying to test OmniAuth with RSpec and Capybara, utterly failing. So far, spec_helper.rb has: # Enable omniauth testing mode OmniAuth.config.test_mode = true OmniAuth.config.mock_auth[:google] = ...
2
votes
0answers
167 views

Getting “undefined method `env' for nil:NilClass” in integration test for OmniAuth

I have Omniauth test mode on: spec_helper (I put it at the bottom of the file, right before end): #Turn on "test mode" for OmniAuth OmniAuth.config.test_mode = true and this is my test: ...
0
votes
1answer
444 views

omniauth-facebook and testing with rspec

I am trying to just test omniauth. I have put in config/environments/test.rb OmniAuth.config.test_mode = true and in my spec_helper.rb OmniAuth.config.add_mock(:facebook, ...
3
votes
2answers
411 views

How can I write an Omniauth RSpec for the login?

When a user goes to /auth/facebook, it gets redirected to FB, then back to my /auth/facebook/callback if successful. How can I write an RSpec test that will follow all of these redirects to verify my ...
1
vote
0answers
526 views

request specs with devise

This should be fairly easy to answer, I hope. I did look around and couldn't find the answer even though it may be something straight-forward. When running my spec and visit correspondences_path I ...
3
votes
1answer
476 views

Create users in Factory Girl with OmniAuth?

I am currently creating an application that uses OmniAuth to create and authenticate users. I am encountering problems during testing due to Factory Girl being unable to generate users without ...
2
votes
2answers
502 views

Devise and OmniAuth twitter integration testing with rspec

I am trying to write a integration test for signing in with twitter using OmniAuth and Devise. I am having trouble getting the request variable to be set. It works in the controller test but not the ...
0
votes
2answers
591 views

Omniauth-facebook Devise Rspec, undefined method `extra' for nil:NilClass

I'm trying to test omniauth-facebook integration in my app, but i keep getting this failures: Failure/Error: get :facebook NoMethodError: undefined method `extra' for nil:NilClass # ...
2
votes
0answers
269 views

Post request spec results in 401 unauthorized for omniauth-facebook & devise

I'm working on a Facebook app and using devise and omniauth-facebook for authentication. I followed the wiki pages to set it up and also using OmniAuth.config.add_mock(:facebook, @omniauth_hash) for ...
1
vote
1answer
1k views

How do you test omni-auth facebook using rspec?

I've looked at the gem wiki and followed the instructions but for some reason I am getting a nil when doing an omniauth test: user_sessions_controller_spec.rb: require 'spec_helper' describe ...
2
votes
1answer
699 views

Devise sign_in_and_redirect causes rspec test to fail

I'm sort of new to TDD, so you'll have to excuse me if this is obvious, but I've got a login system using Devise and Omniauth that works perfectly in development, but for some reason, when I run my ...
3
votes
2answers
2k views

Rails rspec and omniauth (integration testing)

My Rails 3.2 app uses OmniAuth and Devise to sign in with Twitter. The authentication system works fine. I would like to write an integration test in rspec to make sure everything works. Using the ...
2
votes
2answers
962 views

How do I use omniauth in rspec for sinatra?

Shortened version: Using the omniauth gem for sinatra, I can't get rspec log in to work and keep my session for subsequent requests. Based on suggestions from ...
0
votes
1answer
192 views

Why is this spec failing, when the conditions it's testing pass in development?

I have a User model and Authentications model, which is a basic omniauth setup. Essentially, users can sign up through oauth without setting a password. I have a Authentication.is_destroyable? method ...
8
votes
2answers
2k views

Omniauth Rspec testing problem

I followed the rails cast of omniauth to create authentication for twitter ( http://railscasts.com/episodes/235-omniauth-part-1?view=comments ). It works fine in development but I can't get rspec to ...
0
votes
1answer
566 views

HowTo Write tests for Devise & Omniauth in my Rails 3 app?

I have a Rails 3 app with Omniauth and Devise. I haven't been able to find a solid tutorial showing how I should write specs for testing the functionality. What I want to achieve is to ensure that ...
2
votes
1answer
1k views

omniauth mock facebook response

I'm want to test my login through facebook. Im using pure omniauth, w/o Devise. I check the wiki page and do following: helper for request specs module IntegrationSpecHelper def ...
0
votes
2answers
479 views

“Not Found” when testing omniauth Facebook authentication with Capybara

I have a facebook Omniauth authentication system implemented in my project. I works fine for me in the browser and up until today I had a full set of integration tests written and passing using ...
5
votes
3answers
2k views

How do I write a spec for a Rails route that does redirecting?

I am using Omniauth in my Rails project, and I'll like to hide "/auth/facebook" behind a "/login" route. In fact, I wrote a route: match "/login", :to => redirect("/auth/facebook"), :as => ...