2016-12-27 15:50:45 +01:00
|
|
|
describe Users::Dossiers::InvitesController, type: :controller do
|
2016-02-22 10:34:25 +01:00
|
|
|
describe '#authenticate_user!' do
|
|
|
|
let(:user) { create :user }
|
|
|
|
let(:invite) { create :invite }
|
|
|
|
|
|
|
|
context 'when email is not set' do
|
|
|
|
context 'when user is not connected' do
|
|
|
|
before do
|
2018-01-16 13:34:24 +01:00
|
|
|
get :show, params: { id: invite.id }
|
2016-02-22 10:34:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to redirect_to new_user_session_path }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is connected' do
|
|
|
|
let!(:invite) { create :invite, user: user }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in invite.user
|
|
|
|
|
2018-01-16 13:34:24 +01:00
|
|
|
get :show, params: { id: invite.id }
|
2016-02-22 10:34:25 +01:00
|
|
|
end
|
|
|
|
|
2017-01-04 18:03:03 +01:00
|
|
|
it { expect(response.status).to eq 200 }
|
2016-02-22 10:34:25 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when email is set' do
|
|
|
|
before do
|
2018-01-16 13:34:24 +01:00
|
|
|
get :show, params: { id: invite.id, email: email }
|
2016-02-22 10:34:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when email is blank' do
|
|
|
|
let(:email) { '' }
|
|
|
|
|
|
|
|
it { is_expected.to redirect_to new_user_session_path }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when email is not blank' do
|
|
|
|
context 'when email is affected at an user' do
|
|
|
|
let(:email) { user.email }
|
|
|
|
|
|
|
|
it { is_expected.to redirect_to new_user_session_path }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when email is not affected at an user' do
|
|
|
|
let(:email) { 'new_user@octo.com' }
|
|
|
|
|
|
|
|
it { is_expected.to redirect_to new_user_registration_path(user_email: email) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-12-16 15:34:49 +01:00
|
|
|
|
|
|
|
describe '#GET show' do
|
|
|
|
let(:user) { create :user }
|
|
|
|
|
|
|
|
let(:invite) { create :invite, email: email, dossier: (create :dossier) }
|
|
|
|
|
2018-01-16 13:34:24 +01:00
|
|
|
subject { get :show, params: { id: invite.id } }
|
2016-12-16 15:34:49 +01:00
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in user
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when invitation ID is attach at the user email account' do
|
|
|
|
let(:email) { user.email }
|
|
|
|
it { expect(subject.status).to eq 200 }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when invitation ID is not attach at the user email account' do
|
|
|
|
let(:email) { 'fake@email.com' }
|
|
|
|
|
|
|
|
it { expect(subject.status).to eq 302 }
|
|
|
|
it { is_expected.to redirect_to users_dossiers_path }
|
|
|
|
end
|
|
|
|
end
|
2017-04-04 15:27:04 +02:00
|
|
|
end
|