78 lines
2.5 KiB
Ruby
78 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe Columns::LinkedDropDownColumn do
|
|
describe '#filtered_ids' do
|
|
let(:procedure) { create(:procedure, types_de_champ_public: [{ type: :linked_drop_down_list, libelle: 'linked' }]) }
|
|
let(:type_de_champ) { procedure.active_revision.types_de_champ_public.first }
|
|
let(:kept_dossier) { create(:dossier, procedure: procedure) }
|
|
let(:discarded_dossier) { create(:dossier, procedure: procedure) }
|
|
|
|
subject { column.filtered_ids(Dossier.all, search_terms) }
|
|
|
|
context 'when path is :value' do
|
|
let(:column) { procedure.find_column(label: 'linked') }
|
|
|
|
before do
|
|
kept_dossier.champs.find_by(stable_id: type_de_champ.stable_id)
|
|
.update(value: %{["section 1","option A"]})
|
|
|
|
discarded_dossier.champs.find_by(stable_id: type_de_champ.stable_id)
|
|
.update(value: %{["section 1","option B"]})
|
|
end
|
|
|
|
describe 'when looking for a part' do
|
|
let(:search_terms) { ['option A'] }
|
|
|
|
it { is_expected.to eq([kept_dossier.id]) }
|
|
end
|
|
|
|
describe 'when looking for the aggregated value' do
|
|
let(:search_terms) { ['section 1 / option A'] }
|
|
|
|
it { is_expected.to match_array([kept_dossier.id]) }
|
|
end
|
|
|
|
describe 'when looking for the aggregated value or a common value' do
|
|
let(:search_terms) { ['section 1 / option A', 'section'] }
|
|
|
|
it { is_expected.to match_array([kept_dossier.id, discarded_dossier.id]) }
|
|
end
|
|
|
|
describe 'when looking for a shared string' do
|
|
let(:search_terms) { ['option'] }
|
|
|
|
it { is_expected.to match_array([kept_dossier.id, discarded_dossier.id]) }
|
|
end
|
|
end
|
|
|
|
context 'when path is not :value' do
|
|
before do
|
|
kept_dossier.champs.find_by(stable_id: type_de_champ.stable_id)
|
|
.update(value: %{["1","2"]})
|
|
|
|
discarded_dossier.champs.find_by(stable_id: type_de_champ.stable_id)
|
|
.update(value: %{["2","1"]})
|
|
end
|
|
|
|
context 'when path is :primary' do
|
|
let(:column) { procedure.find_column(label: 'linked (Primaire)') }
|
|
|
|
describe 'when looking kept part' do
|
|
let(:search_terms) { ['1'] }
|
|
|
|
it { is_expected.to eq([kept_dossier.id]) }
|
|
end
|
|
end
|
|
|
|
context 'when path is :secondary' do
|
|
let(:column) { procedure.find_column(label: 'linked (Secondaire)') }
|
|
|
|
describe 'when looking kept part' do
|
|
let(:search_terms) { ['2'] }
|
|
|
|
it { is_expected.to eq([kept_dossier.id]) }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|