2015-09-21 17:59:03 +02:00
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
|
|
describe Procedure do
|
2017-05-29 14:44:38 +02:00
|
|
|
|
describe 'mail templates' do
|
2017-05-27 01:08:01 +02:00
|
|
|
|
subject { create(:procedure) }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.initiated_mail_template).to be_a(Mails::InitiatedMail) }
|
|
|
|
|
it { expect(subject.received_mail_template).to be_a(Mails::ReceivedMail) }
|
|
|
|
|
it { expect(subject.closed_mail_template).to be_a(Mails::ClosedMail) }
|
|
|
|
|
it { expect(subject.refused_mail_template).to be_a(Mails::RefusedMail) }
|
|
|
|
|
it { expect(subject.without_continuation_mail_template).to be_a(Mails::WithoutContinuationMail) }
|
2017-03-06 15:00:05 +01:00
|
|
|
|
end
|
|
|
|
|
|
2017-03-04 09:56:09 +01:00
|
|
|
|
describe 'initiated_mail' do
|
2017-12-22 21:37:08 +01:00
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
|
|
|
|
|
|
subject { procedure }
|
2017-03-04 09:56:09 +01:00
|
|
|
|
|
|
|
|
|
context 'when initiated_mail is not customize' do
|
2017-12-22 21:37:08 +01:00
|
|
|
|
it { expect(subject.initiated_mail_template.body).to eq(Mails::InitiatedMail.default_for_procedure(procedure).body) }
|
2017-03-04 09:56:09 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when initiated_mail is customize' do
|
|
|
|
|
before :each do
|
2017-03-06 22:37:37 +01:00
|
|
|
|
subject.initiated_mail = Mails::InitiatedMail.new(body: 'sisi')
|
2017-03-04 09:56:09 +01:00
|
|
|
|
subject.save
|
|
|
|
|
subject.reload
|
|
|
|
|
end
|
2017-05-27 01:08:01 +02:00
|
|
|
|
it { expect(subject.initiated_mail_template.body).to eq('sisi') }
|
2017-03-04 09:56:09 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when initiated_mail is customize ... again' do
|
|
|
|
|
before :each do
|
2017-03-06 22:37:37 +01:00
|
|
|
|
subject.initiated_mail = Mails::InitiatedMail.new(body: 'toto')
|
2017-03-04 09:56:09 +01:00
|
|
|
|
subject.save
|
|
|
|
|
subject.reload
|
|
|
|
|
end
|
2017-05-27 01:08:01 +02:00
|
|
|
|
it { expect(subject.initiated_mail_template.body).to eq('toto') }
|
2017-03-04 09:56:09 +01:00
|
|
|
|
|
2017-03-06 22:37:37 +01:00
|
|
|
|
it { expect(Mails::InitiatedMail.count).to eq(1) }
|
2017-03-04 09:56:09 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-03-16 19:39:48 +01:00
|
|
|
|
describe 'closed mail template body' do
|
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
|
|
|
|
|
|
subject { procedure.closed_mail_template.body }
|
|
|
|
|
|
|
|
|
|
context 'for procedures without an attestation' do
|
|
|
|
|
it { is_expected.not_to include('lien attestation') }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'for procedures with an attestation' do
|
|
|
|
|
before { create(:attestation_template, procedure: procedure, activated: activated) }
|
|
|
|
|
|
|
|
|
|
context 'when the attestation is inactive' do
|
|
|
|
|
let(:activated) { false }
|
|
|
|
|
|
|
|
|
|
it { is_expected.not_to include('lien attestation') }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the attestation is inactive' do
|
|
|
|
|
let(:activated) { true }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to include('lien attestation') }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-04-03 11:33:11 +02:00
|
|
|
|
describe '#closed_mail_template_attestation_inconsistency_state' do
|
|
|
|
|
let(:procedure_without_attestation) { create(:procedure, closed_mail: closed_mail) }
|
|
|
|
|
let(:procedure_with_active_attestation) do
|
|
|
|
|
procedure = create(:procedure, closed_mail: closed_mail)
|
|
|
|
|
create(:attestation_template, procedure: procedure, activated: true)
|
|
|
|
|
procedure
|
|
|
|
|
end
|
|
|
|
|
let(:procedure_with_inactive_attestation) do
|
|
|
|
|
procedure = create(:procedure, closed_mail: closed_mail)
|
|
|
|
|
create(:attestation_template, procedure: procedure, activated: false)
|
|
|
|
|
procedure
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
subject { procedure.closed_mail_template_attestation_inconsistency_state }
|
|
|
|
|
|
|
|
|
|
context 'with a custom mail template' do
|
|
|
|
|
context 'that contains a lien attestation tag' do
|
|
|
|
|
let(:closed_mail) { create(:closed_mail, body: '--lien attestation--') }
|
|
|
|
|
|
|
|
|
|
context 'when the procedure doesn’t have an attestation' do
|
|
|
|
|
let(:procedure) { procedure_without_attestation }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to eq(:extraneous_tag) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the procedure has an active attestation' do
|
|
|
|
|
let(:procedure) { procedure_with_active_attestation }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to be(nil) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the procedure has an inactive attestation' do
|
|
|
|
|
let(:procedure) { procedure_with_inactive_attestation }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to eq(:extraneous_tag) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'that doesn’t contain a lien attestation tag' do
|
|
|
|
|
let(:closed_mail) { create(:closed_mail) }
|
|
|
|
|
|
|
|
|
|
context 'when the procedure doesn’t have an attestation' do
|
|
|
|
|
let(:procedure) { procedure_without_attestation }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to be(nil) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the procedure has an active attestation' do
|
|
|
|
|
let(:procedure) { procedure_with_active_attestation }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to eq(:missing_tag) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the procedure has an inactive attestation' do
|
|
|
|
|
let(:procedure) { procedure_with_inactive_attestation }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to be(nil) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with the default mail template' do
|
|
|
|
|
let(:closed_mail) { nil }
|
|
|
|
|
|
|
|
|
|
context 'when the procedure doesn’t have an attestation' do
|
|
|
|
|
let(:procedure) { procedure_without_attestation }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to be(nil) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the procedure has an active attestation' do
|
|
|
|
|
let(:procedure) { procedure_with_active_attestation }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to be(nil) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the procedure has an inactive attestation' do
|
|
|
|
|
let(:procedure) { procedure_with_inactive_attestation }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to be(nil) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2015-09-22 11:21:52 +02:00
|
|
|
|
describe 'validation' do
|
|
|
|
|
context 'libelle' do
|
|
|
|
|
it { is_expected.not_to allow_value(nil).for(:libelle) }
|
|
|
|
|
it { is_expected.not_to allow_value('').for(:libelle) }
|
|
|
|
|
it { is_expected.to allow_value('Demande de subvention').for(:libelle) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'description' do
|
|
|
|
|
it { is_expected.not_to allow_value(nil).for(:description) }
|
|
|
|
|
it { is_expected.not_to allow_value('').for(:description) }
|
|
|
|
|
it { is_expected.to allow_value('Description Demande de subvention').for(:description) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'lien_demarche' do
|
2015-10-26 18:08:41 +01:00
|
|
|
|
it { is_expected.to allow_value(nil).for(:lien_demarche) }
|
|
|
|
|
it { is_expected.to allow_value('').for(:lien_demarche) }
|
2015-09-22 11:21:52 +02:00
|
|
|
|
it { is_expected.to allow_value('http://localhost').for(:lien_demarche) }
|
|
|
|
|
end
|
2017-11-23 11:37:41 +01:00
|
|
|
|
|
|
|
|
|
context 'organisation' do
|
|
|
|
|
it { is_expected.to allow_value('URRSAF').for(:organisation) }
|
|
|
|
|
end
|
2018-05-31 10:59:38 +02:00
|
|
|
|
|
|
|
|
|
context 'juridique' do
|
|
|
|
|
it { is_expected.not_to allow_value(nil).for(:cadre_juridique) }
|
|
|
|
|
it { is_expected.to allow_value('text').for(:cadre_juridique) }
|
|
|
|
|
|
|
|
|
|
context 'with deliberation' do
|
|
|
|
|
let(:procedure) { build(:procedure, cadre_juridique: nil) }
|
|
|
|
|
|
|
|
|
|
it { expect(procedure.valid?).to eq(false) }
|
|
|
|
|
|
|
|
|
|
context 'when the deliberation is uploaded ' do
|
|
|
|
|
before do
|
|
|
|
|
allow(procedure).to receive(:deliberation)
|
|
|
|
|
.and_return(double('attached?': true))
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(procedure.valid?).to eq(true) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-06-01 10:51:04 +02:00
|
|
|
|
|
|
|
|
|
context 'when juridique_required is false' do
|
|
|
|
|
let(:procedure) { build(:procedure, juridique_required: false, cadre_juridique: nil) }
|
|
|
|
|
|
|
|
|
|
it { expect(procedure.valid?).to eq(true) }
|
|
|
|
|
end
|
2018-05-24 23:29:33 +02:00
|
|
|
|
|
|
|
|
|
shared_examples 'duree de conservation' do
|
|
|
|
|
context 'duree_conservation_required it true, the field gets validated' do
|
|
|
|
|
before { subject.durees_conservation_required = true }
|
|
|
|
|
|
|
|
|
|
it { is_expected.not_to allow_value(nil).for(field_name) }
|
|
|
|
|
it { is_expected.not_to allow_value('').for(field_name) }
|
|
|
|
|
it { is_expected.not_to allow_value('trois').for(field_name) }
|
|
|
|
|
it { is_expected.to allow_value(3).for(field_name) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'duree_conservation_required is false, the field doesn’t get validated' do
|
|
|
|
|
before { subject.durees_conservation_required = false }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to allow_value(nil).for(field_name) }
|
|
|
|
|
it { is_expected.to allow_value('').for(field_name) }
|
|
|
|
|
it { is_expected.not_to allow_value('trois').for(field_name) }
|
|
|
|
|
it { is_expected.to allow_value(3).for(field_name) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'duree de conservation dans ds' do
|
|
|
|
|
let(:field_name) { :duree_conservation_dossiers_dans_ds }
|
|
|
|
|
|
|
|
|
|
it_behaves_like 'duree de conservation'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'duree de conservation hors ds' do
|
|
|
|
|
let(:field_name) { :duree_conservation_dossiers_hors_ds }
|
|
|
|
|
|
|
|
|
|
it_behaves_like 'duree de conservation'
|
|
|
|
|
end
|
2015-09-22 11:21:52 +02:00
|
|
|
|
end
|
2015-11-17 15:30:03 +01:00
|
|
|
|
|
2018-05-25 00:16:13 +02:00
|
|
|
|
describe '#duree_de_conservation_required' do
|
|
|
|
|
it 'automatically jumps to true once both durees de conservation have been set' do
|
|
|
|
|
p = build(
|
|
|
|
|
:procedure,
|
|
|
|
|
durees_conservation_required: false,
|
|
|
|
|
duree_conservation_dossiers_dans_ds: nil,
|
|
|
|
|
duree_conservation_dossiers_hors_ds: nil
|
|
|
|
|
)
|
|
|
|
|
p.save
|
|
|
|
|
expect(p.durees_conservation_required).to be_falsey
|
|
|
|
|
|
|
|
|
|
p.duree_conservation_dossiers_hors_ds = 3
|
|
|
|
|
p.save
|
|
|
|
|
expect(p.durees_conservation_required).to be_falsey
|
|
|
|
|
|
|
|
|
|
p.duree_conservation_dossiers_dans_ds = 6
|
|
|
|
|
p.save
|
|
|
|
|
expect(p.durees_conservation_required).to be_truthy
|
|
|
|
|
|
|
|
|
|
p.duree_conservation_dossiers_dans_ds = nil
|
|
|
|
|
p.save
|
|
|
|
|
expect(p.durees_conservation_required).to be_truthy
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2015-11-17 15:30:03 +01:00
|
|
|
|
describe '#types_de_champ_ordered' do
|
|
|
|
|
let(:procedure) { create(:procedure) }
|
2018-02-13 17:00:19 +01:00
|
|
|
|
let!(:type_de_champ_0) { create(:type_de_champ, procedure: procedure, order_place: 1) }
|
|
|
|
|
let!(:type_de_champ_1) { create(:type_de_champ, procedure: procedure, order_place: 0) }
|
2015-11-17 15:30:03 +01:00
|
|
|
|
subject { procedure.types_de_champ_ordered }
|
|
|
|
|
it { expect(subject.first).to eq(type_de_champ_1) }
|
|
|
|
|
it { expect(subject.last).to eq(type_de_champ_0) }
|
|
|
|
|
end
|
2015-11-19 11:37:01 +01:00
|
|
|
|
|
|
|
|
|
describe '#switch_types_de_champ' do
|
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
|
let(:index) { 0 }
|
2015-12-21 14:40:28 +01:00
|
|
|
|
subject { procedure.switch_types_de_champ index }
|
2015-11-19 11:37:01 +01:00
|
|
|
|
|
|
|
|
|
context 'when procedure have no types_de_champ' do
|
|
|
|
|
it { expect(subject).to eq(false) }
|
|
|
|
|
end
|
|
|
|
|
context 'when procedure have 2 types de champ' do
|
2018-02-13 17:00:19 +01:00
|
|
|
|
let!(:type_de_champ_0) { create(:type_de_champ, procedure: procedure, order_place: 0) }
|
|
|
|
|
let!(:type_de_champ_1) { create(:type_de_champ, procedure: procedure, order_place: 1) }
|
2015-11-19 11:37:01 +01:00
|
|
|
|
context 'when index is not the last element' do
|
|
|
|
|
it { expect(subject).to eq(true) }
|
|
|
|
|
it 'switch order place' do
|
|
|
|
|
procedure.switch_types_de_champ index
|
|
|
|
|
type_de_champ_0.reload
|
|
|
|
|
type_de_champ_1.reload
|
|
|
|
|
expect(type_de_champ_0.order_place).to eq(1)
|
|
|
|
|
expect(type_de_champ_1.order_place).to eq(0)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
context 'when index is the last element' do
|
|
|
|
|
let(:index) { 1 }
|
|
|
|
|
it { expect(subject).to eq(false) }
|
|
|
|
|
end
|
|
|
|
|
end
|
2015-12-21 14:40:28 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'locked?' do
|
2018-05-17 15:43:33 +02:00
|
|
|
|
let(:procedure) { create(:procedure, aasm_state: aasm_state) }
|
2015-12-21 14:40:28 +01:00
|
|
|
|
|
|
|
|
|
subject { procedure.locked? }
|
|
|
|
|
|
2018-05-17 15:43:33 +02:00
|
|
|
|
context 'when procedure is in brouillon status' do
|
|
|
|
|
let(:aasm_state) { :brouillon }
|
2015-12-21 14:40:28 +01:00
|
|
|
|
it { is_expected.to be_falsey }
|
|
|
|
|
end
|
|
|
|
|
|
2018-05-17 15:43:33 +02:00
|
|
|
|
context 'when procedure is in publiee status' do
|
|
|
|
|
let(:aasm_state) { :publiee }
|
2016-06-09 17:49:38 +02:00
|
|
|
|
it { is_expected.to be_truthy }
|
2015-12-21 14:40:28 +01:00
|
|
|
|
end
|
2016-06-09 17:49:38 +02:00
|
|
|
|
end
|
2015-12-21 14:40:28 +01:00
|
|
|
|
|
2016-06-09 17:49:38 +02:00
|
|
|
|
describe 'active' do
|
2018-05-16 17:21:12 +02:00
|
|
|
|
let(:procedure) { create(:procedure) }
|
2016-06-09 17:49:38 +02:00
|
|
|
|
subject { Procedure.active(procedure.id) }
|
2015-12-21 14:40:28 +01:00
|
|
|
|
|
2016-06-09 17:49:38 +02:00
|
|
|
|
context 'when procedure is in draft status and not archived' do
|
|
|
|
|
it { expect { subject }.to raise_error(ActiveRecord::RecordNotFound) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when procedure is published and not archived' do
|
2018-05-16 17:21:12 +02:00
|
|
|
|
let(:procedure) { create(:procedure, :published) }
|
2015-12-21 14:40:28 +01:00
|
|
|
|
it { is_expected.to be_truthy }
|
|
|
|
|
end
|
2016-06-09 17:49:38 +02:00
|
|
|
|
|
|
|
|
|
context 'when procedure is published and archived' do
|
2018-05-16 17:21:12 +02:00
|
|
|
|
let(:procedure) { create(:procedure, :archived) }
|
2016-06-09 17:49:38 +02:00
|
|
|
|
it { expect { subject }.to raise_error(ActiveRecord::RecordNotFound) }
|
|
|
|
|
end
|
2015-12-21 14:40:28 +01:00
|
|
|
|
end
|
2016-06-15 11:34:05 +02:00
|
|
|
|
|
|
|
|
|
describe 'clone' do
|
2018-04-23 16:29:32 +02:00
|
|
|
|
let!(:service) { create(:service) }
|
2018-05-28 14:58:40 +02:00
|
|
|
|
let(:procedure) { create(:procedure, received_mail: received_mail, service: service) }
|
2018-02-13 17:00:19 +01:00
|
|
|
|
let!(:type_de_champ_0) { create(:type_de_champ, procedure: procedure, order_place: 0) }
|
|
|
|
|
let!(:type_de_champ_1) { create(:type_de_champ, procedure: procedure, order_place: 1) }
|
2018-02-14 15:12:57 +01:00
|
|
|
|
let!(:type_de_champ_2) { create(:type_de_champ_drop_down_list, procedure: procedure, order_place: 2) }
|
2018-02-13 17:00:19 +01:00
|
|
|
|
let!(:type_de_champ_private_0) { create(:type_de_champ, :private, procedure: procedure, order_place: 0) }
|
|
|
|
|
let!(:type_de_champ_private_1) { create(:type_de_champ, :private, procedure: procedure, order_place: 1) }
|
2018-02-14 15:12:57 +01:00
|
|
|
|
let!(:type_de_champ_private_2) { create(:type_de_champ_drop_down_list, :private, procedure: procedure, order_place: 2) }
|
2016-06-15 11:34:05 +02:00
|
|
|
|
let!(:piece_justificative_0) { create(:type_de_piece_justificative, procedure: procedure, order_place: 0) }
|
|
|
|
|
let!(:piece_justificative_1) { create(:type_de_piece_justificative, procedure: procedure, order_place: 1) }
|
2017-03-07 18:19:48 +01:00
|
|
|
|
let(:received_mail){ create(:received_mail) }
|
2018-04-12 18:35:13 +02:00
|
|
|
|
let(:from_library) { false }
|
2016-09-01 10:43:49 +02:00
|
|
|
|
|
2017-06-08 14:16:48 +02:00
|
|
|
|
before do
|
|
|
|
|
@logo = File.open('spec/fixtures/white.png')
|
|
|
|
|
@signature = File.open('spec/fixtures/black.png')
|
|
|
|
|
@attestation_template = create(:attestation_template, procedure: procedure, logo: @logo, signature: @signature)
|
2018-04-12 18:35:13 +02:00
|
|
|
|
@procedure = procedure.clone(procedure.administrateur, from_library)
|
2018-01-08 15:42:38 +01:00
|
|
|
|
@procedure.save
|
2017-06-08 14:16:48 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
after do
|
|
|
|
|
@logo.close
|
|
|
|
|
@signature.close
|
|
|
|
|
end
|
|
|
|
|
|
2018-01-08 15:42:38 +01:00
|
|
|
|
subject { @procedure }
|
2016-06-15 11:34:05 +02:00
|
|
|
|
|
2018-04-24 15:23:07 +02:00
|
|
|
|
it { expect(subject.parent_procedure).to eq(procedure) }
|
|
|
|
|
|
2016-06-15 11:34:05 +02:00
|
|
|
|
it 'should duplicate specific objects with different id' do
|
|
|
|
|
expect(subject.id).not_to eq(procedure.id)
|
|
|
|
|
expect(subject.module_api_carto).to have_same_attributes_as(procedure.module_api_carto)
|
|
|
|
|
|
2016-09-09 17:39:56 +02:00
|
|
|
|
expect(subject.types_de_piece_justificative.size).to eq procedure.types_de_piece_justificative.size
|
|
|
|
|
expect(subject.types_de_champ.size).to eq procedure.types_de_champ.size
|
|
|
|
|
expect(subject.types_de_champ_private.size).to eq procedure.types_de_champ_private.size
|
2017-06-26 17:18:47 +02:00
|
|
|
|
expect(subject.types_de_champ.map(&:drop_down_list).compact.size).to eq procedure.types_de_champ.map(&:drop_down_list).compact.size
|
|
|
|
|
expect(subject.types_de_champ_private.map(&:drop_down_list).compact.size).to eq procedure.types_de_champ_private.map(&:drop_down_list).compact.size
|
2016-09-01 10:43:49 +02:00
|
|
|
|
|
2016-06-15 11:34:05 +02:00
|
|
|
|
subject.types_de_champ.zip(procedure.types_de_champ).each do |stc, ptc|
|
|
|
|
|
expect(stc).to have_same_attributes_as(ptc)
|
|
|
|
|
end
|
|
|
|
|
|
2016-09-09 17:39:56 +02:00
|
|
|
|
subject.types_de_champ_private.zip(procedure.types_de_champ_private).each do |stc, ptc|
|
|
|
|
|
expect(stc).to have_same_attributes_as(ptc)
|
|
|
|
|
end
|
|
|
|
|
|
2016-06-15 11:34:05 +02:00
|
|
|
|
subject.types_de_piece_justificative.zip(procedure.types_de_piece_justificative).each do |stc, ptc|
|
|
|
|
|
expect(stc).to have_same_attributes_as(ptc)
|
|
|
|
|
end
|
2017-06-08 14:16:48 +02:00
|
|
|
|
|
|
|
|
|
expect(subject.attestation_template.title).to eq(procedure.attestation_template.title)
|
2018-04-12 18:35:13 +02:00
|
|
|
|
|
|
|
|
|
expect(subject.cloned_from_library).to be(false)
|
2018-04-24 15:23:07 +02:00
|
|
|
|
|
|
|
|
|
cloned_procedure = subject
|
|
|
|
|
cloned_procedure.parent_procedure_id = nil
|
|
|
|
|
expect(cloned_procedure).to have_same_attributes_as(procedure)
|
2018-04-12 18:35:13 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the procedure is clone from the library' do
|
|
|
|
|
let(:from_library) { true }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.cloned_from_library).to be(true) }
|
2017-03-07 18:19:48 +01:00
|
|
|
|
end
|
|
|
|
|
|
2018-04-23 16:29:32 +02:00
|
|
|
|
it 'should keep service_id' do
|
|
|
|
|
expect(subject.service).to eq(service)
|
|
|
|
|
end
|
|
|
|
|
|
2017-03-07 18:19:48 +01:00
|
|
|
|
it 'should duplicate existing mail_templates' do
|
|
|
|
|
expect(subject.received_mail.attributes.except("id", "procedure_id", "created_at", "updated_at")).to eq procedure.received_mail.attributes.except("id", "procedure_id", "created_at", "updated_at")
|
|
|
|
|
expect(subject.received_mail.id).not_to eq procedure.received_mail.id
|
|
|
|
|
expect(subject.received_mail.id).not_to be nil
|
|
|
|
|
expect(subject.received_mail.procedure_id).not_to eq procedure.received_mail.procedure_id
|
|
|
|
|
expect(subject.received_mail.procedure_id).not_to be nil
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'should not duplicate default mail_template' do
|
2017-12-22 21:37:08 +01:00
|
|
|
|
expect(subject.initiated_mail_template.attributes).to eq Mails::InitiatedMail.default_for_procedure(subject).attributes
|
2016-06-15 11:34:05 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'should not duplicate specific related objects' do
|
|
|
|
|
expect(subject.dossiers).to eq([])
|
|
|
|
|
expect(subject.gestionnaires).to eq([])
|
|
|
|
|
expect(subject.assign_to).to eq([])
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'procedure status is reset' do
|
2018-05-28 14:58:40 +02:00
|
|
|
|
let(:procedure) { create(:procedure, :archived, received_mail: received_mail, service: service) }
|
|
|
|
|
|
2016-06-24 16:41:44 +02:00
|
|
|
|
it 'Not published nor archived' do
|
2017-07-10 23:42:33 +02:00
|
|
|
|
expect(subject.archived_at).to be_nil
|
2017-07-11 14:21:10 +02:00
|
|
|
|
expect(subject.published_at).to be_nil
|
2018-05-28 14:58:40 +02:00
|
|
|
|
expect(subject.test_started_at).to be_nil
|
|
|
|
|
expect(subject.aasm_state).to eq "brouillon"
|
2016-06-24 16:41:44 +02:00
|
|
|
|
expect(subject.path).to be_nil
|
2016-06-15 11:34:05 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2016-06-24 16:41:44 +02:00
|
|
|
|
|
2017-06-27 13:48:27 +02:00
|
|
|
|
describe '#publish!' do
|
|
|
|
|
let(:procedure) { create(:procedure) }
|
2017-07-04 15:36:35 +02:00
|
|
|
|
let(:now) { Time.now.beginning_of_minute }
|
2017-06-27 13:48:27 +02:00
|
|
|
|
|
|
|
|
|
before do
|
2017-07-04 15:36:35 +02:00
|
|
|
|
Timecop.freeze(now)
|
2017-06-27 17:05:49 +02:00
|
|
|
|
procedure.publish!("example-path")
|
2017-06-27 13:48:27 +02:00
|
|
|
|
end
|
2017-11-29 16:07:39 +01:00
|
|
|
|
after { Timecop.return }
|
2017-06-27 13:48:27 +02:00
|
|
|
|
|
2017-07-10 23:42:33 +02:00
|
|
|
|
it { expect(procedure.archived_at).to eq(nil) }
|
2017-07-04 15:36:35 +02:00
|
|
|
|
it { expect(procedure.published_at).to eq(now) }
|
2018-03-06 13:44:29 +01:00
|
|
|
|
it { expect(ProcedurePath.find_by(path: "example-path")).to be }
|
|
|
|
|
it { expect(ProcedurePath.find_by(path: "example-path").procedure).to eq(procedure) }
|
|
|
|
|
it { expect(ProcedurePath.find_by(path: "example-path").administrateur).to eq(procedure.administrateur) }
|
2017-06-27 13:48:27 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-07-13 15:21:52 +02:00
|
|
|
|
describe "#brouillon?" do
|
|
|
|
|
let(:procedure_brouillon) { Procedure.new() }
|
2018-05-17 15:43:33 +02:00
|
|
|
|
let(:procedure_publiee) { Procedure.new(aasm_state: :publiee, published_at: Time.now) }
|
|
|
|
|
let(:procedure_archivee) { Procedure.new(aasm_state: :archivee, published_at: Time.now, archived_at: Time.now) }
|
2017-07-13 15:21:52 +02:00
|
|
|
|
|
|
|
|
|
it { expect(procedure_brouillon.brouillon?).to be_truthy }
|
|
|
|
|
it { expect(procedure_publiee.brouillon?).to be_falsey }
|
|
|
|
|
it { expect(procedure_archivee.brouillon?).to be_falsey }
|
|
|
|
|
end
|
|
|
|
|
|
2017-07-13 15:14:28 +02:00
|
|
|
|
describe "#publiee?" do
|
|
|
|
|
let(:procedure_brouillon) { Procedure.new() }
|
2018-05-17 15:43:33 +02:00
|
|
|
|
let(:procedure_publiee) { Procedure.new(aasm_state: :publiee, published_at: Time.now) }
|
|
|
|
|
let(:procedure_archivee) { Procedure.new(aasm_state: :archivee, published_at: Time.now, archived_at: Time.now) }
|
2017-07-13 15:14:28 +02:00
|
|
|
|
|
|
|
|
|
it { expect(procedure_brouillon.publiee?).to be_falsey }
|
|
|
|
|
it { expect(procedure_publiee.publiee?).to be_truthy }
|
|
|
|
|
it { expect(procedure_archivee.publiee?).to be_falsey }
|
|
|
|
|
end
|
|
|
|
|
|
2017-07-13 15:09:25 +02:00
|
|
|
|
describe "#archivee?" do
|
|
|
|
|
let(:procedure_brouillon) { Procedure.new() }
|
2018-05-17 15:43:33 +02:00
|
|
|
|
let(:procedure_publiee) { Procedure.new(aasm_state: :publiee, published_at: Time.now) }
|
|
|
|
|
let(:procedure_archivee) { Procedure.new(aasm_state: :archivee, published_at: Time.now, archived_at: Time.now) }
|
2017-07-13 15:09:25 +02:00
|
|
|
|
|
|
|
|
|
it { expect(procedure_brouillon.archivee?).to be_falsey }
|
|
|
|
|
it { expect(procedure_publiee.archivee?).to be_falsey }
|
|
|
|
|
it { expect(procedure_archivee.archivee?).to be_truthy }
|
2017-07-13 15:20:24 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe "#publiee_ou_archivee?" do
|
|
|
|
|
let(:procedure_brouillon) { Procedure.new() }
|
2018-05-17 15:43:33 +02:00
|
|
|
|
let(:procedure_publiee) { Procedure.new(aasm_state: :publiee, published_at: Time.now) }
|
|
|
|
|
let(:procedure_archivee) { Procedure.new(aasm_state: :archivee, published_at: Time.now, archived_at: Time.now) }
|
2017-07-13 15:20:24 +02:00
|
|
|
|
|
|
|
|
|
it { expect(procedure_brouillon.publiee_ou_archivee?).to be_falsey }
|
|
|
|
|
it { expect(procedure_publiee.publiee_ou_archivee?).to be_truthy }
|
|
|
|
|
it { expect(procedure_archivee.publiee_ou_archivee?).to be_truthy }
|
2017-07-13 15:09:25 +02:00
|
|
|
|
end
|
|
|
|
|
|
2016-06-24 16:41:44 +02:00
|
|
|
|
describe 'archive' do
|
|
|
|
|
let(:procedure) { create(:procedure, :published) }
|
|
|
|
|
let(:procedure_path) { ProcedurePath.find(procedure.procedure_path.id) }
|
2017-07-04 15:36:35 +02:00
|
|
|
|
let(:now) { Time.now.beginning_of_minute }
|
2016-06-24 16:41:44 +02:00
|
|
|
|
before do
|
2017-07-04 15:36:35 +02:00
|
|
|
|
Timecop.freeze(now)
|
2018-05-17 15:43:33 +02:00
|
|
|
|
procedure.archive!
|
2016-06-24 16:41:44 +02:00
|
|
|
|
procedure.reload
|
|
|
|
|
end
|
2017-11-29 16:07:39 +01:00
|
|
|
|
after { Timecop.return }
|
2016-06-24 16:41:44 +02:00
|
|
|
|
|
2017-07-13 15:09:25 +02:00
|
|
|
|
it { expect(procedure.archivee?).to be_truthy }
|
2017-07-04 15:36:35 +02:00
|
|
|
|
it { expect(procedure.archived_at).to eq(now) }
|
2016-06-24 16:41:44 +02:00
|
|
|
|
end
|
2016-07-22 15:06:30 +02:00
|
|
|
|
|
|
|
|
|
describe 'total_dossier' do
|
|
|
|
|
let(:procedure) { create :procedure }
|
|
|
|
|
|
|
|
|
|
before do
|
2017-12-14 15:51:45 +01:00
|
|
|
|
create :dossier, procedure: procedure, state: :en_construction
|
2017-12-04 16:17:15 +01:00
|
|
|
|
create :dossier, procedure: procedure, state: :brouillon
|
2017-12-14 15:51:45 +01:00
|
|
|
|
create :dossier, procedure: procedure, state: :en_construction
|
2016-07-22 15:06:30 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
subject { procedure.total_dossier }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to eq 2 }
|
|
|
|
|
end
|
2017-04-05 11:34:16 +02:00
|
|
|
|
|
|
|
|
|
describe '#generate_export' do
|
|
|
|
|
let(:procedure) { create :procedure }
|
|
|
|
|
subject { procedure.generate_export }
|
|
|
|
|
|
2017-04-12 17:59:12 +02:00
|
|
|
|
shared_examples "export is empty" do
|
|
|
|
|
it { expect(subject[:data]).to eq([[]]) }
|
2017-04-05 11:34:16 +02:00
|
|
|
|
it { expect(subject[:headers]).to eq([]) }
|
|
|
|
|
end
|
|
|
|
|
|
2017-04-12 17:59:12 +02:00
|
|
|
|
context 'when there are no dossiers' do
|
|
|
|
|
it_behaves_like "export is empty"
|
|
|
|
|
end
|
|
|
|
|
|
2017-04-05 11:34:16 +02:00
|
|
|
|
context 'when there are some dossiers' do
|
2017-12-14 15:51:45 +01:00
|
|
|
|
let!(:dossier){ create(:dossier, procedure: procedure, state: 'en_construction') }
|
2017-12-04 18:00:12 +01:00
|
|
|
|
let!(:dossier2){ create(:dossier, procedure: procedure, state: 'accepte') }
|
2017-04-05 11:34:16 +02:00
|
|
|
|
|
|
|
|
|
it { expect(subject[:data].size).to eq(2) }
|
|
|
|
|
it { expect(subject[:headers]).to eq(dossier.export_headers) }
|
2017-07-19 15:40:26 +02:00
|
|
|
|
|
|
|
|
|
context 'with ordered champs' do
|
2018-02-13 17:00:19 +01:00
|
|
|
|
let(:tc_2) { create(:type_de_champ, order_place: 2) }
|
|
|
|
|
let(:tc_1) { create(:type_de_champ, order_place: 1) }
|
|
|
|
|
let(:tcp_2) { create(:type_de_champ, :private, order_place: 2) }
|
|
|
|
|
let(:tcp_1) { create(:type_de_champ, :private, order_place: 1) }
|
2017-07-19 15:40:26 +02:00
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
procedure.types_de_champ << tc_2 << tc_1
|
|
|
|
|
procedure.types_de_champ_private << tcp_2 << tcp_1
|
|
|
|
|
|
|
|
|
|
dossier.build_default_champs
|
2018-03-02 16:27:03 +01:00
|
|
|
|
dossier.champs.find_by(type_de_champ: tc_1).update(value: "value 1")
|
|
|
|
|
dossier.champs.find_by(type_de_champ: tc_2).update(value: "value 2")
|
|
|
|
|
dossier.champs_private.find_by(type_de_champ: tcp_1).update(value: "private value 1")
|
|
|
|
|
dossier.champs_private.find_by(type_de_champ: tcp_2).update(value: "private value 2")
|
2017-07-19 15:40:26 +02:00
|
|
|
|
|
|
|
|
|
dossier2.build_default_champs
|
2018-03-02 16:27:03 +01:00
|
|
|
|
dossier2.champs.find_by(type_de_champ: tc_1).update(value: "value 1")
|
|
|
|
|
dossier2.champs.find_by(type_de_champ: tc_2).update(value: "value 2")
|
|
|
|
|
dossier2.champs_private.find_by(type_de_champ: tcp_1).update(value: "private value 1")
|
|
|
|
|
dossier2.champs_private.find_by(type_de_champ: tcp_2).update(value: "private value 2")
|
2017-07-19 15:40:26 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(subject[:headers].index(tc_1.libelle.parameterize.underscore.to_sym)).to be < subject[:headers].index(tc_2.libelle.parameterize.underscore.to_sym) }
|
|
|
|
|
it { expect(subject[:headers].index(tcp_1.libelle.parameterize.underscore.to_sym)).to be < subject[:headers].index(tcp_2.libelle.parameterize.underscore.to_sym) }
|
|
|
|
|
|
|
|
|
|
it { expect(subject[:data][0].index("value 1")).to be < subject[:data].first.index("value 2") }
|
|
|
|
|
it { expect(subject[:data][0].index("private value 1")).to be < subject[:data].first.index("private value 2") }
|
|
|
|
|
|
|
|
|
|
it { expect(subject[:data][1].index("value 1")).to be < subject[:data].first.index("value 2") }
|
|
|
|
|
it { expect(subject[:data][1].index("private value 1")).to be < subject[:data].first.index("private value 2") }
|
|
|
|
|
end
|
2017-04-05 11:34:16 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-12-04 16:17:15 +01:00
|
|
|
|
context 'when there is a brouillon dossier' do
|
|
|
|
|
let!(:dossier_not_exportable){ create(:dossier, procedure: procedure, state: 'brouillon') }
|
2017-04-05 11:34:16 +02:00
|
|
|
|
|
2017-04-12 17:59:12 +02:00
|
|
|
|
it_behaves_like "export is empty"
|
2017-04-05 11:34:16 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2017-04-14 11:34:53 +02:00
|
|
|
|
|
|
|
|
|
describe '#default_path' do
|
|
|
|
|
let(:procedure){ create(:procedure, libelle: 'A long libelle with àccênts, blabla coucou hello un deux trois voila') }
|
|
|
|
|
|
|
|
|
|
subject { procedure.default_path }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to eq('a-long-libelle-with-accents-blabla-coucou-hello-un') }
|
|
|
|
|
end
|
2017-06-27 14:22:43 +02:00
|
|
|
|
|
|
|
|
|
describe ".default_scope" do
|
|
|
|
|
let!(:procedure) { create(:procedure, hidden_at: hidden_at) }
|
|
|
|
|
|
|
|
|
|
context "when hidden_at is nil" do
|
|
|
|
|
let(:hidden_at) { nil }
|
|
|
|
|
|
|
|
|
|
it { expect(Procedure.count).to eq(1) }
|
|
|
|
|
it { expect(Procedure.all).to include(procedure) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "when hidden_at is not nil" do
|
|
|
|
|
let(:hidden_at) { 2.days.ago }
|
|
|
|
|
|
|
|
|
|
it { expect(Procedure.count).to eq(0) }
|
|
|
|
|
it { expect { Procedure.find(procedure.id) }.to raise_error(ActiveRecord::RecordNotFound) }
|
|
|
|
|
end
|
|
|
|
|
end
|
2017-06-27 15:26:40 +02:00
|
|
|
|
|
|
|
|
|
describe "#hide!" do
|
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
|
let!(:dossier) { create(:dossier, procedure: procedure) }
|
|
|
|
|
let!(:dossier2) { create(:dossier, procedure: procedure) }
|
2017-09-25 18:36:14 +02:00
|
|
|
|
let(:gestionnaire) { create(:gestionnaire) }
|
2017-06-27 15:26:40 +02:00
|
|
|
|
|
|
|
|
|
it { expect(Dossier.count).to eq(2) }
|
|
|
|
|
it { expect(Dossier.all).to include(dossier, dossier2) }
|
|
|
|
|
|
|
|
|
|
context "when hidding procedure" do
|
|
|
|
|
before do
|
2017-09-25 18:36:14 +02:00
|
|
|
|
gestionnaire.followed_dossiers << dossier
|
2017-06-27 15:26:40 +02:00
|
|
|
|
procedure.hide!
|
2017-09-25 18:36:14 +02:00
|
|
|
|
gestionnaire.reload
|
2017-06-27 15:26:40 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(procedure.dossiers.count).to eq(0) }
|
|
|
|
|
it { expect(Dossier.count).to eq(0) }
|
2017-09-25 18:36:14 +02:00
|
|
|
|
it { expect(gestionnaire.followed_dossiers).not_to include(dossier) }
|
2017-06-27 15:26:40 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2017-10-02 17:03:38 +02:00
|
|
|
|
|
|
|
|
|
describe "#fields" do
|
2017-10-03 15:08:51 +02:00
|
|
|
|
subject { create(:procedure, :with_type_de_champ, :with_type_de_champ_private, :types_de_champ_count => 4, :types_de_champ_private_count => 4) }
|
|
|
|
|
let(:tdc_1) { subject.types_de_champ[0] }
|
|
|
|
|
let(:tdc_2) { subject.types_de_champ[1] }
|
|
|
|
|
let(:tdc_private_1) { subject.types_de_champ_private[0] }
|
|
|
|
|
let(:tdc_private_2) { subject.types_de_champ_private[1] }
|
2017-10-02 17:03:38 +02:00
|
|
|
|
let(:expected) {
|
|
|
|
|
[
|
|
|
|
|
{ "label" => 'Créé le', "table" => 'self', "column" => 'created_at' },
|
|
|
|
|
{ "label" => 'Mis à jour le', "table" => 'self', "column" => 'updated_at' },
|
|
|
|
|
{ "label" => 'Demandeur', "table" => 'user', "column" => 'email' },
|
|
|
|
|
{ "label" => 'Civilité (FC)', "table" => 'france_connect_information', "column" => 'gender' },
|
|
|
|
|
{ "label" => 'Prénom (FC)', "table" => 'france_connect_information', "column" => 'given_name' },
|
|
|
|
|
{ "label" => 'Nom (FC)', "table" => 'france_connect_information', "column" => 'family_name' },
|
2018-04-23 11:57:38 +02:00
|
|
|
|
{ "label" => 'SIREN', "table" => 'etablissement', "column" => 'entreprise_siren' },
|
|
|
|
|
{ "label" => 'Forme juridique', "table" => 'etablissement', "column" => 'entreprise_forme_juridique' },
|
|
|
|
|
{ "label" => 'Nom commercial', "table" => 'etablissement', "column" => 'entreprise_nom_commercial' },
|
|
|
|
|
{ "label" => 'Raison sociale', "table" => 'etablissement', "column" => 'entreprise_raison_sociale' },
|
|
|
|
|
{ "label" => 'SIRET siège social', "table" => 'etablissement', "column" => 'entreprise_siret_siege_social' },
|
|
|
|
|
{ "label" => 'Date de création', "table" => 'etablissement', "column" => 'entreprise_date_creation' },
|
2017-10-02 17:03:38 +02:00
|
|
|
|
{ "label" => 'SIRET', "table" => 'etablissement', "column" => 'siret' },
|
2017-12-06 17:34:03 +01:00
|
|
|
|
{ "label" => 'Libellé NAF', "table" => 'etablissement', "column" => 'libelle_naf' },
|
2017-10-02 17:03:38 +02:00
|
|
|
|
{ "label" => 'Code postal', "table" => 'etablissement', "column" => 'code_postal' },
|
|
|
|
|
{ "label" => tdc_1.libelle, "table" => 'type_de_champ', "column" => tdc_1.id.to_s },
|
|
|
|
|
{ "label" => tdc_2.libelle, "table" => 'type_de_champ', "column" => tdc_2.id.to_s },
|
|
|
|
|
{ "label" => tdc_private_1.libelle, "table" => 'type_de_champ_private', "column" => tdc_private_1.id.to_s },
|
|
|
|
|
{ "label" => tdc_private_2.libelle, "table" => 'type_de_champ_private', "column" => tdc_private_2.id.to_s }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-03 15:08:51 +02:00
|
|
|
|
before do
|
|
|
|
|
subject.types_de_champ[2].update_attribute(:type_champ, 'header_section')
|
|
|
|
|
subject.types_de_champ[3].update_attribute(:type_champ, 'explication')
|
|
|
|
|
subject.types_de_champ_private[2].update_attribute(:type_champ, 'header_section')
|
|
|
|
|
subject.types_de_champ_private[3].update_attribute(:type_champ, 'explication')
|
|
|
|
|
end
|
|
|
|
|
|
2017-10-02 17:03:38 +02:00
|
|
|
|
it { expect(subject.fields).to eq(expected) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe "#fields_for_select" do
|
|
|
|
|
subject { create(:procedure) }
|
|
|
|
|
|
|
|
|
|
before do
|
2018-01-15 14:42:48 +01:00
|
|
|
|
allow(subject).to receive(:fields).and_return([
|
|
|
|
|
{
|
|
|
|
|
"label" => "label1",
|
|
|
|
|
"table" => "table1",
|
|
|
|
|
"column" => "column1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label" => "label2",
|
|
|
|
|
"table" => "table2",
|
|
|
|
|
"column" => "column2"
|
|
|
|
|
}
|
|
|
|
|
])
|
2017-10-02 17:03:38 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(subject.fields_for_select).to eq([["label1", "table1/column1"], ["label2", "table2/column2"]]) }
|
|
|
|
|
end
|
2017-09-27 15:16:07 +02:00
|
|
|
|
|
|
|
|
|
describe ".default_sort" do
|
|
|
|
|
it { expect(Procedure.default_sort).to eq("{\"table\":\"self\",\"column\":\"id\",\"order\":\"desc\"}") }
|
|
|
|
|
end
|
2018-03-16 12:00:01 +01:00
|
|
|
|
|
2018-03-20 16:00:30 +01:00
|
|
|
|
describe "#export_filename" do
|
2018-03-16 12:00:01 +01:00
|
|
|
|
before { Timecop.freeze(Time.new(2018, 1, 2, 23, 11, 14)) }
|
|
|
|
|
|
|
|
|
|
subject { procedure.export_filename }
|
|
|
|
|
|
|
|
|
|
context "with a path" do
|
|
|
|
|
let(:procedure) { create(:procedure, :published) }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to eq("dossiers_#{procedure.procedure_path.path}_2018-01-02_23-11") }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "without a path" do
|
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to eq("dossiers_procedure-#{procedure.id}_2018-01-02_23-11") }
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-04-13 16:11:37 +02:00
|
|
|
|
|
|
|
|
|
describe '#new_dossier' do
|
|
|
|
|
let(:procedure) do
|
|
|
|
|
procedure = create(:procedure)
|
|
|
|
|
|
|
|
|
|
create(:type_de_champ_text, procedure: procedure, order_place: 1)
|
|
|
|
|
create(:type_de_champ_number, procedure: procedure, order_place: 2)
|
|
|
|
|
create(:type_de_champ_textarea, :private, procedure: procedure)
|
|
|
|
|
|
|
|
|
|
procedure
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
let(:dossier) { procedure.new_dossier }
|
|
|
|
|
|
|
|
|
|
it { expect(dossier.procedure).to eq(procedure) }
|
|
|
|
|
|
|
|
|
|
it { expect(dossier.champs.size).to eq(2) }
|
|
|
|
|
it { expect(dossier.champs[0].type).to eq("Champs::TextChamp") }
|
|
|
|
|
|
|
|
|
|
it { expect(dossier.champs_private.size).to eq(1) }
|
|
|
|
|
it { expect(dossier.champs_private[0].type).to eq("Champs::TextareaChamp") }
|
|
|
|
|
|
|
|
|
|
it { expect(Champ.count).to eq(0) }
|
|
|
|
|
end
|
2018-06-01 11:06:12 +02:00
|
|
|
|
|
2018-07-03 20:18:49 +02:00
|
|
|
|
describe "#organisation_name" do
|
|
|
|
|
subject { procedure.organisation_name }
|
|
|
|
|
context 'when the procedure has a service (and no organization)' do
|
|
|
|
|
let(:procedure) { create(:procedure, :with_service, organisation: nil) }
|
|
|
|
|
it { is_expected.to eq procedure.service.nom }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the procedure has an organization (and no service)' do
|
|
|
|
|
let(:procedure) { create(:procedure, organisation: 'DDT des Vosges', service: nil) }
|
|
|
|
|
it { is_expected.to eq procedure.organisation }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-06-01 11:06:12 +02:00
|
|
|
|
describe '#juridique_required' do
|
|
|
|
|
it 'automatically jumps to true once cadre_juridique or deliberation have been set' do
|
|
|
|
|
p = create(
|
|
|
|
|
:procedure,
|
|
|
|
|
juridique_required: false,
|
|
|
|
|
cadre_juridique: nil,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
expect(p.juridique_required).to be_falsey
|
|
|
|
|
|
|
|
|
|
p.update(cadre_juridique: 'cadre')
|
|
|
|
|
expect(p.juridique_required).to be_truthy
|
|
|
|
|
|
|
|
|
|
p.update(cadre_juridique: nil)
|
|
|
|
|
expect(p.juridique_required).to be_truthy
|
|
|
|
|
|
|
|
|
|
p.update_columns(cadre_juridique: nil, juridique_required: false)
|
|
|
|
|
p.reload
|
|
|
|
|
expect(p.juridique_required).to be_falsey
|
|
|
|
|
|
|
|
|
|
allow(p).to receive(:deliberation).and_return(double('attached?': true))
|
|
|
|
|
p.save
|
|
|
|
|
expect(p.juridique_required).to be_truthy
|
|
|
|
|
end
|
|
|
|
|
end
|
2015-09-21 17:59:03 +02:00
|
|
|
|
end
|