+
+ OmniAuth.config.add_mock(:openid,
+ :uid => auth_uid,
+ :info => { :email => new_email, :name => display_name })
+
+ assert_difference("User.count") do
+ assert_difference("ActionMailer::Base.deliveries.size", 1) do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "openid", :openid_url => openid_url, :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "openid", :openid_url => openid_url, :origin => "/user/new")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name, :email => new_email,
+ :auth_provider => "openid", :auth_uid => auth_uid
+ follow_redirect!
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :display_name => display_name,
+ :auth_provider => "openid",
+ :auth_uid => auth_uid,
+ :consider_pd => "1" } }
+ follow_redirect!
+ end
+ end
+ end
+
+ # Check the e-mail
+ register_email = ActionMailer::Base.deliveries.first
+
+ assert_equal register_email.to.first, new_email
+ # Check that the confirm account url is correct
+ confirm_regex = Regexp.new("confirm_string=([a-zA-Z0-9%_-]*)")
+ email_text_parts(register_email).each do |part|
+ assert_match confirm_regex, part.body.to_s
+ end
+ confirm_string = CGI.unescape(email_text_parts(register_email).first.body.match(confirm_regex)[1])
+
+ # Check the page
+ assert_response :success
+ assert_template "confirmations/confirm"
+
+ ActionMailer::Base.deliveries.clear
+
+ # Go to the confirmation page
+ get "/user/#{display_name}/confirm", :params => { :referer => "/welcome", :confirm_string => confirm_string }
+ assert_response :success
+ assert_template "confirmations/confirm"
+
+ post "/user/#{display_name}/confirm", :params => { :referer => "/welcome", :confirm_string => confirm_string }
+ assert_response :redirect
+ follow_redirect!
+ assert_response :success
+ assert_template "site/welcome"
+ end
+
+ def test_user_create_google_success
+ new_email = "newtester-google@osm.org"
+ email_hmac = UsersController.message_hmac(new_email)
+ display_name = "new_tester-google"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:google,
+ :uid => auth_uid,
+ :extra => { :id_info => { :openid_id => "http://localhost:1123/new.tester" } },
+ :info => { :email => new_email, :name => display_name })
+
+ assert_difference("User.count") do
+ assert_no_difference("ActionMailer::Base.deliveries.size") do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "google", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "google")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name,
+ :email => new_email, :email_hmac => email_hmac,
+ :auth_provider => "google", :auth_uid => auth_uid
+ follow_redirect!
+
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :display_name => display_name,
+ :auth_provider => "google",
+ :auth_uid => auth_uid,
+ :consider_pd => "1" },
+ :email_hmac => email_hmac }
+ assert_redirected_to welcome_path
+ follow_redirect!
+ end
+ end
+ end
+
+ # Check the page
+ assert_response :success
+ assert_template "site/welcome"
+
+ ActionMailer::Base.deliveries.clear
+ end
+
+ def test_user_create_google_duplicate_email
+ dup_user = create(:user)
+ display_name = "new_tester-google"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:google,
+ :uid => auth_uid,
+ :extra => { :id_info => { :openid_id => "http://localhost:1123/new.tester" } },
+ :info => { :email => dup_user.email, :name => display_name })
+
+ post auth_path(:provider => "google", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "google")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name, :email => dup_user.email,
+ :email_hmac => UsersController.message_hmac(dup_user.email),
+ :auth_provider => "google", :auth_uid => auth_uid
+ follow_redirect!
+
+ assert_response :success
+ assert_template "users/new"
+ assert_select "form > div > input.is-invalid#user_email"
+
+ ActionMailer::Base.deliveries.clear
+ end
+
+ def test_user_create_google_failure
+ OmniAuth.config.mock_auth[:google] = :connection_failed
+
+ assert_difference("User.count", 0) do
+ assert_difference("ActionMailer::Base.deliveries.size", 0) do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "google", :origin => "/user/new")
+ assert_response :redirect
+ follow_redirect!
+ assert_redirected_to auth_failure_path(:strategy => "google", :message => "connection_failed", :origin => "/user/new")
+ follow_redirect!
+ assert_redirected_to "/user/new"
+ end
+ end
+ end
+
+ ActionMailer::Base.deliveries.clear
+ end
+
+ def test_user_create_google_redirect
+ orig_email = "redirect_tester_google_orig@google.com"
+ email_hmac = UsersController.message_hmac(orig_email)
+ new_email = "redirect_tester_google@osm.org"
+ display_name = "redirect_tester_google"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:google,
+ :uid => auth_uid,
+ :extra => { :id_info => { :openid_id => "http://localhost:1123/new.tester" } },
+ :info => { :email => orig_email, :name => display_name })
+
+ assert_difference("User.count") do
+ assert_difference("ActionMailer::Base.deliveries.size", 1) do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "google", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "google")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name,
+ :email => orig_email, :email_hmac => email_hmac,
+ :auth_provider => "google", :auth_uid => auth_uid
+ follow_redirect!
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :email_hmac => email_hmac,
+ :display_name => display_name,
+ :auth_provider => "google",
+ :auth_uid => auth_uid,
+ :consider_pd => "1" } }
+ assert_response :redirect
+ follow_redirect!
+ end
+ end
+ end
+
+ # Check the e-mail
+ register_email = ActionMailer::Base.deliveries.first
+
+ assert_equal register_email.to.first, new_email
+ # Check that the confirm account url is correct
+ confirm_regex = Regexp.new("confirm_string=([a-zA-Z0-9%_-]*)")
+ email_text_parts(register_email).each do |part|
+ assert_match confirm_regex, part.body.to_s
+ end
+ confirm_string = CGI.unescape(email_text_parts(register_email).first.body.match(confirm_regex)[1])
+
+ # Check the page
+ assert_response :success
+ assert_template "confirmations/confirm"
+
+ ActionMailer::Base.deliveries.clear
+
+ # Go to the confirmation page
+ get "/user/#{display_name}/confirm", :params => { :referer => "/welcome", :confirm_string => confirm_string }
+ assert_response :success
+ assert_template "confirmations/confirm"
+
+ post "/user/#{display_name}/confirm", :params => { :referer => "/welcome", :confirm_string => confirm_string }
+ assert_response :redirect
+ follow_redirect!
+ assert_response :success
+ assert_template "site/welcome"
+ end
+
+ def test_user_create_facebook_success
+ new_email = "newtester-facebook@osm.org"
+ email_hmac = UsersController.message_hmac(new_email)
+ display_name = "new_tester-facebook"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:facebook,
+ :uid => auth_uid,
+ :info => { "email" => new_email, :name => display_name })
+
+ assert_difference("User.count") do
+ assert_no_difference("ActionMailer::Base.deliveries.size") do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "facebook", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "facebook")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name,
+ :email => new_email, :email_hmac => email_hmac,
+ :auth_provider => "facebook", :auth_uid => auth_uid
+ follow_redirect!
+
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :display_name => display_name,
+ :auth_provider => "facebook",
+ :auth_uid => auth_uid,
+ :consider_pd => "1" },
+ :email_hmac => email_hmac }
+ assert_redirected_to welcome_path
+ follow_redirect!
+ end
+ end
+ end
+
+ # Check the page
+ assert_response :success
+ assert_template "site/welcome"
+
+ ActionMailer::Base.deliveries.clear
+ end
+
+ def test_user_create_facebook_duplicate_email
+ dup_user = create(:user)
+ display_name = "new_tester-facebook"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:facebook,
+ :uid => auth_uid,
+ :info => { :email => dup_user.email, :name => display_name })
+
+ post auth_path(:provider => "facebook", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "facebook")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name, :email => dup_user.email,
+ :email_hmac => UsersController.message_hmac(dup_user.email),
+ :auth_provider => "facebook", :auth_uid => auth_uid
+ follow_redirect!
+
+ assert_response :success
+ assert_template "users/new"
+ assert_select "form > div > input.is-invalid#user_email"
+
+ ActionMailer::Base.deliveries.clear
+ end
+
+ def test_user_create_facebook_failure
+ OmniAuth.config.mock_auth[:facebook] = :connection_failed
+
+ assert_difference("User.count", 0) do
+ assert_difference("ActionMailer::Base.deliveries.size", 0) do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "facebook", :origin => "/user/new")
+ assert_response :redirect
+ follow_redirect!
+ assert_redirected_to auth_failure_path(:strategy => "facebook", :message => "connection_failed", :origin => "/user/new")
+ follow_redirect!
+ assert_redirected_to "/user/new"
+ end
+ end
+ end
+
+ ActionMailer::Base.deliveries.clear
+ end
+
+ def test_user_create_facebook_redirect
+ orig_email = "redirect_tester_facebook_orig@osm.org"
+ email_hmac = UsersController.message_hmac(orig_email)
+ new_email = "redirect_tester_facebook@osm.org"
+ display_name = "redirect_tester_facebook"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:facebook,
+ :uid => auth_uid,
+ :info => { :email => orig_email, :name => display_name })
+