2016-02-08 18:16:18 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe InvitesController, type: :controller do
|
2017-12-14 15:51:45 +01:00
|
|
|
let(:dossier) { create(:dossier, :en_construction) }
|
2016-02-08 18:16:18 +01:00
|
|
|
let(:email) { 'plop@octo.com' }
|
|
|
|
|
|
|
|
describe '#POST create' do
|
|
|
|
let(:invite) { Invite.last }
|
|
|
|
|
|
|
|
before do
|
2017-07-10 14:44:26 +02:00
|
|
|
sign_in signed_in_profile
|
2016-02-08 18:16:18 +01:00
|
|
|
end
|
|
|
|
|
2018-01-16 13:34:24 +01:00
|
|
|
subject { post :create, params: { dossier_id: dossier.id, email: email } }
|
2016-02-08 18:16:18 +01:00
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
context "when gestionnaire is signed_in" do
|
|
|
|
let(:signed_in_profile) { create(:gestionnaire) }
|
2016-09-13 15:54:26 +02:00
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
shared_examples_for "he can not create invitation" do
|
2018-03-22 09:15:32 +01:00
|
|
|
it { expect { subject rescue nil }.to change(Invite, :count).by(0) }
|
2016-09-13 15:54:26 +02:00
|
|
|
end
|
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
context 'when gestionnaire has no access to dossier' do
|
|
|
|
it_behaves_like "he can not create invitation"
|
|
|
|
end
|
2016-02-08 18:16:18 +01:00
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
context 'when gestionnaire is invited for avis on dossier' do
|
|
|
|
before { Avis.create(gestionnaire: signed_in_profile, claimant: create(:gestionnaire), dossier: dossier) }
|
2016-02-08 18:16:18 +01:00
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
it_behaves_like "he can not create invitation"
|
2016-02-08 18:16:18 +01:00
|
|
|
end
|
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
context 'when gestionnaire has access to dossier' do
|
|
|
|
before do
|
|
|
|
signed_in_profile.procedures << dossier.procedure
|
|
|
|
end
|
|
|
|
|
2018-03-22 09:15:32 +01:00
|
|
|
it_behaves_like "he can not create invitation"
|
2017-07-10 14:44:26 +02:00
|
|
|
|
|
|
|
context 'when is a user who is loged' do
|
2018-03-22 09:15:32 +01:00
|
|
|
let(:user) { create(:user) }
|
2017-07-10 14:44:26 +02:00
|
|
|
before do
|
2018-03-22 09:15:32 +01:00
|
|
|
dossier.update(user: user)
|
|
|
|
sign_in(user)
|
2017-07-10 14:44:26 +02:00
|
|
|
end
|
2016-02-16 16:53:46 +01:00
|
|
|
|
2018-03-22 09:15:32 +01:00
|
|
|
it { expect { subject }.to change(InviteUser, :count).by(1) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when user is signed_in" do
|
|
|
|
let(:signed_in_profile) { create(:user) }
|
|
|
|
|
|
|
|
shared_examples_for "he can not create a invite" do
|
|
|
|
it { expect { subject }.to raise_error(ActiveRecord::RecordNotFound) }
|
|
|
|
it { expect { subject rescue nil }.to change(InviteUser, :count).by(0) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user has no access to dossier' do
|
|
|
|
it_behaves_like "he can not create a invite"
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is invited on dossier' do
|
|
|
|
before { Invite.create(user: signed_in_profile, email: signed_in_profile.email, dossier: dossier) }
|
|
|
|
|
|
|
|
it_behaves_like "he can not create a invite"
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user has access to dossier' do
|
|
|
|
before do
|
|
|
|
dossier.update(user: signed_in_profile)
|
2016-02-16 16:53:46 +01:00
|
|
|
end
|
|
|
|
|
2018-03-22 09:15:32 +01:00
|
|
|
it { expect { subject }.to change(InviteUser, :count).by(1) }
|
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
context 'when email is assign to an user' do
|
2018-03-22 09:15:32 +01:00
|
|
|
let! (:user_invite) { create(:user, email: email) }
|
2016-02-08 18:16:18 +01:00
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
before do
|
|
|
|
subject
|
|
|
|
end
|
2016-02-08 18:16:18 +01:00
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
describe 'Invite information' do
|
|
|
|
let(:email) { 'PLIP@octo.com' }
|
|
|
|
let(:invite) { Invite.last }
|
2016-02-08 18:16:18 +01:00
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
it 'email is on lower case' do
|
|
|
|
expect(invite.email).to eq 'plip@octo.com'
|
|
|
|
end
|
|
|
|
end
|
2016-02-08 18:16:18 +01:00
|
|
|
|
2018-03-22 09:15:32 +01:00
|
|
|
it { expect(invite.user).to eq user_invite }
|
2017-07-10 14:44:26 +02:00
|
|
|
it { expect(flash[:notice]).to be_present }
|
2016-02-08 18:16:18 +01:00
|
|
|
end
|
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
context 'when email is not assign to an user' do
|
|
|
|
before do
|
|
|
|
subject
|
|
|
|
end
|
2016-02-08 18:16:18 +01:00
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
it { expect(invite.user).to be_nil }
|
|
|
|
it { expect(flash[:notice]).to be_present }
|
|
|
|
end
|
2016-02-08 18:16:18 +01:00
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
describe 'not an email' do
|
|
|
|
context 'when email is not valid' do
|
|
|
|
let(:email) { 'plip.com' }
|
|
|
|
|
|
|
|
before do
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect { subject }.not_to change(Invite, :count) }
|
|
|
|
it { expect(flash[:alert]).to be_present }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when email is already used' do
|
|
|
|
let!(:invite) { create(:invite, dossier: dossier) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect { subject }.not_to change(Invite, :count) }
|
|
|
|
it { expect(flash[:alert]).to be_present }
|
|
|
|
end
|
2016-02-08 18:16:18 +01:00
|
|
|
end
|
|
|
|
|
2017-07-10 14:44:26 +02:00
|
|
|
describe 'send invitation email' do
|
|
|
|
context 'when user does not exist' do
|
|
|
|
it 'send email' do
|
|
|
|
expect(InviteMailer).to receive(:invite_guest).and_return(InviteMailer)
|
2018-05-25 18:05:28 +02:00
|
|
|
expect(InviteMailer).to receive(:deliver_later)
|
2017-07-10 14:44:26 +02:00
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user exist' do
|
|
|
|
before do
|
|
|
|
create :user, email: email
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'send email' do
|
|
|
|
expect(InviteMailer).to receive(:invite_user).and_return(InviteMailer)
|
2018-05-25 18:05:28 +02:00
|
|
|
expect(InviteMailer).to receive(:deliver_later)
|
2017-07-10 14:44:26 +02:00
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-02-08 18:16:18 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|