demarches-normaliennes/spec/models/france_connect_information_spec.rb

61 lines
1.7 KiB
Ruby
Raw Normal View History

describe FranceConnectInformation, type: :model do
describe 'validation' do
context 'france_connect_particulier_id' do
it { is_expected.not_to allow_value(nil).for(:france_connect_particulier_id) }
it { is_expected.not_to allow_value('').for(:france_connect_particulier_id) }
it { is_expected.to allow_value('mon super projet').for(:france_connect_particulier_id) }
end
end
describe 'associate_user!' do
context 'when there is no user with same email' do
2021-10-13 00:18:00 +02:00
let(:email) { 'A@email.com' }
2021-04-26 16:26:42 +02:00
let(:fci) { build(:france_connect_information) }
2021-10-13 00:18:00 +02:00
subject { fci.associate_user!(email) }
it { expect { subject }.to change(User, :count).by(1) }
2021-10-13 00:18:00 +02:00
it do
subject
2021-10-13 00:18:00 +02:00
expect(fci.user.email).to eq('a@email.com')
end
end
end
2021-10-13 00:14:12 +02:00
describe '#valid_for_merge?' do
let(:fci) { create(:france_connect_information) }
subject { fci.valid_for_merge? }
context 'when the merge token is young enough' do
before { fci.merge_token_created_at = 1.minute.ago }
it { is_expected.to be(true) }
context 'but the fci is already linked to an user' do
before { fci.update(user: create(:user)) }
it { is_expected.to be(false) }
end
end
context 'when the merge token is too old' do
before { fci.merge_token_created_at = (FranceConnectInformation::MERGE_VALIDITY + 1.minute).ago }
it { is_expected.to be(false) }
end
end
2021-10-13 00:40:15 +02:00
describe '#create_merge_token!' do
let(:fci) { create(:france_connect_information) }
it 'returns a merge_token and register it s creation date' do
token = fci.create_merge_token!
expect(fci.merge_token).to eq(token)
expect(fci.merge_token_created_at).not_to be_nil
end
end
end