mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
eda1462b3b
Listing connections is supported for all built-in auth providers. Revoke and reconnect is currently only implemented for Facebook.
150 lines
4.4 KiB
Ruby
150 lines
4.4 KiB
Ruby
require 'rails_helper'
|
|
|
|
# In the ghetto ... getting the spec to run in autospec
|
|
# thing is we need to load up all auth really early pre-fork
|
|
# it means that the require is not going to get a new copy
|
|
Auth.send(:remove_const, :FacebookAuthenticator)
|
|
load 'auth/facebook_authenticator.rb'
|
|
|
|
describe Auth::FacebookAuthenticator do
|
|
|
|
context 'after_authenticate' do
|
|
it 'can authenticate and create a user record for already existing users' do
|
|
authenticator = Auth::FacebookAuthenticator.new
|
|
user = Fabricate(:user)
|
|
|
|
hash = {
|
|
"extra" => {
|
|
"raw_info" => {
|
|
"username" => "bob"
|
|
}
|
|
},
|
|
"info" => {
|
|
:email => user.email,
|
|
"location" => "America",
|
|
"description" => "bio",
|
|
"urls" => {
|
|
"Website" => "https://awesome.com"
|
|
}
|
|
},
|
|
"uid" => "100"
|
|
}
|
|
|
|
result = authenticator.after_authenticate(hash)
|
|
|
|
expect(result.user.id).to eq(user.id)
|
|
expect(result.user.user_profile.website).to eq("https://awesome.com")
|
|
expect(result.user.user_profile.bio_raw).to eq("bio")
|
|
expect(result.user.user_profile.location).to eq("America")
|
|
end
|
|
|
|
it 'can connect to a different existing user account' do
|
|
authenticator = Auth::FacebookAuthenticator.new
|
|
user1 = Fabricate(:user)
|
|
user2 = Fabricate(:user)
|
|
|
|
FacebookUserInfo.create!(user_id: user1.id, facebook_user_id: 100)
|
|
|
|
hash = {
|
|
"extra" => {
|
|
"raw_info" => {
|
|
"username" => "bob"
|
|
}
|
|
},
|
|
"info" => {
|
|
"location" => "America",
|
|
"description" => "bio",
|
|
"urls" => {
|
|
"Website" => "https://awesome.com"
|
|
}
|
|
},
|
|
"uid" => "100"
|
|
}
|
|
|
|
result = authenticator.after_authenticate(hash, existing_account: user2)
|
|
|
|
expect(result.user.id).to eq(user2.id)
|
|
expect(FacebookUserInfo.exists?(user_id: user1.id)).to eq(false)
|
|
expect(FacebookUserInfo.exists?(user_id: user2.id)).to eq(true)
|
|
end
|
|
|
|
it 'can create a proper result for non existing users' do
|
|
|
|
hash = {
|
|
"extra" => {
|
|
"raw_info" => {
|
|
"username" => "bob",
|
|
"name" => "bob bob"
|
|
}
|
|
},
|
|
"info" => {
|
|
email: "bob@bob.com"
|
|
},
|
|
"uid" => "100"
|
|
}
|
|
|
|
authenticator = Auth::FacebookAuthenticator.new
|
|
|
|
result = authenticator.after_authenticate(hash)
|
|
|
|
expect(result.user).to eq(nil)
|
|
expect(result.extra_data[:name]).to eq("bob bob")
|
|
end
|
|
end
|
|
|
|
context 'description_for_user' do
|
|
let(:user) { Fabricate(:user) }
|
|
let(:authenticator) { Auth::FacebookAuthenticator.new }
|
|
|
|
it 'returns empty string if no entry for user' do
|
|
expect(authenticator.description_for_user(user)).to eq("")
|
|
end
|
|
|
|
it 'returns correct information' do
|
|
FacebookUserInfo.create!(user_id: user.id, facebook_user_id: 12345, email: 'someuser@somedomain.tld')
|
|
expect(authenticator.description_for_user(user)).to eq('someuser@somedomain.tld')
|
|
end
|
|
end
|
|
|
|
context 'revoke' do
|
|
let(:user) { Fabricate(:user) }
|
|
let(:authenticator) { Auth::FacebookAuthenticator.new }
|
|
|
|
it 'raises exception if no entry for user' do
|
|
expect { authenticator.revoke(user) }.to raise_error(Discourse::NotFound)
|
|
end
|
|
|
|
context "with valid record" do
|
|
before do
|
|
SiteSetting.facebook_app_id = '123'
|
|
SiteSetting.facebook_app_secret = 'abcde'
|
|
FacebookUserInfo.create!(user_id: user.id, facebook_user_id: 12345, email: 'someuser@somedomain.tld')
|
|
end
|
|
|
|
it 'revokes correctly' do
|
|
stub = stub_request(:delete, authenticator.revoke_url(12345)).to_return(body: "true")
|
|
|
|
expect(authenticator.can_revoke?).to eq(true)
|
|
expect(authenticator.revoke(user)).to eq(true)
|
|
|
|
expect(stub).to have_been_requested.once
|
|
expect(authenticator.description_for_user(user)).to eq("")
|
|
end
|
|
|
|
it 'handles errors correctly' do
|
|
stub = stub_request(:delete, authenticator.revoke_url(12345)).to_return(status: 404)
|
|
|
|
expect(authenticator.revoke(user)).to eq(false)
|
|
expect(stub).to have_been_requested.once
|
|
expect(authenticator.description_for_user(user)).to eq('someuser@somedomain.tld')
|
|
|
|
expect(authenticator.revoke(user, skip_remote: true)).to eq(true)
|
|
expect(stub).to have_been_requested.once
|
|
expect(authenticator.description_for_user(user)).to eq("")
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|