Hi,
We are using acts_as_authenticated plugin latest version as of a couple
of days back.
The before_filter :login_required was added to the application
controller. So far so good.
However the functional tests are all failing as one would expect
(perhaps not me though) witha 302 .... exactly - no one is logged in.
This is correct behaviour but a pain when function testing.
Is there a suggested/recommended course of action to handle this ? I
have looked around but have been unsuccessful.
PS. I am using the AuthenticatedTestHelper and its _login_as_ method.
However this requires that every test method must login. I was just
looking
for a differnet way ... if there is one. = )
For testing controllers which require login, there was a thread earlier on this list, search for the thread “Testing Actions Requiring A
Login”.
The Rails Recipes book has a recipe that shows another way to deal with this problem. It shows how to stub out the login functionality so that you can focus on the core application functionality.
I am using RESTful authentication plugin and I am still figuring out how to use the suggestions from the above thread. Last night I was getting error message when I passed in the user_id, I have to look at the source for the generated code so that I can replicate the login in the functional test. I will post an update when I make progress.
I resolved my problem. For RESTful authentication, there is a
login_as(user) method in AuthenticatedTestHelper module that sets the
current user
in the session from the user fixtures. This is under the lib directory.
In my functional test, I have:
def test_should_show_billing_profile_for_valid_login
login_as (:aaron)
get :show, :id => :aaron.id
assert_response :success
assert_select "html:root>head>title", "BillingProfiles: show"
end
respond_to do |format|
format.html # show.rhtml
format.xml { render :xml => @billing_profile.to_xml }
end
end
The problem was that I was using session[:user_id] in my controller
whereas the RESTful authentication
module is using session[:user] as shown below:
module AuthenticatedTestHelper
# Sets the current user in the session from the user fixtures.
def login_as(user)
@request.session[:user] = user ? users(user).id : nil
end
....
So I changed my controller code to use session[:user] and my tests now
pass! The plugin itself has the API to help you do the functional
testing. Very nice indeed.