2017-07-31 11:58:52 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
describe Instructeurs::RechercheController, type: :controller do
|
2017-12-14 15:51:45 +01:00
|
|
|
let(:dossier) { create(:dossier, :en_construction) }
|
|
|
|
let(:dossier2) { create(:dossier, :en_construction, procedure: dossier.procedure) }
|
2019-08-06 11:02:54 +02:00
|
|
|
let(:instructeur) { create(:instructeur) }
|
2017-07-31 11:58:52 +02:00
|
|
|
|
2019-08-20 18:03:33 +02:00
|
|
|
before { instructeur.groupe_instructeurs << dossier2.procedure.defaut_groupe_instructeur }
|
2017-07-31 11:58:52 +02:00
|
|
|
|
|
|
|
describe 'GET #index' do
|
2019-08-07 11:15:16 +02:00
|
|
|
before { sign_in(instructeur.user) }
|
2017-07-31 11:58:52 +02:00
|
|
|
|
|
|
|
subject { get :index, params: { q: query } }
|
|
|
|
|
|
|
|
describe 'by id' do
|
2019-08-06 11:02:54 +02:00
|
|
|
context 'when instructeur own the dossier' do
|
2017-07-31 11:58:52 +02:00
|
|
|
let(:query) { dossier.id }
|
|
|
|
|
|
|
|
it { is_expected.to have_http_status(200) }
|
|
|
|
|
|
|
|
it 'returns the expected dossier' do
|
|
|
|
subject
|
|
|
|
expect(assigns(:dossiers).count).to eq(1)
|
|
|
|
expect(assigns(:dossiers).first.id).to eq(dossier.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
context 'when instructeur do not own the dossier' do
|
2017-12-14 15:51:45 +01:00
|
|
|
let(:dossier3) { create(:dossier, :en_construction) }
|
2017-07-31 11:58:52 +02:00
|
|
|
let(:query) { dossier3.id }
|
|
|
|
|
|
|
|
it { is_expected.to have_http_status(200) }
|
|
|
|
|
|
|
|
it 'does not return the dossier' do
|
|
|
|
subject
|
|
|
|
expect(assigns(:dossiers).count).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
2018-02-06 12:15:20 +01:00
|
|
|
|
|
|
|
context 'with an id out of range' do
|
|
|
|
let(:query) { 123456789876543234567 }
|
|
|
|
|
|
|
|
it { is_expected.to have_http_status(200) }
|
|
|
|
|
|
|
|
it 'does not return the dossier' do
|
|
|
|
subject
|
|
|
|
expect(assigns(:dossiers).count).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
2017-07-31 11:58:52 +02:00
|
|
|
end
|
2019-05-22 14:34:46 +02:00
|
|
|
|
|
|
|
context 'with no query param it does not crash' do
|
|
|
|
subject { get :index, params: {} }
|
|
|
|
|
|
|
|
it { is_expected.to have_http_status(200) }
|
|
|
|
|
|
|
|
it 'returns 0 dossier' do
|
|
|
|
subject
|
|
|
|
expect(assigns(:dossiers).count).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
2017-07-31 11:58:52 +02:00
|
|
|
end
|
|
|
|
end
|