From b468da99648ecd2b00e0e3af18188c1167980e4a Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 5 Mar 2024 11:15:54 +0100 Subject: [PATCH] bug(user.fcis): users using more than one FranceConnect identity provider can not be destroyed --- spec/factories/user.rb | 4 ++++ spec/models/user_spec.rb | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/spec/factories/user.rb b/spec/factories/user.rb index 3bf9a6bc3..11fc4c1c9 100644 --- a/spec/factories/user.rb +++ b/spec/factories/user.rb @@ -12,5 +12,9 @@ FactoryBot.define do trait :with_strong_password do password { '{my-%s3cure[]-p4$$w0rd' } end + + trait :with_fci do + association :france_connect_information + end end end diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 5a4b79907..307cc78a0 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -354,6 +354,15 @@ describe User, type: :model do expect(User.find_by(id: user.id)).to be_nil end end + + context 'with fci' do + let(:user) { create(:user, :with_fci) } + let!(:fci) { create(:france_connect_information, user:) } + let(:reason) { :user_expired } + subject { user.delete_and_keep_track_dossiers_also_delete_user(super_admin, reason:) } + + it { expect { subject }.not_to raise_error } + end end describe '#password_complexity' do