demarches-normaliennes/spec/services/demarches_publiques_export_service_spec.rb

57 lines
1.7 KiB
Ruby
Raw Normal View History

2022-06-14 13:05:19 +02:00
describe DemarchesPubliquesExportService do
let(:procedure) { create(:procedure, :published, :with_service, :with_type_de_champ) }
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,
dossiersCount: 1,
2022-06-14 13:05:19 +02:00
revision: {
champDescriptors: [
{
description: procedure.types_de_champ.first.description,
label: procedure.types_de_champ.first.libelle,
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