log changer_groupe_instructeur

This commit is contained in:
Christophe Robillard 2020-02-26 10:28:37 +01:00
parent e0f4957dfd
commit 2bd6f01009
3 changed files with 8 additions and 0 deletions

View file

@ -654,6 +654,7 @@ class Dossier < ApplicationRecord
DossierMailer.notify_groupe_instructeur_changed(instructeur, self).deliver_later
end
end
log_dossier_operation(user, :changer_groupe_instructeur, self)
end
end

View file

@ -1,5 +1,6 @@
class DossierOperationLog < ApplicationRecord
enum operation: {
changer_groupe_instructeur: 'changer_groupe_instructeur',
passer_en_instruction: 'passer_en_instruction',
repasser_en_construction: 'repasser_en_construction',
repasser_en_instruction: 'repasser_en_instruction',

View file

@ -404,6 +404,7 @@ describe Dossier do
let(:new_groupe_instructeur) { create(:groupe_instructeur) }
let(:instructeur2) { create(:instructeur, groupe_instructeurs: [procedure.defaut_groupe_instructeur, new_groupe_instructeur]) }
let(:dossier) { create(:dossier, procedure: procedure, state: Dossier.states.fetch(:en_construction)) }
let(:last_operation) { DossierOperationLog.last }
before do
allow(DossierMailer).to receive(:notify_groupe_instructeur_changed).and_return(double(deliver_later: nil))
@ -416,8 +417,13 @@ describe Dossier do
expect(dossier.reload.followers_instructeurs).not_to include(instructeur)
expect(dossier.reload.followers_instructeurs).to include(instructeur2)
expect(DossierMailer).to have_received(:notify_groupe_instructeur_changed).with(instructeur, dossier)
expect(DossierMailer).not_to have_received(:notify_groupe_instructeur_changed).with(instructeur2, dossier)
expect(last_operation.operation).to eq("changer_groupe_instructeur")
expect(last_operation.dossier).to eq(dossier)
expect(last_operation.automatic_operation?).to be_falsey
end
end