2022-06-14 13:05:19 +02:00
|
|
|
describe DemarchesPubliquesExportService do
|
|
|
|
let(:procedure) { create(:procedure, :published, :with_service, :with_type_de_champ) }
|
2022-06-17 19:14:04 +02:00
|
|
|
let!(:dossier) { create(:dossier, procedure: procedure) }
|
2022-07-13 10:41:22 +02:00
|
|
|
let(:gzip_filename) { "demarches.json.gz" }
|
|
|
|
|
|
|
|
after { FileUtils.rm(gzip_filename) }
|
2022-06-14 13:05:19 +02:00
|
|
|
|
|
|
|
describe 'call' do
|
|
|
|
it 'generate json for all closed procedures' do
|
|
|
|
expected_result = {
|
|
|
|
number: procedure.id,
|
|
|
|
title: procedure.libelle,
|
|
|
|
description: "Demande de subvention à l'intention des associations",
|
|
|
|
service: {
|
|
|
|
nom: procedure.service.nom,
|
|
|
|
organisme: "organisme",
|
|
|
|
typeOrganisme: "association"
|
|
|
|
},
|
|
|
|
cadreJuridique: "un cadre juridique important",
|
|
|
|
deliberation: nil,
|
|
|
|
datePublication: procedure.published_at.iso8601,
|
2022-06-17 19:14:04 +02:00
|
|
|
dossiersCount: 1,
|
2022-06-14 13:05:19 +02:00
|
|
|
revision: {
|
|
|
|
champDescriptors: [
|
|
|
|
{
|
2022-11-16 12:46:33 +01:00
|
|
|
description: procedure.active_revision.types_de_champ_public.first.description,
|
|
|
|
label: procedure.active_revision.types_de_champ_public.first.libelle,
|
2022-06-14 13:05:19 +02:00
|
|
|
options: nil,
|
|
|
|
required: false,
|
|
|
|
type: "text",
|
|
|
|
champDescriptors: nil
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2022-07-13 10:41:22 +02:00
|
|
|
DemarchesPubliquesExportService.new(gzip_filename).call
|
2022-06-14 13:05:19 +02:00
|
|
|
|
2022-07-13 10:41:22 +02:00
|
|
|
expect(JSON.parse(deflat_gzip(gzip_filename))[0]
|
2022-06-14 13:05:19 +02:00
|
|
|
.deep_symbolize_keys)
|
|
|
|
.to eq(expected_result)
|
|
|
|
end
|
2022-07-13 10:41:22 +02:00
|
|
|
|
2022-06-14 13:05:19 +02:00
|
|
|
it 'raises exception when procedure with bad data' do
|
|
|
|
procedure.libelle = nil
|
|
|
|
procedure.save(validate: false)
|
|
|
|
|
2022-07-13 10:41:22 +02:00
|
|
|
expect { DemarchesPubliquesExportService.new(gzip_filename).call }.to raise_error(DemarchesPubliquesExportService::Error)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def deflat_gzip(gzip_filename)
|
|
|
|
Zlib::GzipReader.open(gzip_filename) do |gz|
|
|
|
|
return gz.read
|
2022-06-14 13:05:19 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|