X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1f2ac59d1d24d75c510412e63070d83af13c6757..ac7c45bca036db2c5bfd692d77ff7f1da526955f:/test/test_helper.rb diff --git a/test/test_helper.rb b/test/test_helper.rb index 385a2f682..39e8cdd05 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -85,6 +85,17 @@ module ActiveSupport @request.env["HTTP_AUTHORIZATION"] = format("Basic %{auth}", :auth => Base64.encode64("#{user}:#{pass}")) end + ## + # set oauth token permissions + def grant_oauth_token(*tokens) + request.env["oauth.token"] = AccessToken.new do |token| + tokens.each do |t| + token.public_send("#{t}=", true) + end + end + end + + ## # set request readers to ask for a particular error format def error_format(format) @@ -150,5 +161,13 @@ module ActiveSupport end end end + + def sign_in_as(user) + stub_hostip_requests + visit login_path + fill_in "username", :with => user.email + fill_in "password", :with => "test" + click_on "Login", :match => :first + end end end