Commit 7ca197b3 authored by Eric Davis's avatar Eric Davis

Merged r3933 from trunk.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@3983 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 72ce3e18
......@@ -67,6 +67,13 @@ class AccountControllerTest < ActionController::TestCase
assert_redirected_to 'my/page'
end
def test_login_with_invalid_openid_provider
Setting.self_registration = '0'
Setting.openid = '1'
post :login, :openid_url => 'http;//openid.example.com/good_user'
assert_redirected_to home_url
end
def test_login_with_openid_for_existing_non_active_user
Setting.self_registration = '2'
Setting.openid = '1'
......
......@@ -89,7 +89,7 @@ module OpenIdAuthentication
begin
uri = URI.parse(identifier)
uri.scheme = uri.scheme.downcase # URI should do this
uri.scheme = uri.scheme.downcase if uri.scheme # URI should do this
identifier = uri.normalize.to_s
rescue URI::InvalidURIError
raise InvalidOpenId.new("#{identifier} is not an OpenID identifier")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment