]> git.openstreetmap.org Git - rails.git/blobdiff - test/test_helper.rb
add test helper to set oauth tokens
[rails.git] / test / test_helper.rb
index 385a2f6825d0d9ea27baae625791d3b6a55e5067..39e8cdd059df4c6e3254a9ab6259852d2607d517 100644 (file)
@@ -85,6 +85,17 @@ module ActiveSupport
       @request.env["HTTP_AUTHORIZATION"] = format("Basic %{auth}", :auth => Base64.encode64("#{user}:#{pass}"))
     end
 
       @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)
     ##
     # set request readers to ask for a particular error format
     def error_format(format)
@@ -150,5 +161,13 @@ module ActiveSupport
         end
       end
     end
         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
   end
 end