Don't show timeout message for empty diffs (ie. blank file added)
[gitorious.git] / lib / authenticated_test_helper.rb
blob3ab29fef7a6a306d3f00b5576f003bfb4d85ab56
1 #--
2 #   Copyright (C) 2012-2013 Gitorious AS
4 #   This program is free software: you can redistribute it and/or modify
5 #   it under the terms of the GNU Affero General Public License as published by
6 #   the Free Software Foundation, either version 3 of the License, or
7 #   (at your option) any later version.
9 #   This program is distributed in the hope that it will be useful,
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #   GNU Affero General Public License for more details.
14 #   You should have received a copy of the GNU Affero General Public License
15 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #++
18 module AuthenticatedTestHelper
19   # Sets the current user in the session from the user fixtures.
20   def login_as(user)
21     @request.session[:user_id] = user ? user_instance(user).id : nil
22     @request.session_options[:expire_after] = 1.hour
23   end
25   def authorize_as(user)
26     @request.env["HTTP_AUTHORIZATION"] = user ? "Basic #{Base64.encode64("#{users(user).email}:test")}" : nil
27   end
29   # Sometimes user is a User
30   def user_instance(sym_or_obj)
31     sym_or_obj.is_a?(User) ? sym_or_obj : users(sym_or_obj)
32   end
33 end