2015-10-26 16:10:38 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe RootController, type: :controller do
|
|
|
|
subject { get :index }
|
|
|
|
|
|
|
|
context 'when User is connected' do
|
|
|
|
before do
|
|
|
|
sign_in create(:user)
|
|
|
|
end
|
|
|
|
|
2018-06-27 14:47:02 +02:00
|
|
|
it { expect(subject).to redirect_to(dossiers_path) }
|
2015-10-26 16:10:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Gestionnaire is connected' do
|
2016-12-14 18:41:33 +01:00
|
|
|
let(:gestionnaire) { create(:gestionnaire) }
|
2017-12-19 15:08:08 +01:00
|
|
|
let(:procedure) { create(:procedure, :published) }
|
|
|
|
let(:dossier) { create(:dossier, :en_construction, procedure: procedure) }
|
2016-12-14 18:41:33 +01:00
|
|
|
|
2015-10-26 16:10:38 +01:00
|
|
|
before do
|
2017-12-19 15:08:08 +01:00
|
|
|
gestionnaire.procedures << procedure
|
2016-12-14 18:41:33 +01:00
|
|
|
sign_in gestionnaire
|
|
|
|
end
|
|
|
|
|
2018-02-21 15:06:21 +01:00
|
|
|
it { expect(subject).to redirect_to(gestionnaire_procedures_path) }
|
2015-10-26 16:10:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Administrateur is connected' do
|
|
|
|
before do
|
|
|
|
sign_in create(:administrateur)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(subject).to redirect_to(admin_procedures_path) }
|
|
|
|
end
|
|
|
|
|
2017-05-31 15:27:20 +02:00
|
|
|
context 'when Administration is connected' do
|
|
|
|
before do
|
|
|
|
sign_in create(:administration)
|
|
|
|
end
|
|
|
|
|
2018-01-16 17:09:25 +01:00
|
|
|
it { expect(subject).to redirect_to(manager_root_path) }
|
2017-05-31 15:27:20 +02:00
|
|
|
end
|
|
|
|
|
2015-10-26 16:10:38 +01:00
|
|
|
context 'when nobody is connected' do
|
2016-02-01 17:16:00 +01:00
|
|
|
render_views
|
|
|
|
|
|
|
|
before do
|
2018-01-10 17:26:12 +01:00
|
|
|
stub_request(:get, "https://api.github.com/repos/betagouv/tps/releases/latest")
|
2018-01-15 19:34:08 +01:00
|
|
|
.to_return(:status => 200, :body => '{"tag_name": "plip", "body": "blabla", "published_at": "2016-02-09T16:46:47Z"}', :headers => {})
|
2016-02-16 12:01:39 +01:00
|
|
|
|
2016-02-01 17:16:00 +01:00
|
|
|
subject
|
|
|
|
end
|
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
it { expect(response.body).to have_css('.landing') }
|
2015-10-26 16:10:38 +01:00
|
|
|
end
|
2016-10-18 15:50:48 +02:00
|
|
|
|
|
|
|
context "unified login" do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before do
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
|
|
|
|
it "won't have gestionnaire login link" do
|
|
|
|
expect(response.body).to have_css("a[href='#{new_user_session_path}']")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|