2015-08-10 11:05:06 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-09-23 19:20:03 +02:00
|
|
|
describe Users::RecapitulatifController, type: :controller do
|
2018-08-28 14:10:55 +02:00
|
|
|
let(:dossier) { create(:dossier, state: Dossier.states.fetch(:en_construction)) }
|
2015-09-23 19:20:03 +02:00
|
|
|
let(:bad_dossier_id) { Dossier.count + 100000 }
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2015-09-24 16:51:14 +02:00
|
|
|
before do
|
|
|
|
sign_in dossier.user
|
|
|
|
end
|
|
|
|
|
2015-08-20 16:52:36 +02:00
|
|
|
describe 'GET #show' do
|
|
|
|
it 'returns http success' do
|
2018-01-16 13:34:24 +01:00
|
|
|
get :show, params: { dossier_id: dossier.id }
|
2015-08-10 11:05:06 +02:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
2015-09-23 16:56:30 +02:00
|
|
|
it 'redirection vers siret si mauvais dossier ID' do
|
2018-01-16 13:34:24 +01:00
|
|
|
get :show, params: { dossier_id: bad_dossier_id }
|
2015-10-09 17:33:33 +02:00
|
|
|
expect(response).to redirect_to('/')
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
2015-10-09 17:33:33 +02:00
|
|
|
|
|
|
|
it_behaves_like "not owner of dossier", :show
|
|
|
|
|
2016-01-25 15:54:21 +01:00
|
|
|
describe 'before_action authorized_routes?' do
|
2017-12-04 16:17:15 +01:00
|
|
|
context 'when dossier have brouillon state' do
|
2016-01-25 15:54:21 +01:00
|
|
|
before do
|
2018-08-28 14:10:55 +02:00
|
|
|
dossier.state = Dossier.states.fetch(:brouillon)
|
2016-01-25 15:54:21 +01:00
|
|
|
dossier.save
|
|
|
|
|
2018-01-16 13:34:24 +01:00
|
|
|
get :show, params: { dossier_id: dossier.id }
|
2016-01-25 15:54:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to redirect_to root_path }
|
|
|
|
end
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
2015-09-24 16:51:14 +02:00
|
|
|
|
2015-11-02 15:31:15 +01:00
|
|
|
describe 'POST #initiate' do
|
|
|
|
context 'when an user initiate his dossier' do
|
2015-09-24 16:51:14 +02:00
|
|
|
before do
|
2018-01-16 13:34:24 +01:00
|
|
|
post :initiate, params: { dossier_id: dossier.id }
|
2015-09-24 16:51:14 +02:00
|
|
|
end
|
|
|
|
|
2017-12-04 18:00:12 +01:00
|
|
|
it 'dossier change his state for accepte' do
|
2015-09-24 16:51:14 +02:00
|
|
|
dossier.reload
|
2018-08-28 14:10:55 +02:00
|
|
|
expect(dossier.state).to eq(Dossier.states.fetch(:en_construction))
|
2015-09-24 16:51:14 +02:00
|
|
|
end
|
|
|
|
|
2017-12-14 15:51:45 +01:00
|
|
|
it 'a message informe user what his dossier is en_construction' do
|
2015-09-24 16:51:14 +02:00
|
|
|
expect(flash[:notice]).to include('Dossier soumis avec succès.')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|