2022-11-21 16:32:17 +01:00
|
|
|
RSpec.describe Dossiers::BatchOperationComponent, type: :component do
|
|
|
|
include ActionView::Context
|
|
|
|
include ActionView::Helpers::FormHelper
|
|
|
|
include ActionView::Helpers::FormOptionsHelper
|
|
|
|
|
|
|
|
let(:component) do
|
|
|
|
cmp = nil
|
2022-12-02 17:16:29 +01:00
|
|
|
form_for(BatchOperation.new, url: Rails.application.routes.url_helpers.instructeur_batch_operations_path(procedure_id: 1), method: :post, data: { controller: 'batch-operation' }) do |_form|
|
|
|
|
cmp = described_class.new(statut: statut, procedure: create(:procedure))
|
2022-11-21 16:32:17 +01:00
|
|
|
end
|
|
|
|
cmp
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { render_inline(component).to_html }
|
|
|
|
context 'statut traite' do
|
|
|
|
let(:statut) { 'traites' }
|
2022-12-15 17:35:50 +01:00
|
|
|
it { is_expected.to have_button('Archiver les dossiers sélectionnés', disabled: true) }
|
2022-11-21 16:32:17 +01:00
|
|
|
end
|
|
|
|
|
2022-12-12 10:02:33 +01:00
|
|
|
subject { render_inline(component).to_html }
|
|
|
|
context 'statut suivis' do
|
|
|
|
let(:statut) { 'suivis' }
|
2022-12-15 17:35:50 +01:00
|
|
|
it { is_expected.to have_button('Actions multiples', disabled: true) }
|
2022-12-16 17:38:32 +01:00
|
|
|
it { is_expected.to have_button('Passer en instruction les dossiers sélectionnés', disabled: true) }
|
|
|
|
it { is_expected.to have_link('Accepter les dossiers sélectionnés') }
|
2022-12-12 10:02:33 +01:00
|
|
|
end
|
|
|
|
|
2022-11-21 16:32:17 +01:00
|
|
|
context 'statut tous' do
|
|
|
|
let(:statut) { 'tous' }
|
2022-12-05 15:36:41 +01:00
|
|
|
it { is_expected.not_to have_selector('button') }
|
2022-11-21 16:32:17 +01:00
|
|
|
end
|
|
|
|
end
|