demarches-normaliennes/spec/views/admin/procedures/show.html.haml_spec.rb

80 lines
2.4 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe 'admin/procedures/show.html.haml', type: :view do
let(:closed_at) { nil }
let(:procedure) { create(:procedure, :with_service, closed_at: closed_at) }
before do
assign(:procedure, procedure)
assign(:procedure_lien, commencer_url(path: procedure.path))
end
2016-06-30 10:24:01 +02:00
describe 'procedure is draft' do
2019-08-21 16:17:02 +02:00
context 'when procedure does not have a instructeur affected' do
2016-10-12 14:44:08 +02:00
before do
render
end
2016-06-30 10:24:01 +02:00
2016-10-12 14:44:08 +02:00
describe 'publish button is not visible' do
2018-08-14 15:17:22 +02:00
it { expect(rendered).not_to have_css('a#publish-procedure') }
it { expect(rendered).not_to have_css('button#archive-procedure') }
it { expect(rendered).not_to have_css('a#reopen-procedure') }
2016-10-12 14:44:08 +02:00
end
2016-06-30 10:24:01 +02:00
end
2019-08-21 16:17:02 +02:00
context 'when procedure have a instructeur affected' do
2016-10-12 14:44:08 +02:00
before do
2019-08-21 16:16:53 +02:00
create(:instructeur).assign_to_procedure(procedure)
2016-10-12 14:44:08 +02:00
render
end
describe 'publish button is visible' do
2016-12-14 18:53:40 +01:00
it { expect(rendered).to have_css('a#publish-procedure') }
2018-08-14 15:17:22 +02:00
it { expect(rendered).not_to have_css('button#archive-procedure') }
it { expect(rendered).not_to have_css('a#reopen-procedure') }
2016-10-12 14:44:08 +02:00
end
2019-03-06 14:42:27 +01:00
describe 'procedure path is not customized' do
it { expect(rendered).to have_content('Cette démarche est actuellement en test') }
2016-10-12 14:44:08 +02:00
end
2016-06-30 10:24:01 +02:00
end
end
2016-06-30 10:24:01 +02:00
describe 'procedure is published' do
before do
procedure.publish!
2016-06-30 10:24:01 +02:00
procedure.reload
render
end
2016-06-30 10:24:01 +02:00
describe 'archive button is visible', js: true do
2018-08-14 15:17:22 +02:00
it { expect(rendered).not_to have_css('a#publish-procedure') }
it { expect(rendered).to have_css('button#archive-procedure') }
it { expect(rendered).not_to have_css('a#reopen-procedure') }
end
2016-06-30 10:24:01 +02:00
describe 'procedure link is present' do
2018-10-30 12:00:58 +01:00
it { expect(rendered).to have_content(commencer_url(path: procedure.path)) }
end
end
describe 'procedure is closed' do
2016-06-30 10:24:01 +02:00
before do
procedure.publish!
procedure.close!
2016-06-30 10:24:01 +02:00
procedure.reload
render
end
2016-06-30 10:24:01 +02:00
describe 'Re-enable button is visible' do
2018-08-14 15:17:22 +02:00
it { expect(rendered).not_to have_css('a#publish-procedure') }
it { expect(rendered).not_to have_css('button#archive-procedure') }
it { expect(rendered).to have_css('a#reopen-procedure') }
end
describe 'procedure link is present' do
it { expect(rendered).to have_content('Cette démarche est close et nest donc plus accessible par le public.') }
end
end
2017-04-04 15:27:04 +02:00
end