2021-10-04 12:17:07 +02:00
|
|
|
describe Manager::UsersController, type: :controller do
|
2020-11-05 15:09:11 +01:00
|
|
|
let(:super_admin) { create(:super_admin) }
|
2020-01-08 10:50:16 +01:00
|
|
|
|
2021-10-04 13:10:14 +02:00
|
|
|
before { sign_in super_admin }
|
|
|
|
|
2020-03-26 16:17:07 +01:00
|
|
|
describe '#show' do
|
|
|
|
render_views
|
|
|
|
|
2020-11-05 15:09:11 +01:00
|
|
|
let(:super_admin) { create(:super_admin) }
|
2020-03-26 16:17:07 +01:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
get :show, params: { id: user.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(response.body).to include(user.email) }
|
|
|
|
end
|
|
|
|
|
2020-01-13 14:35:25 +01:00
|
|
|
describe '#update' do
|
2021-10-04 13:10:14 +02:00
|
|
|
let(:user) { create(:user, email: 'ancien.email@domaine.fr') }
|
2020-01-13 14:35:25 +01:00
|
|
|
|
|
|
|
subject { patch :update, params: { id: user.id, user: { email: nouvel_email } } }
|
|
|
|
|
2021-10-04 14:00:32 +02:00
|
|
|
context 'when the targeted email does not exist' do
|
|
|
|
describe 'with a valid email' do
|
|
|
|
let(:nouvel_email) { 'nouvel.email@domaine.fr' }
|
2020-01-13 14:35:25 +01:00
|
|
|
|
2021-10-04 14:00:32 +02:00
|
|
|
it 'updates the user email' do
|
|
|
|
subject
|
2020-01-13 14:35:25 +01:00
|
|
|
|
2021-10-04 14:00:32 +02:00
|
|
|
expect(User.find_by(id: user.id).email).to eq(nouvel_email)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with an invalid email' do
|
|
|
|
let(:nouvel_email) { 'plop' }
|
|
|
|
|
|
|
|
it 'does not update the user email' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(User.find_by(id: user.id).email).not_to eq(nouvel_email)
|
|
|
|
expect(flash[:error]).to match("Courriel invalide")
|
|
|
|
end
|
2020-01-13 14:35:25 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-04 14:00:32 +02:00
|
|
|
context 'when the targeted email exists' do
|
|
|
|
let(:preexisting_user) { create(:user, email: 'email.existant@domaine.fr') }
|
|
|
|
let(:nouvel_email) { preexisting_user.email }
|
|
|
|
|
|
|
|
context 'and the old account has a dossier' do
|
|
|
|
let!(:dossier) { create(:dossier, user: user) }
|
|
|
|
|
|
|
|
it 'transfers the dossier' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(preexisting_user.dossiers).to match([dossier])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'and the old account belongs to an instructeur and expert' do
|
|
|
|
let!(:instructeur) { create(:instructeur, user: user) }
|
|
|
|
let!(:expert) { create(:expert, user: user) }
|
2020-01-13 14:35:25 +01:00
|
|
|
|
2021-10-04 14:00:32 +02:00
|
|
|
it 'transfers instructeur account' do
|
|
|
|
subject
|
|
|
|
preexisting_user.reload
|
2020-01-13 14:35:25 +01:00
|
|
|
|
2021-10-04 14:00:32 +02:00
|
|
|
expect(preexisting_user.instructeur).to match(instructeur)
|
|
|
|
expect(preexisting_user.expert).to match(expert)
|
|
|
|
end
|
2021-10-04 15:26:01 +02:00
|
|
|
|
|
|
|
context 'and the preexisting account owns an instructeur and expert as well' do
|
|
|
|
let!(:preexisting_instructeur) { create(:instructeur, user: preexisting_user) }
|
|
|
|
let!(:preexisting_expert) { create(:expert, user: preexisting_user) }
|
|
|
|
|
|
|
|
context 'and the source instructeur has some procedures and dossiers' do
|
|
|
|
let!(:procedure) { create(:procedure, instructeurs: [instructeur]) }
|
|
|
|
let(:dossier) { create(:dossier) }
|
|
|
|
let(:administrateur) { create(:administrateur) }
|
|
|
|
let!(:commentaire) { create(:commentaire, instructeur: instructeur, dossier: dossier) }
|
|
|
|
let!(:bulk_message) { BulkMessage.create!(instructeur: instructeur, body: 'body', sent_at: Time.zone.now) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
user.instructeur.followed_dossiers << dossier
|
|
|
|
user.instructeur.administrateurs << administrateur
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'transferts all the stuff' do
|
|
|
|
subject
|
|
|
|
preexisting_user.reload
|
|
|
|
|
|
|
|
expect(procedure.instructeurs).to match([preexisting_user.instructeur])
|
|
|
|
expect(preexisting_user.instructeur.followed_dossiers).to match([dossier])
|
|
|
|
expect(preexisting_user.instructeur.administrateurs).to match([administrateur])
|
|
|
|
expect(preexisting_user.instructeur.commentaires).to match([commentaire])
|
|
|
|
expect(preexisting_user.instructeur.bulk_messages).to match([bulk_message])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-01-13 14:35:25 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-08 10:50:16 +01:00
|
|
|
describe '#delete' do
|
2021-10-04 13:10:14 +02:00
|
|
|
let(:user) { create(:user) }
|
2020-01-08 10:50:16 +01:00
|
|
|
|
|
|
|
subject { delete :delete, params: { id: user.id } }
|
|
|
|
|
|
|
|
it 'deletes the user' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(User.find_by(id: user.id)).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|