2017-06-29 14:18:12 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe NewUser::DossiersController, type: :controller do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
describe 'before_action: ensure_ownership!' do
|
|
|
|
it 'is present' do
|
|
|
|
before_actions = NewUser::DossiersController
|
|
|
|
._process_action_callbacks
|
2018-01-15 21:54:40 +01:00
|
|
|
.find_all{ |process_action_callbacks| process_action_callbacks.kind == :before }
|
2017-06-29 14:18:12 +02:00
|
|
|
.map(&:filter)
|
|
|
|
|
|
|
|
expect(before_actions).to include(:ensure_ownership!)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'ensure_ownership!' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
2018-01-23 18:28:09 +01:00
|
|
|
@controller.params = @controller.params.merge(dossier_id: asked_dossier.id)
|
2017-06-29 14:18:12 +02:00
|
|
|
expect(@controller).to receive(:current_user).and_return(user)
|
|
|
|
allow(@controller).to receive(:redirect_to)
|
|
|
|
|
|
|
|
@controller.send(:ensure_ownership!)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a user asks for its dossier' do
|
|
|
|
let(:asked_dossier) { create(:dossier, user: user) }
|
|
|
|
|
|
|
|
it 'does not redirects nor flash' do
|
|
|
|
expect(@controller).not_to have_received(:redirect_to)
|
|
|
|
expect(flash.alert).to eq(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a user asks for another dossier' do
|
|
|
|
let(:asked_dossier) { create(:dossier) }
|
|
|
|
|
|
|
|
it 'redirects and flash' do
|
|
|
|
expect(@controller).to have_received(:redirect_to).with(root_path)
|
|
|
|
expect(flash.alert).to eq("Vous n'avez pas accès à ce dossier")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-06-29 14:18:59 +02:00
|
|
|
|
|
|
|
describe 'attestation' do
|
|
|
|
before { sign_in(user) }
|
|
|
|
|
|
|
|
context 'when a dossier has an attestation' do
|
|
|
|
let(:fake_pdf) { double(read: 'pdf content') }
|
|
|
|
let!(:dossier) { create(:dossier, attestation: Attestation.new, user: user) }
|
|
|
|
|
|
|
|
it 'returns the attestation pdf' do
|
|
|
|
allow_any_instance_of(Attestation).to receive(:pdf).and_return(fake_pdf)
|
|
|
|
|
|
|
|
expect(controller).to receive(:send_data)
|
|
|
|
.with('pdf content', filename: 'attestation.pdf', type: 'application/pdf') do
|
2018-01-24 14:44:28 +01:00
|
|
|
controller.head :ok
|
2017-06-29 14:18:59 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
get :attestation, params: { dossier_id: dossier.id }
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-02-08 17:13:15 +01:00
|
|
|
|
|
|
|
describe 'update_identite' do
|
|
|
|
let(:procedure) { create(:procedure, :for_individual) }
|
|
|
|
let(:dossier) { create(:dossier, user: user, procedure: procedure) }
|
|
|
|
|
|
|
|
subject { post :update_identite, params: { id: dossier.id, individual: individual_params, dossier: dossier_params } }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with correct individual and dossier params' do
|
|
|
|
let(:individual_params) { { gender: 'M', nom: 'Mouse', prenom: 'Mickey' } }
|
|
|
|
let(:dossier_params) { { autorisation_donnees: true } }
|
|
|
|
|
|
|
|
it do
|
|
|
|
expect(response).to redirect_to(users_dossier_description_path(dossier))
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on a procedure with carto' do
|
|
|
|
let(:procedure) { create(:procedure, :for_individual, :with_api_carto) }
|
|
|
|
|
|
|
|
it do
|
|
|
|
expect(response).to redirect_to(users_dossier_carte_path(dossier))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with incorrect individual and dossier params' do
|
|
|
|
let(:individual_params) { { gender: '', nom: '', prenom: '' } }
|
|
|
|
let(:dossier_params) { { autorisation_donnees: nil } }
|
|
|
|
|
|
|
|
it do
|
|
|
|
expect(response).not_to have_http_status(:redirect)
|
|
|
|
expect(flash[:alert]).to include("Civilité doit être rempli", "Nom doit être rempli", "Prénom doit être rempli", "Acceptation des CGU doit être coché")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-06-29 14:18:12 +02:00
|
|
|
end
|