+ 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