2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-04 05:42:13 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 05:49:53 +02:00
|
|
|
RSpec.describe Identity do
|
2024-02-14 15:16:07 +01:00
|
|
|
describe '.find_for_omniauth' do
|
2018-12-06 09:38:49 +01:00
|
|
|
let(:auth) { Fabricate(:identity, user: Fabricate(:user)) }
|
|
|
|
|
|
|
|
it 'calls .find_or_create_by' do
|
2023-11-07 10:46:28 +01:00
|
|
|
allow(described_class).to receive(:find_or_create_by)
|
|
|
|
|
2024-02-14 15:16:07 +01:00
|
|
|
described_class.find_for_omniauth(auth)
|
2023-11-07 10:46:28 +01:00
|
|
|
|
|
|
|
expect(described_class).to have_received(:find_or_create_by).with(uid: auth.uid, provider: auth.provider)
|
2018-12-06 09:38:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns an instance of Identity' do
|
2024-02-14 15:16:07 +01:00
|
|
|
expect(described_class.find_for_omniauth(auth)).to be_instance_of described_class
|
2018-12-06 09:38:49 +01:00
|
|
|
end
|
|
|
|
end
|
2018-02-04 05:42:13 +01:00
|
|
|
end
|