demarches-normaliennes/spec/services/demarches_publiques_export_service_spec.rb

63 lines
2.1 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, estimated_dossiers_count: 4) }
let!(:dossier) { create(:dossier, :en_construction, 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"
},
cadreJuridiqueUrl: "un cadre juridique important",
2023-02-15 18:30:02 +01:00
demarcheUrl: Rails.application.routes.url_helpers.commencer_url(path: procedure.path),
dpoUrl: nil,
noticeUrl: nil,
siteWebUrl: "https://mon-site.gouv",
logo: nil,
notice: nil,
2022-06-14 13:05:19 +02:00
deliberation: nil,
datePublication: procedure.published_at.iso8601,
zones: ["Ministère de l'Education Populaire"],
tags: [],
dossiersCount: 1,
2022-06-14 13:05:19 +02:00
revision: {
champDescriptors: [
{
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
required: false,
__typename: "TextChampDescriptor"
2022-06-14 13:05:19 +02:00
}
]
}
}
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