2018-08-16 17:22:35 +02:00
|
|
|
describe 'shared/dossiers/messages/message.html.haml', type: :view do
|
2017-12-05 17:20:10 +01:00
|
|
|
before { view.extend DossierHelper }
|
|
|
|
|
2019-07-16 12:11:24 +02:00
|
|
|
subject { render 'shared/dossiers/messages/message.html.haml', commentaire: commentaire, messagerie_seen_at: seen_at, connected_user: dossier.user, show_reply_button: true }
|
2017-12-05 17:20:10 +01:00
|
|
|
|
2019-07-02 15:21:49 +02:00
|
|
|
let(:dossier) { create(:dossier, :en_construction) }
|
2017-12-05 17:20:10 +01:00
|
|
|
let(:commentaire) { create(:commentaire, dossier: dossier) }
|
|
|
|
let(:seen_at) { commentaire.created_at + 1.hour }
|
|
|
|
|
2019-07-16 12:11:24 +02:00
|
|
|
it { is_expected.to have_button("Répondre") }
|
|
|
|
|
2017-12-05 17:20:10 +01:00
|
|
|
context "with a seen_at after commentaire created_at" do
|
|
|
|
let(:seen_at) { commentaire.created_at + 1.hour }
|
|
|
|
|
|
|
|
it { is_expected.not_to have_css(".highlighted") }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with a seen_at after commentaire created_at" do
|
|
|
|
let(:seen_at) { commentaire.created_at - 1.hour }
|
|
|
|
|
|
|
|
it { is_expected.to have_css(".highlighted") }
|
|
|
|
end
|
2020-05-12 17:58:00 +02:00
|
|
|
|
|
|
|
context 'with an instructeur message' do
|
|
|
|
let(:instructeur) { create(:instructeur) }
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
let(:commentaire) { create(:commentaire, instructeur: instructeur, body: 'Second message') }
|
|
|
|
let(:dossier) { create(:dossier, :en_construction, commentaires: [commentaire], procedure: procedure) }
|
|
|
|
|
|
|
|
context 'on a procedure with anonymous instructeurs' do
|
|
|
|
before { Flipper.enable_actor(:hide_instructeur_email, procedure) }
|
|
|
|
|
|
|
|
context 'redacts the instructeur email' do
|
|
|
|
it { is_expected.to have_text(commentaire.body) }
|
|
|
|
it { is_expected.to have_text("Instructeur n° #{instructeur.id}") }
|
|
|
|
it { is_expected.not_to have_text(instructeur.email) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on a procedure where instructeurs names are not redacted' do
|
|
|
|
before { Flipper.disable_actor(:hide_instructeur_email, procedure) }
|
|
|
|
|
|
|
|
context 'redacts the instructeur email but keeps the name' do
|
|
|
|
it { is_expected.to have_text(commentaire.body) }
|
|
|
|
it { is_expected.to have_text(instructeur.email.split('@').first) }
|
|
|
|
it { is_expected.not_to have_text(instructeur.email) }
|
|
|
|
end
|
|
|
|
end
|
2021-11-15 11:30:41 +01:00
|
|
|
|
|
|
|
describe 'delete message button for instructeur' do
|
|
|
|
let(:instructeur) { create(:instructeur) }
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
let(:dossier) { create(:dossier, :en_construction, commentaires: [commentaire], procedure: procedure) }
|
|
|
|
subject { render 'shared/dossiers/messages/message.html.haml', commentaire: commentaire, messagerie_seen_at: seen_at, connected_user: instructeur, show_reply_button: true }
|
|
|
|
|
|
|
|
context 'on a procedure where commentaire had been written by connected instructeur' do
|
|
|
|
let(:commentaire) { create(:commentaire, instructeur: instructeur, body: 'Second message') }
|
|
|
|
|
|
|
|
it { is_expected.to have_css("div[data-test-delete-id=1]")}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on a procedure where commentaire had been written by connected an user' do
|
|
|
|
let(:commentaire) { create(:commentaire, email: create(:user).email, body: 'Second message') }
|
|
|
|
|
|
|
|
it { is_expected.not_to have_css("div[data-test-delete-id=1]")}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on a procedure where commentaire had been written by connected an expert' do
|
|
|
|
let(:commentaire) { create(:commentaire, expert: create(:expert), body: 'Second message') }
|
|
|
|
|
|
|
|
it { is_expected.not_to have_css("div[data-test-delete-id=1]")}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on a procedure where commentaire had been written another instructeur' do
|
|
|
|
let(:commentaire) { create(:commentaire, instructeur: create(:instructeur), body: 'Second message') }
|
|
|
|
|
|
|
|
it { is_expected.not_to have_css("div[data-test-delete-id=1]")}
|
|
|
|
end
|
|
|
|
end
|
2020-05-12 17:58:00 +02:00
|
|
|
end
|
2017-12-05 17:20:10 +01:00
|
|
|
end
|