2019-11-25 07:31:57 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Users::AssociateAccountsController do
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
fab!(:user2) { Fabricate(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
OmniAuth.config.test_mode = true
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
Rails.application.env_config["omniauth.auth"] = OmniAuth.config.mock_auth[:google_oauth2] = nil
|
|
|
|
OmniAuth.config.test_mode = false
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when attempting reconnect' do
|
|
|
|
before do
|
|
|
|
SiteSetting.enable_google_oauth2_logins = true
|
|
|
|
OmniAuth.config.mock_auth[:google_oauth2] = OmniAuth::AuthHash.new(
|
|
|
|
provider: 'google_oauth2',
|
|
|
|
uid: '12345',
|
|
|
|
info: {
|
|
|
|
email: 'someemail@test.com',
|
|
|
|
},
|
|
|
|
extra: {
|
|
|
|
raw_info: {
|
|
|
|
email_verified: true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
Rails.application.env_config["omniauth.auth"] = OmniAuth.config.mock_auth[:google_oauth2]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should work correctly' do
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
# Reconnect flow:
|
|
|
|
post "/auth/google_oauth2?reconnect=true"
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
expect(session[:auth_reconnect]).to eq(true)
|
|
|
|
|
|
|
|
OmniAuth.config.mock_auth[:google_oauth2].uid = "123456"
|
|
|
|
get "/auth/google_oauth2/callback.json"
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
|
|
|
|
expect(session[:current_user_id]).to eq(user.id) # Still logged in
|
|
|
|
expect(UserAssociatedAccount.count).to eq(0) # Reconnect has not yet happened
|
|
|
|
|
|
|
|
# Request associate info
|
|
|
|
uri = URI.parse(response.redirect_url)
|
|
|
|
get "#{uri.path}.json"
|
2020-05-07 11:04:12 -04:00
|
|
|
data = response.parsed_body
|
2019-11-25 07:31:57 -05:00
|
|
|
expect(data["provider_name"]).to eq("google_oauth2")
|
|
|
|
expect(data["account_description"]).to eq("someemail@test.com")
|
|
|
|
|
|
|
|
# Make the connection
|
|
|
|
events = DiscourseEvent.track_events { post "#{uri.path}.json" }
|
2020-11-13 09:41:54 -05:00
|
|
|
expect(events.any? { |e| e[:event_name] == :before_auth }).to eq(true)
|
2019-11-25 07:31:57 -05:00
|
|
|
expect(events.any? { |e| e[:event_name] === :after_auth && Auth::GoogleOAuth2Authenticator === e[:params][0] && !e[:params][1].failed? }).to eq(true)
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(UserAssociatedAccount.count).to eq(1)
|
|
|
|
|
|
|
|
# Token cannot be reused
|
|
|
|
get "#{uri.path}.json"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
2021-08-10 09:09:30 -04:00
|
|
|
it 'should only work within the current session' do
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
post "/auth/google_oauth2?reconnect=true"
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
expect(session[:auth_reconnect]).to eq(true)
|
|
|
|
|
|
|
|
OmniAuth.config.mock_auth[:google_oauth2].uid = "123456"
|
|
|
|
get "/auth/google_oauth2/callback.json"
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
|
|
|
|
expect(session[:current_user_id]).to eq(user.id) # Still logged in
|
|
|
|
expect(UserAssociatedAccount.count).to eq(0) # Reconnect has not yet happened
|
|
|
|
|
|
|
|
uri = URI.parse(response.redirect_url)
|
|
|
|
get "#{uri.path}.json"
|
|
|
|
data = response.parsed_body
|
|
|
|
expect(data["provider_name"]).to eq("google_oauth2")
|
|
|
|
expect(data["account_description"]).to eq("someemail@test.com")
|
|
|
|
|
|
|
|
cookies.delete "_forum_session"
|
|
|
|
|
|
|
|
get "#{uri.path}.json"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
2021-06-04 01:30:29 -04:00
|
|
|
it "returns the correct response for non-existent tokens" do
|
2021-08-05 12:36:34 -04:00
|
|
|
sign_in(user)
|
|
|
|
|
2019-11-25 07:31:57 -05:00
|
|
|
get "/associate/12345678901234567890123456789012.json"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
|
|
|
|
get "/associate/shorttoken.json"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
2021-08-05 12:36:34 -04:00
|
|
|
|
|
|
|
it "requires login" do
|
|
|
|
# XHR should 403
|
|
|
|
get "/associate/#{SecureRandom.hex}.json"
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
2019-11-25 07:31:57 -05:00
|
|
|
end
|
|
|
|
end
|