2019-09-18 18:45:24 +02:00
|
|
|
|
describe API::V2::GraphqlController do
|
|
|
|
|
let(:admin) { create(:administrateur) }
|
|
|
|
|
let(:token) { admin.renew_api_token }
|
2019-11-29 12:45:58 +01:00
|
|
|
|
let(:procedure) { create(:procedure, :published, :for_individual, :with_service, :with_all_champs, administrateurs: [admin]) }
|
2019-09-18 18:45:24 +02:00
|
|
|
|
let(:dossier) do
|
|
|
|
|
dossier = create(:dossier,
|
|
|
|
|
:en_construction,
|
|
|
|
|
:with_all_champs,
|
2020-01-07 17:47:22 +01:00
|
|
|
|
:with_individual,
|
2019-09-18 18:45:24 +02:00
|
|
|
|
procedure: procedure)
|
2019-12-11 12:24:50 +01:00
|
|
|
|
create(:commentaire, :with_file, dossier: dossier, email: 'test@test.com')
|
2019-09-18 18:45:24 +02:00
|
|
|
|
dossier
|
|
|
|
|
end
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier1) { create(:dossier, :en_construction, :with_individual, procedure: procedure, en_construction_at: 1.day.ago) }
|
2020-07-29 16:43:41 +02:00
|
|
|
|
let(:dossier2) { create(:dossier, :en_construction, :with_individual, :archived, procedure: procedure, en_construction_at: 3.days.ago) }
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier_brouillon) { create(:dossier, :with_individual, procedure: procedure) }
|
2019-09-26 14:57:58 +02:00
|
|
|
|
let(:dossiers) { [dossier2, dossier1, dossier] }
|
|
|
|
|
let(:instructeur) { create(:instructeur, followed_dossiers: dossiers) }
|
|
|
|
|
|
2019-12-11 13:14:18 +01:00
|
|
|
|
def compute_checksum_in_chunks(io)
|
|
|
|
|
Digest::MD5.new.tap do |checksum|
|
|
|
|
|
while (chunk = io.read(5.megabytes))
|
|
|
|
|
checksum << chunk
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
io.rewind
|
|
|
|
|
end.base64digest
|
|
|
|
|
end
|
|
|
|
|
|
2020-06-30 17:53:54 +02:00
|
|
|
|
let(:file) { fixture_file_upload('spec/fixtures/files/logo_test_procedure.png', 'image/png') }
|
2019-12-11 13:14:18 +01:00
|
|
|
|
let(:blob_info) do
|
|
|
|
|
{
|
|
|
|
|
filename: file.original_filename,
|
|
|
|
|
byte_size: file.size,
|
|
|
|
|
checksum: compute_checksum_in_chunks(file),
|
|
|
|
|
content_type: file.content_type
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
let(:blob) do
|
2020-11-25 10:46:34 +01:00
|
|
|
|
blob = ActiveStorage::Blob.create_before_direct_upload!(**blob_info)
|
2019-12-11 13:14:18 +01:00
|
|
|
|
blob.upload(file)
|
|
|
|
|
blob
|
|
|
|
|
end
|
|
|
|
|
|
2019-09-26 14:57:58 +02:00
|
|
|
|
before do
|
|
|
|
|
instructeur.assign_to_procedure(procedure)
|
|
|
|
|
end
|
2019-09-18 18:45:24 +02:00
|
|
|
|
|
|
|
|
|
let(:query) do
|
|
|
|
|
"{
|
|
|
|
|
demarche(number: #{procedure.id}) {
|
|
|
|
|
id
|
|
|
|
|
number
|
|
|
|
|
title
|
|
|
|
|
description
|
|
|
|
|
state
|
2019-09-26 15:17:58 +02:00
|
|
|
|
dateCreation
|
|
|
|
|
dateDerniereModification
|
|
|
|
|
dateFermeture
|
2019-09-24 19:41:48 +02:00
|
|
|
|
groupeInstructeurs {
|
|
|
|
|
label
|
|
|
|
|
instructeurs {
|
|
|
|
|
email
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-16 12:48:35 +02:00
|
|
|
|
revisions {
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
draftRevision {
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
publishedRevision {
|
|
|
|
|
id
|
|
|
|
|
champDescriptors {
|
|
|
|
|
type
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-29 12:45:58 +01:00
|
|
|
|
service {
|
|
|
|
|
nom
|
|
|
|
|
typeOrganisme
|
|
|
|
|
organisme
|
|
|
|
|
}
|
2019-09-18 18:45:24 +02:00
|
|
|
|
champDescriptors {
|
|
|
|
|
id
|
|
|
|
|
type
|
|
|
|
|
label
|
|
|
|
|
description
|
|
|
|
|
required
|
2020-07-16 12:50:00 +02:00
|
|
|
|
champDescriptors {
|
|
|
|
|
id
|
|
|
|
|
type
|
|
|
|
|
}
|
|
|
|
|
options
|
2019-09-18 18:45:24 +02:00
|
|
|
|
}
|
|
|
|
|
dossiers {
|
|
|
|
|
nodes {
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
let(:body) { JSON.parse(subject.body, symbolize_names: true) }
|
|
|
|
|
let(:gql_data) { body[:data] }
|
|
|
|
|
let(:gql_errors) { body[:errors] }
|
|
|
|
|
|
|
|
|
|
subject { post :execute, params: { query: query } }
|
|
|
|
|
|
|
|
|
|
context "when authenticated" do
|
|
|
|
|
let(:authorization_header) { ActionController::HttpAuthentication::Token.encode_credentials(token) }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
request.env['HTTP_AUTHORIZATION'] = authorization_header
|
|
|
|
|
end
|
|
|
|
|
|
2019-09-26 14:57:58 +02:00
|
|
|
|
context "demarche" do
|
|
|
|
|
it "should be returned" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(demarche: {
|
|
|
|
|
id: procedure.to_typed_id,
|
2019-11-07 13:24:34 +01:00
|
|
|
|
number: procedure.id,
|
2019-09-26 14:57:58 +02:00
|
|
|
|
title: procedure.libelle,
|
|
|
|
|
description: procedure.description,
|
2019-11-21 18:52:07 +01:00
|
|
|
|
state: 'publiee',
|
2019-09-26 15:17:58 +02:00
|
|
|
|
dateFermeture: nil,
|
|
|
|
|
dateCreation: procedure.created_at.iso8601,
|
|
|
|
|
dateDerniereModification: procedure.updated_at.iso8601,
|
2019-09-26 14:57:58 +02:00
|
|
|
|
groupeInstructeurs: [
|
|
|
|
|
{
|
|
|
|
|
instructeurs: [{ email: instructeur.email }],
|
|
|
|
|
label: "défaut"
|
|
|
|
|
}
|
|
|
|
|
],
|
2020-07-16 12:48:35 +02:00
|
|
|
|
revisions: procedure.revisions.map { |revision| { id: revision.to_typed_id } },
|
|
|
|
|
draftRevision: { id: procedure.draft_revision.to_typed_id },
|
|
|
|
|
publishedRevision: {
|
|
|
|
|
id: procedure.published_revision.to_typed_id,
|
|
|
|
|
champDescriptors: procedure.published_types_de_champ.map do |tdc|
|
|
|
|
|
{
|
|
|
|
|
type: tdc.type_champ
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
},
|
2019-11-29 12:45:58 +01:00
|
|
|
|
service: {
|
|
|
|
|
nom: procedure.service.nom,
|
|
|
|
|
typeOrganisme: procedure.service.type_organisme,
|
|
|
|
|
organisme: procedure.service.organisme
|
|
|
|
|
},
|
2019-09-26 14:57:58 +02:00
|
|
|
|
champDescriptors: procedure.types_de_champ.map do |tdc|
|
|
|
|
|
{
|
|
|
|
|
id: tdc.to_typed_id,
|
|
|
|
|
label: tdc.libelle,
|
|
|
|
|
type: tdc.type_champ,
|
|
|
|
|
description: tdc.description,
|
2020-07-16 12:50:00 +02:00
|
|
|
|
required: tdc.mandatory?,
|
|
|
|
|
champDescriptors: tdc.repetition? ? tdc.reload.types_de_champ.map { |tdc| { id: tdc.to_typed_id, type: tdc.type_champ } } : nil,
|
|
|
|
|
options: tdc.drop_down_list? ? tdc.drop_down_list_options.reject(&:empty?) : nil
|
2019-09-26 14:57:58 +02:00
|
|
|
|
}
|
|
|
|
|
end,
|
|
|
|
|
dossiers: {
|
|
|
|
|
nodes: dossiers.map { |dossier| { id: dossier.to_typed_id } }
|
2019-09-18 18:45:24 +02:00
|
|
|
|
}
|
2019-09-26 14:57:58 +02:00
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "filter dossiers" do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"{
|
|
|
|
|
demarche(number: #{procedure.id}) {
|
|
|
|
|
id
|
|
|
|
|
number
|
|
|
|
|
dossiers(createdSince: \"#{2.days.ago.iso8601}\") {
|
|
|
|
|
nodes {
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should be returned" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(demarche: {
|
|
|
|
|
id: procedure.to_typed_id,
|
2019-11-07 13:24:34 +01:00
|
|
|
|
number: procedure.id,
|
2019-09-26 14:57:58 +02:00
|
|
|
|
dossiers: {
|
|
|
|
|
nodes: [{ id: dossier1.to_typed_id }, { id: dossier.to_typed_id }]
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
2020-07-29 16:43:41 +02:00
|
|
|
|
|
|
|
|
|
context "filter archived dossiers" do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"{
|
|
|
|
|
demarche(number: #{procedure.id}) {
|
|
|
|
|
id
|
|
|
|
|
number
|
|
|
|
|
dossiers(archived: #{archived_filter}) {
|
|
|
|
|
nodes {
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with archived=true' do
|
|
|
|
|
let(:archived_filter) { 'true' }
|
|
|
|
|
it "only archived dossiers should be returned" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(demarche: {
|
|
|
|
|
id: procedure.to_typed_id,
|
|
|
|
|
number: procedure.id,
|
|
|
|
|
dossiers: {
|
|
|
|
|
nodes: [{ id: dossier2.to_typed_id }]
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with archived=false' do
|
|
|
|
|
let(:archived_filter) { 'false' }
|
|
|
|
|
it "only not archived dossiers should be returned" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(demarche: {
|
|
|
|
|
id: procedure.to_typed_id,
|
|
|
|
|
number: procedure.id,
|
|
|
|
|
dossiers: {
|
|
|
|
|
nodes: [{ id: dossier1.to_typed_id }, { id: dossier.to_typed_id }]
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-09-18 18:45:24 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "dossier" do
|
2020-01-07 17:27:00 +01:00
|
|
|
|
context "with individual" do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"{
|
|
|
|
|
dossier(number: #{dossier.id}) {
|
2019-09-18 18:45:24 +02:00
|
|
|
|
id
|
2020-01-07 17:27:00 +01:00
|
|
|
|
number
|
|
|
|
|
state
|
|
|
|
|
dateDerniereModification
|
|
|
|
|
datePassageEnConstruction
|
|
|
|
|
datePassageEnInstruction
|
|
|
|
|
dateTraitement
|
|
|
|
|
motivation
|
|
|
|
|
motivationAttachment {
|
2019-12-11 12:24:50 +01:00
|
|
|
|
url
|
|
|
|
|
}
|
2020-01-07 17:27:00 +01:00
|
|
|
|
usager {
|
|
|
|
|
id
|
2019-09-26 15:17:58 +02:00
|
|
|
|
email
|
|
|
|
|
}
|
2020-01-07 17:27:00 +01:00
|
|
|
|
demandeur {
|
|
|
|
|
id
|
|
|
|
|
... on PersonnePhysique {
|
|
|
|
|
nom
|
|
|
|
|
prenom
|
|
|
|
|
civilite
|
|
|
|
|
dateDeNaissance
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
instructeurs {
|
|
|
|
|
id
|
|
|
|
|
email
|
|
|
|
|
}
|
2020-02-27 18:37:19 +01:00
|
|
|
|
groupeInstructeur {
|
|
|
|
|
id
|
2020-04-08 19:30:16 +02:00
|
|
|
|
number
|
2020-02-27 18:37:19 +01:00
|
|
|
|
label
|
|
|
|
|
}
|
2020-07-16 12:48:35 +02:00
|
|
|
|
revision {
|
|
|
|
|
id
|
|
|
|
|
champDescriptors {
|
|
|
|
|
type
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-07 17:27:00 +01:00
|
|
|
|
messages {
|
|
|
|
|
email
|
|
|
|
|
body
|
|
|
|
|
attachment {
|
|
|
|
|
filename
|
|
|
|
|
checksum
|
|
|
|
|
byteSize
|
|
|
|
|
contentType
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
avis {
|
|
|
|
|
expert {
|
|
|
|
|
email
|
|
|
|
|
}
|
|
|
|
|
question
|
|
|
|
|
reponse
|
|
|
|
|
dateQuestion
|
|
|
|
|
dateReponse
|
|
|
|
|
attachment {
|
|
|
|
|
url
|
|
|
|
|
filename
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
champs {
|
|
|
|
|
id
|
|
|
|
|
label
|
|
|
|
|
stringValue
|
2019-12-11 12:24:50 +01:00
|
|
|
|
}
|
2019-09-18 18:45:24 +02:00
|
|
|
|
}
|
2020-01-07 17:27:00 +01:00
|
|
|
|
}"
|
|
|
|
|
end
|
2019-09-18 18:45:24 +02:00
|
|
|
|
|
2019-11-21 18:52:07 +01:00
|
|
|
|
it "should be returned" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossier: {
|
|
|
|
|
id: dossier.to_typed_id,
|
|
|
|
|
number: dossier.id,
|
|
|
|
|
state: 'en_construction',
|
|
|
|
|
dateDerniereModification: dossier.updated_at.iso8601,
|
|
|
|
|
datePassageEnConstruction: dossier.en_construction_at.iso8601,
|
|
|
|
|
datePassageEnInstruction: nil,
|
|
|
|
|
dateTraitement: nil,
|
|
|
|
|
motivation: nil,
|
2019-12-11 12:24:50 +01:00
|
|
|
|
motivationAttachment: nil,
|
2019-11-21 18:52:07 +01:00
|
|
|
|
usager: {
|
|
|
|
|
id: dossier.user.to_typed_id,
|
|
|
|
|
email: dossier.user.email
|
|
|
|
|
},
|
|
|
|
|
instructeurs: [
|
|
|
|
|
{
|
|
|
|
|
id: instructeur.to_typed_id,
|
|
|
|
|
email: instructeur.email
|
|
|
|
|
}
|
|
|
|
|
],
|
2020-02-27 18:37:19 +01:00
|
|
|
|
groupeInstructeur: {
|
|
|
|
|
id: dossier.groupe_instructeur.to_typed_id,
|
2020-04-08 19:30:16 +02:00
|
|
|
|
number: dossier.groupe_instructeur.id,
|
2020-02-27 18:37:19 +01:00
|
|
|
|
label: dossier.groupe_instructeur.label
|
|
|
|
|
},
|
2020-07-16 12:48:35 +02:00
|
|
|
|
revision: {
|
|
|
|
|
id: dossier.revision.to_typed_id,
|
|
|
|
|
champDescriptors: dossier.types_de_champ.map do |tdc|
|
|
|
|
|
{
|
|
|
|
|
type: tdc.type_champ
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
},
|
2019-11-21 18:52:07 +01:00
|
|
|
|
demandeur: {
|
|
|
|
|
id: dossier.individual.to_typed_id,
|
|
|
|
|
nom: dossier.individual.nom,
|
|
|
|
|
prenom: dossier.individual.prenom,
|
|
|
|
|
civilite: 'M',
|
|
|
|
|
dateDeNaissance: '1991-11-01'
|
|
|
|
|
},
|
|
|
|
|
messages: dossier.commentaires.map do |commentaire|
|
|
|
|
|
{
|
|
|
|
|
body: commentaire.body,
|
2019-12-11 12:24:50 +01:00
|
|
|
|
attachment: {
|
|
|
|
|
filename: commentaire.piece_jointe.filename.to_s,
|
|
|
|
|
contentType: commentaire.piece_jointe.content_type,
|
|
|
|
|
checksum: commentaire.piece_jointe.checksum,
|
2019-12-19 18:29:01 +01:00
|
|
|
|
byteSize: commentaire.piece_jointe.byte_size
|
2019-12-11 12:24:50 +01:00
|
|
|
|
},
|
2019-11-21 18:52:07 +01:00
|
|
|
|
email: commentaire.email
|
|
|
|
|
}
|
|
|
|
|
end,
|
|
|
|
|
avis: [],
|
|
|
|
|
champs: dossier.champs.map do |champ|
|
|
|
|
|
{
|
|
|
|
|
id: champ.to_typed_id,
|
|
|
|
|
label: champ.libelle,
|
|
|
|
|
stringValue: champ.for_api_v2
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
})
|
|
|
|
|
expect(gql_data[:dossier][:champs][0][:id]).to eq(dossier.champs[0].type_de_champ.to_typed_id)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "with entreprise" do
|
2020-01-07 17:50:49 +01:00
|
|
|
|
let(:procedure_for_entreprise) { create(:procedure, :published, administrateurs: [admin]) }
|
|
|
|
|
let(:dossier) { create(:dossier, :en_construction, :with_entreprise, procedure: procedure_for_entreprise) }
|
2019-11-21 18:52:07 +01:00
|
|
|
|
|
|
|
|
|
let(:query) do
|
|
|
|
|
"{
|
|
|
|
|
dossier(number: #{dossier.id}) {
|
|
|
|
|
id
|
|
|
|
|
number
|
|
|
|
|
usager {
|
|
|
|
|
id
|
|
|
|
|
email
|
|
|
|
|
}
|
|
|
|
|
demandeur {
|
|
|
|
|
id
|
|
|
|
|
... on PersonneMorale {
|
|
|
|
|
siret
|
|
|
|
|
siegeSocial
|
2020-09-22 09:26:46 +02:00
|
|
|
|
numeroVoie
|
|
|
|
|
typeVoie
|
2019-11-21 18:52:07 +01:00
|
|
|
|
entreprise {
|
|
|
|
|
siren
|
|
|
|
|
dateCreation
|
2020-01-28 16:26:02 +01:00
|
|
|
|
capitalSocial
|
2020-09-21 20:38:05 +02:00
|
|
|
|
codeEffectifEntreprise
|
2019-11-21 18:52:07 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-18 18:45:24 +02:00
|
|
|
|
}
|
2019-11-21 18:52:07 +01:00
|
|
|
|
}"
|
|
|
|
|
end
|
2020-09-21 20:39:54 +02:00
|
|
|
|
context "in the nominal case" do
|
|
|
|
|
it "should be returned" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossier: {
|
|
|
|
|
id: dossier.to_typed_id,
|
|
|
|
|
number: dossier.id,
|
|
|
|
|
usager: {
|
|
|
|
|
id: dossier.user.to_typed_id,
|
|
|
|
|
email: dossier.user.email
|
|
|
|
|
},
|
|
|
|
|
demandeur: {
|
|
|
|
|
id: dossier.etablissement.to_typed_id,
|
|
|
|
|
siret: dossier.etablissement.siret,
|
|
|
|
|
siegeSocial: dossier.etablissement.siege_social,
|
2020-09-22 09:26:46 +02:00
|
|
|
|
numeroVoie: dossier.etablissement.numero_voie.to_s,
|
|
|
|
|
typeVoie: dossier.etablissement.type_voie.to_s,
|
2020-09-21 20:39:54 +02:00
|
|
|
|
entreprise: {
|
|
|
|
|
siren: dossier.etablissement.entreprise_siren,
|
|
|
|
|
dateCreation: dossier.etablissement.entreprise_date_creation.iso8601,
|
|
|
|
|
capitalSocial: dossier.etablissement.entreprise_capital_social.to_s,
|
2020-09-22 10:17:54 +02:00
|
|
|
|
codeEffectifEntreprise: dossier.etablissement.entreprise_code_effectif_entreprise.to_s
|
2020-09-21 20:39:54 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-11-21 18:52:07 +01:00
|
|
|
|
|
2020-10-01 12:41:57 +02:00
|
|
|
|
context "with links" do
|
|
|
|
|
let(:dossier) { create(:dossier, :accepte, :with_attestation, procedure: procedure) }
|
|
|
|
|
let(:query) do
|
|
|
|
|
"{
|
|
|
|
|
dossier(number: #{dossier.id}) {
|
|
|
|
|
id
|
|
|
|
|
number
|
|
|
|
|
pdf {
|
|
|
|
|
url
|
|
|
|
|
}
|
|
|
|
|
geojson {
|
|
|
|
|
url
|
|
|
|
|
}
|
|
|
|
|
attestation {
|
|
|
|
|
url
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "urls should be returned" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data[:dossier][:pdf][:url]).not_to be_nil
|
|
|
|
|
expect(gql_data[:dossier][:geojson][:url]).not_to be_nil
|
|
|
|
|
expect(gql_data[:dossier][:attestation][:url]).not_to be_nil
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-09-21 20:39:54 +02:00
|
|
|
|
context "when there are missing data" do
|
|
|
|
|
before do
|
2020-09-22 09:26:46 +02:00
|
|
|
|
dossier.etablissement.update!(entreprise_code_effectif_entreprise: nil, entreprise_capital_social: nil,
|
|
|
|
|
numero_voie: nil, type_voie: nil)
|
2020-09-21 20:39:54 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should be returned" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossier: {
|
|
|
|
|
id: dossier.to_typed_id,
|
|
|
|
|
number: dossier.id,
|
|
|
|
|
usager: {
|
|
|
|
|
id: dossier.user.to_typed_id,
|
|
|
|
|
email: dossier.user.email
|
|
|
|
|
},
|
|
|
|
|
demandeur: {
|
|
|
|
|
id: dossier.etablissement.to_typed_id,
|
|
|
|
|
siret: dossier.etablissement.siret,
|
|
|
|
|
siegeSocial: dossier.etablissement.siege_social,
|
2020-09-22 09:26:46 +02:00
|
|
|
|
numeroVoie: nil,
|
|
|
|
|
typeVoie: nil,
|
2020-09-21 20:39:54 +02:00
|
|
|
|
entreprise: {
|
|
|
|
|
siren: dossier.etablissement.entreprise_siren,
|
|
|
|
|
dateCreation: dossier.etablissement.entreprise_date_creation.iso8601,
|
2020-09-21 21:16:58 +02:00
|
|
|
|
capitalSocial: '-1',
|
2020-09-22 09:30:28 +02:00
|
|
|
|
codeEffectifEntreprise: nil
|
2020-09-21 20:39:54 +02:00
|
|
|
|
}
|
2019-11-21 18:52:07 +01:00
|
|
|
|
}
|
2020-09-21 20:39:54 +02:00
|
|
|
|
})
|
|
|
|
|
end
|
2019-11-21 18:52:07 +01:00
|
|
|
|
end
|
2019-09-18 18:45:24 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2019-09-17 18:11:34 +02:00
|
|
|
|
|
2020-04-08 19:30:16 +02:00
|
|
|
|
context "groupeInstructeur" do
|
|
|
|
|
let(:groupe_instructeur) { procedure.groupe_instructeurs.first }
|
|
|
|
|
let(:query) do
|
|
|
|
|
"{
|
|
|
|
|
groupeInstructeur(number: #{groupe_instructeur.id}) {
|
|
|
|
|
id
|
|
|
|
|
number
|
|
|
|
|
label
|
|
|
|
|
dossiers {
|
|
|
|
|
nodes {
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should be returned" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(groupeInstructeur: {
|
|
|
|
|
id: groupe_instructeur.to_typed_id,
|
|
|
|
|
number: groupe_instructeur.id,
|
|
|
|
|
label: groupe_instructeur.label,
|
|
|
|
|
dossiers: {
|
|
|
|
|
nodes: dossiers.map { |dossier| { id: dossier.to_typed_id } }
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-09-17 18:11:34 +02:00
|
|
|
|
context "mutations" do
|
2019-11-12 15:51:51 +01:00
|
|
|
|
describe 'dossierEnvoyerMessage' do
|
|
|
|
|
context 'success' do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierEnvoyerMessage(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\",
|
2019-12-11 13:14:18 +01:00
|
|
|
|
body: \"Bonjour\",
|
|
|
|
|
attachment: \"#{blob.signed_id}\"
|
2019-11-12 15:51:51 +01:00
|
|
|
|
}) {
|
|
|
|
|
message {
|
|
|
|
|
body
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should post a message" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierEnvoyerMessage: {
|
|
|
|
|
message: {
|
|
|
|
|
body: "Bonjour"
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'schema error' do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierEnvoyerMessage(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\"
|
|
|
|
|
}) {
|
|
|
|
|
message {
|
|
|
|
|
body
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should fail" do
|
|
|
|
|
expect(gql_data).to eq(nil)
|
|
|
|
|
expect(gql_errors).not_to eq(nil)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'validation error' do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierEnvoyerMessage(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\",
|
|
|
|
|
body: \"\"
|
|
|
|
|
}) {
|
|
|
|
|
message {
|
|
|
|
|
body
|
|
|
|
|
}
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should fail" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossierEnvoyerMessage: {
|
|
|
|
|
errors: [{ message: "Votre message ne peut être vide" }],
|
|
|
|
|
message: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
2020-11-12 20:07:42 +01:00
|
|
|
|
|
|
|
|
|
context 'upload error' do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierEnvoyerMessage(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\",
|
|
|
|
|
body: \"Hello world\",
|
|
|
|
|
attachment: \"fake\"
|
|
|
|
|
}) {
|
|
|
|
|
message {
|
|
|
|
|
body
|
|
|
|
|
}
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should fail" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossierEnvoyerMessage: {
|
2020-12-10 21:55:45 +01:00
|
|
|
|
errors: [{ message: "L’identifiant du fichier téléversé est invalide" }],
|
2020-11-12 20:07:42 +01:00
|
|
|
|
message: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-11-12 15:51:51 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
describe 'dossierPasserEnInstruction' do
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier) { create(:dossier, :en_construction, :with_individual, procedure: procedure) }
|
2020-12-10 16:23:24 +01:00
|
|
|
|
let(:instructeur_id) { instructeur.to_typed_id }
|
2019-11-13 20:01:58 +01:00
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierPasserEnInstruction(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
2020-12-10 16:23:24 +01:00
|
|
|
|
instructeurId: \"#{instructeur_id}\"
|
2019-11-13 20:01:58 +01:00
|
|
|
|
}) {
|
|
|
|
|
dossier {
|
|
|
|
|
id
|
|
|
|
|
state
|
|
|
|
|
motivation
|
|
|
|
|
}
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'success' do
|
|
|
|
|
it "should passer en instruction dossier" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierPasserEnInstruction: {
|
|
|
|
|
dossier: {
|
|
|
|
|
id: dossier.to_typed_id,
|
|
|
|
|
state: "en_instruction",
|
|
|
|
|
motivation: nil
|
|
|
|
|
},
|
|
|
|
|
errors: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'validation error' do
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier) { create(:dossier, :en_instruction, :with_individual, procedure: procedure) }
|
2019-11-13 20:01:58 +01:00
|
|
|
|
|
|
|
|
|
it "should fail" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossierPasserEnInstruction: {
|
|
|
|
|
errors: [{ message: "Le dossier est déjà en instruction" }],
|
|
|
|
|
dossier: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
2020-12-10 16:23:24 +01:00
|
|
|
|
|
|
|
|
|
context 'instructeur error' do
|
|
|
|
|
let(:instructeur_id) { create(:instructeur).to_typed_id }
|
|
|
|
|
|
|
|
|
|
it "should fail" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossierPasserEnInstruction: {
|
|
|
|
|
errors: [{ message: 'L’instructeur n’a pas les droits d’accès à ce dossier' }],
|
|
|
|
|
dossier: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-11-13 20:01:58 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'dossierClasserSansSuite' do
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier) { create(:dossier, :en_instruction, :with_individual, procedure: procedure) }
|
2019-11-13 20:01:58 +01:00
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierClasserSansSuite(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\",
|
2019-12-11 13:14:18 +01:00
|
|
|
|
motivation: \"Parce que\",
|
|
|
|
|
justificatif: \"#{blob.signed_id}\"
|
2019-11-13 20:01:58 +01:00
|
|
|
|
}) {
|
|
|
|
|
dossier {
|
|
|
|
|
id
|
|
|
|
|
state
|
|
|
|
|
motivation
|
|
|
|
|
}
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'success' do
|
|
|
|
|
it "should classer sans suite dossier" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierClasserSansSuite: {
|
|
|
|
|
dossier: {
|
|
|
|
|
id: dossier.to_typed_id,
|
|
|
|
|
state: "sans_suite",
|
|
|
|
|
motivation: "Parce que"
|
|
|
|
|
},
|
|
|
|
|
errors: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'validation error' do
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier) { create(:dossier, :accepte, :with_individual, procedure: procedure) }
|
2019-11-13 20:01:58 +01:00
|
|
|
|
|
|
|
|
|
it "should fail" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossierClasserSansSuite: {
|
|
|
|
|
errors: [{ message: "Le dossier est déjà accepté" }],
|
|
|
|
|
dossier: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'dossierRefuser' do
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier) { create(:dossier, :en_instruction, :with_individual, procedure: procedure) }
|
2019-11-13 20:01:58 +01:00
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierRefuser(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\",
|
2019-12-11 13:14:18 +01:00
|
|
|
|
motivation: \"Parce que\",
|
|
|
|
|
justificatif: \"#{blob.signed_id}\"
|
2019-11-13 20:01:58 +01:00
|
|
|
|
}) {
|
|
|
|
|
dossier {
|
|
|
|
|
id
|
|
|
|
|
state
|
|
|
|
|
motivation
|
|
|
|
|
}
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'success' do
|
|
|
|
|
it "should refuser dossier" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierRefuser: {
|
|
|
|
|
dossier: {
|
|
|
|
|
id: dossier.to_typed_id,
|
|
|
|
|
state: "refuse",
|
|
|
|
|
motivation: "Parce que"
|
|
|
|
|
},
|
|
|
|
|
errors: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'validation error' do
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier) { create(:dossier, :sans_suite, :with_individual, procedure: procedure) }
|
2019-11-13 20:01:58 +01:00
|
|
|
|
|
|
|
|
|
it "should fail" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossierRefuser: {
|
2020-07-06 09:30:07 +02:00
|
|
|
|
errors: [{ message: "Le dossier est déjà classé sans suite" }],
|
2019-11-13 20:01:58 +01:00
|
|
|
|
dossier: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'dossierAccepter' do
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier) { create(:dossier, :en_instruction, :with_individual, procedure: procedure) }
|
2019-11-13 20:01:58 +01:00
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierAccepter(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\",
|
2019-12-11 13:14:18 +01:00
|
|
|
|
motivation: \"Parce que\",
|
|
|
|
|
justificatif: \"#{blob.signed_id}\"
|
2019-11-13 20:01:58 +01:00
|
|
|
|
}) {
|
|
|
|
|
dossier {
|
|
|
|
|
id
|
|
|
|
|
state
|
|
|
|
|
motivation
|
|
|
|
|
}
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'success' do
|
|
|
|
|
it "should accepter dossier" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierAccepter: {
|
|
|
|
|
dossier: {
|
|
|
|
|
id: dossier.to_typed_id,
|
|
|
|
|
state: "accepte",
|
|
|
|
|
motivation: "Parce que"
|
|
|
|
|
},
|
|
|
|
|
errors: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'success without motivation' do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierAccepter(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\"
|
|
|
|
|
}) {
|
|
|
|
|
dossier {
|
|
|
|
|
id
|
|
|
|
|
state
|
|
|
|
|
motivation
|
|
|
|
|
}
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should accepter dossier" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierAccepter: {
|
|
|
|
|
dossier: {
|
|
|
|
|
id: dossier.to_typed_id,
|
|
|
|
|
state: "accepte",
|
|
|
|
|
motivation: nil
|
|
|
|
|
},
|
|
|
|
|
errors: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'validation error' do
|
2020-01-07 17:47:22 +01:00
|
|
|
|
let(:dossier) { create(:dossier, :refuse, :with_individual, procedure: procedure) }
|
2019-11-13 20:01:58 +01:00
|
|
|
|
|
|
|
|
|
it "should fail" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
expect(gql_data).to eq(dossierAccepter: {
|
|
|
|
|
errors: [{ message: "Le dossier est déjà refusé" }],
|
|
|
|
|
dossier: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'createDirectUpload' do
|
2019-09-17 18:11:34 +02:00
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
createDirectUpload(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
2019-12-11 13:14:18 +01:00
|
|
|
|
filename: \"#{blob_info[:filename]}\",
|
|
|
|
|
byteSize: #{blob_info[:byte_size]},
|
|
|
|
|
checksum: \"#{blob_info[:checksum]}\",
|
|
|
|
|
contentType: \"#{blob_info[:content_type]}\"
|
2019-09-17 18:11:34 +02:00
|
|
|
|
}) {
|
|
|
|
|
directUpload {
|
|
|
|
|
url
|
|
|
|
|
headers
|
|
|
|
|
blobId
|
|
|
|
|
signedBlobId
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
2020-12-10 21:55:45 +01:00
|
|
|
|
let(:attach_query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierEnvoyerMessage(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\",
|
|
|
|
|
body: \"Hello world\",
|
|
|
|
|
attachment: \"#{direct_upload_blob_id}\"
|
|
|
|
|
}) {
|
|
|
|
|
message {
|
|
|
|
|
body
|
|
|
|
|
}
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
let(:attach_query_exec) { post :execute, params: { query: attach_query } }
|
|
|
|
|
let(:attach_query_body) { JSON.parse(attach_query_exec.body, symbolize_names: true) }
|
|
|
|
|
let(:attach_query_data) { attach_query_body[:data] }
|
|
|
|
|
let(:direct_upload_data) { gql_data[:createDirectUpload][:directUpload] }
|
|
|
|
|
let(:direct_upload_blob_id) { direct_upload_data[:signedBlobId] }
|
|
|
|
|
|
2019-09-17 18:11:34 +02:00
|
|
|
|
it "should initiate a direct upload" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
data = gql_data[:createDirectUpload][:directUpload]
|
|
|
|
|
expect(data[:url]).not_to be_nil
|
|
|
|
|
expect(data[:headers]).not_to be_nil
|
|
|
|
|
expect(data[:blobId]).not_to be_nil
|
|
|
|
|
expect(data[:signedBlobId]).not_to be_nil
|
|
|
|
|
end
|
2020-12-10 21:55:45 +01:00
|
|
|
|
|
|
|
|
|
it "wrong hash error" do
|
|
|
|
|
blob = ActiveStorage::Blob.find direct_upload_data[:blobId]
|
|
|
|
|
blob.service.upload blob.key, StringIO.new('toto')
|
|
|
|
|
expect(attach_query_data).to eq(dossierEnvoyerMessage: {
|
|
|
|
|
errors: [{ message: "Le hash du fichier téléversé est invalide" }],
|
|
|
|
|
message: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
2019-09-17 18:11:34 +02:00
|
|
|
|
end
|
2020-02-21 11:57:36 +01:00
|
|
|
|
|
|
|
|
|
describe 'dossierChangerGroupeInstructeur' do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierChangerGroupeInstructeur(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
groupeInstructeurId: \"#{dossier.groupe_instructeur.to_typed_id}\"
|
|
|
|
|
}) {
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "validation error" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierChangerGroupeInstructeur: {
|
|
|
|
|
errors: [{ message: "Le dossier est déjà avec le grope instructeur: 'défaut'" }]
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "should changer groupe instructeur" do
|
|
|
|
|
let!(:new_groupe_instructeur) { procedure.groupe_instructeurs.create(label: 'new groupe instructeur') }
|
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierChangerGroupeInstructeur(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
groupeInstructeurId: \"#{new_groupe_instructeur.to_typed_id}\"
|
|
|
|
|
}) {
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "change made" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierChangerGroupeInstructeur: {
|
|
|
|
|
errors: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2020-08-19 10:42:42 +02:00
|
|
|
|
|
|
|
|
|
describe 'dossierArchiver' do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierArchiver(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\"
|
|
|
|
|
}) {
|
|
|
|
|
dossier {
|
|
|
|
|
archived
|
|
|
|
|
}
|
|
|
|
|
errors {
|
|
|
|
|
message
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "validation error" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierArchiver: {
|
|
|
|
|
dossier: nil,
|
|
|
|
|
errors: [{ message: "Un dossier ne peut être archivé qu’une fois le traitement terminé" }]
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "should archive dossier" do
|
|
|
|
|
let(:dossier) { create(:dossier, :sans_suite, :with_individual, procedure: procedure) }
|
|
|
|
|
|
|
|
|
|
it "change made" do
|
|
|
|
|
expect(gql_errors).to eq(nil)
|
|
|
|
|
|
|
|
|
|
expect(gql_data).to eq(dossierArchiver: {
|
|
|
|
|
dossier: {
|
|
|
|
|
archived: true
|
|
|
|
|
},
|
|
|
|
|
errors: nil
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-09-17 18:11:34 +02:00
|
|
|
|
end
|
2019-09-18 18:45:24 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "when not authenticated" do
|
|
|
|
|
it "should return error" do
|
|
|
|
|
expect(gql_data).to eq(nil)
|
|
|
|
|
expect(gql_errors).not_to eq(nil)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "dossier" do
|
|
|
|
|
let(:query) { "{ dossier(number: #{dossier.id}) { id number usager { email } } }" }
|
|
|
|
|
|
|
|
|
|
it "should return error" do
|
|
|
|
|
expect(gql_data).to eq(nil)
|
|
|
|
|
expect(gql_errors).not_to eq(nil)
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-11-07 16:30:37 +01:00
|
|
|
|
|
|
|
|
|
context "mutation" do
|
|
|
|
|
let(:query) do
|
|
|
|
|
"mutation {
|
|
|
|
|
dossierEnvoyerMessage(input: {
|
|
|
|
|
dossierId: \"#{dossier.to_typed_id}\",
|
|
|
|
|
instructeurId: \"#{instructeur.to_typed_id}\",
|
|
|
|
|
body: \"Bonjour\"
|
|
|
|
|
}) {
|
|
|
|
|
message {
|
|
|
|
|
body
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should return error" do
|
|
|
|
|
expect(gql_data[:dossierEnvoyerMessage]).to eq(nil)
|
|
|
|
|
expect(gql_errors).not_to eq(nil)
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-09-18 18:45:24 +02:00
|
|
|
|
end
|
|
|
|
|
end
|