]> git.openstreetmap.org Git - rails.git/commitdiff
Start ROTS for user login tests as well as creation tests
authorTom Hughes <tom@compton.nu>
Sat, 21 May 2011 12:35:15 +0000 (13:35 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 21 May 2011 12:35:15 +0000 (13:35 +0100)
app/controllers/user_controller.rb
test/integration/user_creation_test.rb
test/integration/user_login_test.rb
test/test_helper.rb

index a066c1c63b3c6f812264c56b4106a0f6f20e1472..4128b61d4a0982cf43ba1b79e7bfe45db3c97d05 100644 (file)
@@ -604,7 +604,7 @@ private
     session[:user] = user.id
     session_expires_after 1.month if session[:remember_me]
 
-    target = params[:referer] || url_for(:controller => :site, :action => :index)
+    target = session[:referer] || url_for(:controller => :site, :action => :index)
 
     # The user is logged in, so decide where to send them:
     #
index 56ff5f01d37ec5d328ebe2a8e02391323024cc2f..9cb5e895ccf4993f672f036d6da0352261ed6d4b 100644 (file)
@@ -4,31 +4,7 @@ class UserCreationTest < ActionController::IntegrationTest
   fixtures :users
 
   def setup
-    begin
-      # Test if the ROTS (Ruby OpenID Test Server) is already running
-      rots_response = Net::HTTP.get_response(URI.parse("http://localhost:1123/"))
-    rescue
-      # It isn't, so start a new instance.
-      rots = IO.popen(RAILS_ROOT + "/vendor/gems/rots-0.2.1/bin/rots --silent")
-
-      # Wait for up to 30 seconds for the server to start and respond before continuing
-      for i in (1 .. 30)
-       begin
-         sleep 1
-         rots_response = Net::HTTP.get_response(URI.parse("http://localhost:1123/"))
-         # If the rescue block doesn't fire, ROTS is up and running and we can continue
-         break
-       rescue
-         # If the connection failed, do nothing and repeat the loop
-       end
-      end
-
-      # Arrange to kill the process when we exit - note that we need
-      # to kill it really har due to a bug in ROTS
-      Kernel.at_exit do
-        Process.kill("KILL", rots.pid)
-      end
-    end
+    openid_setup
   end
 
   def test_create_user_form
index a272f7bad041962c4cf91bf6e4b80f0c86240fb0..f76f3ca2d3730ca0f0e15e722adc1f4495c428ff 100644 (file)
@@ -3,6 +3,10 @@ require File.dirname(__FILE__) + '/../test_helper'
 class UserLoginTest < ActionController::IntegrationTest
   fixtures :users
 
+  def setup
+    openid_setup
+  end
+
   def test_login_openid_success
     get '/login'
     assert_response :redirect
index b91c0779f8a22f81504c9403aa707fc27c278438..dc29287f51a0f399f7aeb4263d86391d3cae4f50 100644 (file)
@@ -183,6 +183,35 @@ class ActiveSupport::TestCase
     assert_select "span[class=translation_missing]", false, "Missing translation #{msg}"
   end
 
+  # Set things up for OpenID testing
+  def openid_setup
+    begin
+      # Test if the ROTS (Ruby OpenID Test Server) is already running
+      rots_response = Net::HTTP.get_response(URI.parse("http://localhost:1123/"))
+    rescue
+      # It isn't, so start a new instance.
+      rots = IO.popen(RAILS_ROOT + "/vendor/gems/rots-0.2.1/bin/rots --silent")
+
+      # Wait for up to 30 seconds for the server to start and respond before continuing
+      for i in (1 .. 30)
+       begin
+         sleep 1
+         rots_response = Net::HTTP.get_response(URI.parse("http://localhost:1123/"))
+         # If the rescue block doesn't fire, ROTS is up and running and we can continue
+         break
+       rescue
+         # If the connection failed, do nothing and repeat the loop
+       end
+      end
+
+      # Arrange to kill the process when we exit - note that we need
+      # to kill it really har due to a bug in ROTS
+      Kernel.at_exit do
+        Process.kill("KILL", rots.pid)
+      end
+    end
+  end
+
   def openid_request(openid_request_uri)
     openid_response = Net::HTTP.get_response(URI.parse(openid_request_uri))
     openid_response_uri = URI(openid_response['Location'])