+ 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 => orig_email, :email_hmac => email_hmac,
+ :auth_provider => "facebook", :auth_uid => auth_uid
+ follow_redirect!
+
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :email_hmac => email_hmac,
+ :display_name => display_name,
+ :auth_provider => "facebook",
+ :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_microsoft_success
+ new_email = "newtester-microsoft@osm.org"
+ email_hmac = UsersController.message_hmac(new_email)
+ display_name = "new_tester-microsoft"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:microsoft,
+ :uid => auth_uid,
+ :info => { "email" => new_email, :name => display_name })
+
+ assert_difference("User.count") do
+ assert_difference("ActionMailer::Base.deliveries.size", 0) do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "microsoft", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "microsoft")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name,
+ :email => new_email, :email_hmac => email_hmac,
+ :auth_provider => "microsoft", :auth_uid => auth_uid
+ follow_redirect!
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :display_name => display_name,
+ :auth_provider => "microsoft",
+ :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_microsoft_duplicate_email
+ dup_user = create(:user)
+ display_name = "new_tester-microsoft"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:microsoft,
+ :uid => auth_uid,
+ :info => { :email => dup_user.email, :name => display_name })
+
+ post auth_path(:provider => "microsoft", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "microsoft")
+ 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 => "microsoft", :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_microsoft_failure
+ OmniAuth.config.mock_auth[:microsoft] = :connection_failed
+
+ assert_difference("User.count", 0) do
+ assert_difference("ActionMailer::Base.deliveries.size", 0) do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "microsoft", :origin => "/user/new")
+ assert_response :redirect
+ follow_redirect!
+ assert_redirected_to auth_failure_path(:strategy => "microsoft", :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_microsoft_redirect
+ orig_email = "redirect_tester_microsoft_orig@osm.org"
+ email_hmac = UsersController.message_hmac(orig_email)
+ new_email = "redirect_tester_microsoft@osm.org"
+ display_name = "redirect_tester_microsoft"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:microsoft,
+ :uid => auth_uid,
+ :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 => "microsoft", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "microsoft")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name,
+ :email => orig_email, :email_hmac => email_hmac,
+ :auth_provider => "microsoft", :auth_uid => auth_uid
+ follow_redirect!
+
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :email_hmac => email_hmac,
+ :display_name => display_name,
+ :auth_provider => "microsoft",
+ :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_github_success
+ new_email = "newtester-github@osm.org"
+ email_hmac = UsersController.message_hmac(new_email)
+ display_name = "new_tester-github"
+ password = "testtest"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:github,
+ :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 => "github", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "github")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name,
+ :email => new_email, :email_hmac => email_hmac,
+ :auth_provider => "github", :auth_uid => auth_uid
+ follow_redirect!
+
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :display_name => display_name,
+ :auth_provider => "github",
+ :auth_uid => "123454321",
+ :pass_crypt => password,
+ :pass_crypt_confirmation => password },
+ :read_ct => 1,
+ :read_tou => 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_github_duplicate_email
+ dup_user = create(:user)
+ display_name = "new_tester-github"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:github,
+ :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 => "github", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "github")
+ 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 => "github", :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_github_failure
+ OmniAuth.config.mock_auth[:github] = :connection_failed
+
+ assert_difference("User.count", 0) do
+ assert_difference("ActionMailer::Base.deliveries.size", 0) do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "github", :origin => "/user/new")
+ follow_redirect!
+ assert_redirected_to auth_failure_path(:strategy => "github", :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_github_redirect
+ orig_email = "redirect_tester_github_orig@osm.org"
+ email_hmac = UsersController.message_hmac(orig_email)
+ new_email = "redirect_tester_github@osm.org"
+ display_name = "redirect_tester_github"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:github,
+ :uid => auth_uid,
+ :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 => "github", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "github")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name,
+ :email => orig_email, :email_hmac => email_hmac,
+ :auth_provider => "github", :auth_uid => auth_uid
+ follow_redirect!
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :email_hmac => email_hmac,
+ :display_name => display_name,
+ :auth_provider => "github",
+ :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_wikipedia_success
+ new_email = "newtester-wikipedia@osm.org"
+ email_hmac = UsersController.message_hmac(new_email)
+ display_name = "new_tester-wikipedia"
+ password = "testtest"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:wikipedia,
+ :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 => "wikipedia", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "wikipedia", :origin => "/user/new")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name,
+ :email => new_email, :email_hmac => email_hmac,
+ :auth_provider => "wikipedia", :auth_uid => auth_uid
+ follow_redirect!
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :display_name => display_name,
+ :auth_provider => "wikipedia",
+ :auth_uid => "123454321",
+ :pass_crypt => password,
+ :pass_crypt_confirmation => password },
+ :read_ct => 1,
+ :read_tou => 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"
+ end
+
+ def test_user_create_wikipedia_duplicate_email
+ dup_user = create(:user)
+ display_name = "new_tester-wikipedia"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:wikipedia,
+ :uid => auth_uid,
+ :info => { "email" => dup_user.email, :name => display_name })
+
+ post auth_path(:provider => "wikipedia", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "wikipedia", :origin => "/user/new")
+ 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 => "wikipedia", :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_wikipedia_failure
+ OmniAuth.config.mock_auth[:wikipedia] = :connection_failed
+
+ assert_difference("User.count", 0) do
+ assert_difference("ActionMailer::Base.deliveries.size", 0) do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "wikipedia", :origin => "/user/new")
+ assert_response :redirect
+ follow_redirect!
+ assert_redirected_to auth_failure_path(:strategy => "wikipedia", :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_wikipedia_redirect
+ orig_email = "redirect_tester_wikipedia_orig@osm.org"
+ email_hmac = UsersController.message_hmac(orig_email)
+ new_email = "redirect_tester_wikipedia@osm.org"
+ display_name = "redirect_tester_wikipedia"
+ auth_uid = "123454321"
+
+ OmniAuth.config.add_mock(:wikipedia,
+ :uid => auth_uid,
+ :info => { :email => orig_email, :name => display_name })
+
+ # nothing special about this page, just need a protected page to redirect back to.
+ assert_difference("User.count") do
+ assert_difference("ActionMailer::Base.deliveries.size", 1) do
+ perform_enqueued_jobs do
+ post auth_path(:provider => "wikipedia", :origin => "/user/new")
+ assert_redirected_to auth_success_path(:provider => "wikipedia", :origin => "/user/new")
+ follow_redirect!
+ assert_redirected_to :controller => :users, :action => "new", :nickname => display_name,
+ :email => orig_email, :email_hmac => email_hmac,
+ :auth_provider => "wikipedia", :auth_uid => auth_uid
+ follow_redirect!
+
+ post "/user/new",
+ :params => { :user => { :email => new_email,
+ :email_hmac => email_hmac,
+ :display_name => display_name,
+ :auth_provider => "wikipedia",
+ :auth_uid => auth_uid,
+ :consider_pd => "1" } }
+ assert_response :redirect
+ follow_redirect!
+ end