forked from glitch-soc/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request from GHSA-vm39-j3vx-pch3
* Prevent different identities from a same SSO provider from accessing a same account * Lock auth provider changes behind `ALLOW_UNSAFE_AUTH_PROVIDER_REATTACH=true` * Rename methods to avoid confusion between OAuth and OmniAuth
- Loading branch information
1 parent
6334fbf
commit 789a8ed
Showing
4 changed files
with
43 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
require 'rails_helper' | ||
|
||
RSpec.describe Identity, type: :model do | ||
describe '.find_for_oauth' do | ||
describe '.find_for_omniauth' do | ||
let(:auth) { Fabricate(:identity, user: Fabricate(:user)) } | ||
|
||
it 'calls .find_or_create_by' do | ||
expect(described_class).to receive(:find_or_create_by).with(uid: auth.uid, provider: auth.provider) | ||
described_class.find_for_oauth(auth) | ||
described_class.find_for_omniauth(auth) | ||
end | ||
|
||
it 'returns an instance of Identity' do | ||
expect(described_class.find_for_oauth(auth)).to be_instance_of Identity | ||
expect(described_class.find_for_omniauth(auth)).to be_instance_of Identity | ||
end | ||
end | ||
end |