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 => :login

and this actually works, i.e. a link to login_path will redirect to /auth/facebook.

However, how can I write a (rspec) spec to test this route (specifically, the "redirect" option)?

Do note that /login is not an actual action nor method defined in application.

Thanks in advance!

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

Because you didn't provide any detail about your environment, the following example assumes you are using rspec 2.x and rspec-rails, with Rails 3.

# rspec/requests/redirects_spec.rb
describe "Redirects" do
  describe "GET login" do
    before(:each) do
      get "/login"
    end

    it "redirects to /auth/facebook" do
      response.code.should == "302"
      response.location.should == "/auth/facebook"
    end
  end
end

Read the Request Specs section of rspec-rails for more details.

link|improve this answer
This works! Thanks! The key is in defining this spec in #spec/requests/redirects as you have mentioned. Previously, I was doing it in either ApplicationControllerSpec (which resulted in the error that action "/login" cannot be found in the ApplicationController), or in one of the spec/routing specs with "*.should route_to blah" (which complained that the route does not exist). – winstonyw Dec 24 '10 at 3:47
And yes, I am using rspec(-rails) 2.x with Rails 3. – winstonyw Dec 24 '10 at 3:50
Just another note that the file should be named redirects_spec.rb, so that the default Rake task will pick it up when you just do 'Rake' on the command line. – winstonyw Dec 24 '10 at 4:35
You're right, I forgot the _spec.rb suffix. – Simone Carletti Dec 24 '10 at 13:56
feedback

You should use Rack::Test and check the url and the http status code

get "/login"
last_response.status.should == 302
last_response.headers["Location"].should == "/auth/facebook"
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.