2015-08-13 15:55:19 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Dossier do
|
2015-08-17 11:13:21 +02:00
|
|
|
describe 'database columns' do
|
|
|
|
it { is_expected.to have_db_column(:description) }
|
|
|
|
it { is_expected.to have_db_column(:autorisation_donnees) }
|
|
|
|
it { is_expected.to have_db_column(:position_lat) }
|
|
|
|
it { is_expected.to have_db_column(:position_lon) }
|
|
|
|
it { is_expected.to have_db_column(:ref_dossier) }
|
|
|
|
it { is_expected.to have_db_column(:nom_projet) }
|
|
|
|
it { is_expected.to have_db_column(:montant_projet) }
|
|
|
|
it { is_expected.to have_db_column(:montant_aide_demande) }
|
2015-08-24 16:28:47 +02:00
|
|
|
it { is_expected.to have_db_column(:date_previsionnelle).of_type(:date) }
|
2015-08-17 11:13:21 +02:00
|
|
|
it { is_expected.to have_db_column(:lien_plus_infos) }
|
|
|
|
it { is_expected.to have_db_column(:mail_contact) }
|
|
|
|
it { is_expected.to have_db_column(:dossier_termine) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'associations' do
|
|
|
|
it { is_expected.to belong_to(:formulaire) }
|
|
|
|
it { is_expected.to have_many(:pieces_jointes) }
|
|
|
|
it { is_expected.to have_many(:commentaires) }
|
2015-08-18 13:52:00 +02:00
|
|
|
it { is_expected.to have_one(:cerfa) }
|
2015-08-17 11:13:21 +02:00
|
|
|
it { is_expected.to have_one(:etablissement) }
|
|
|
|
it { is_expected.to have_one(:entreprise) }
|
|
|
|
end
|
|
|
|
|
2015-08-20 17:30:17 +02:00
|
|
|
describe 'delegation' do
|
2015-08-20 14:24:26 +02:00
|
|
|
it { is_expected.to delegate_method(:siren).to(:entreprise) }
|
|
|
|
it { is_expected.to delegate_method(:siret).to(:etablissement) }
|
|
|
|
it { is_expected.to delegate_method(:types_piece_jointe).to(:formulaire) }
|
|
|
|
end
|
|
|
|
|
2015-08-21 11:37:13 +02:00
|
|
|
describe 'validation' do
|
2015-08-25 10:19:39 +02:00
|
|
|
context 'mail_contact' do
|
|
|
|
it { is_expected.to allow_value('tanguy@plop.com').for(:mail_contact) }
|
|
|
|
it { is_expected.not_to allow_value('tanguyplop.com').for(:mail_contact) }
|
|
|
|
end
|
|
|
|
context 'nom_projet' do
|
|
|
|
it { is_expected.to allow_value(nil).for(:nom_projet) }
|
|
|
|
it { is_expected.not_to allow_value('').for(:nom_projet) }
|
|
|
|
it { is_expected.to allow_value('mon super projet').for(:nom_projet) }
|
|
|
|
end
|
|
|
|
context 'description' do
|
|
|
|
it { is_expected.to allow_value(nil).for(:description) }
|
|
|
|
it { is_expected.not_to allow_value('').for(:description) }
|
|
|
|
it { is_expected.to allow_value('ma superbe description').for(:description) }
|
|
|
|
end
|
|
|
|
context 'montant_projet' do
|
|
|
|
it { is_expected.to allow_value(nil).for(:montant_projet) }
|
|
|
|
it { is_expected.not_to allow_value('').for(:montant_projet) }
|
|
|
|
it { is_expected.to allow_value(124324).for(:montant_projet) }
|
|
|
|
end
|
|
|
|
context 'montant_aide_demande' do
|
|
|
|
it { is_expected.to allow_value(nil).for(:montant_aide_demande) }
|
|
|
|
it { is_expected.not_to allow_value('').for(:montant_aide_demande) }
|
|
|
|
it { is_expected.to allow_value(124324).for(:montant_aide_demande) }
|
|
|
|
end
|
2015-08-21 11:37:13 +02:00
|
|
|
end
|
2015-08-13 15:55:19 +02:00
|
|
|
|
2015-08-21 11:37:13 +02:00
|
|
|
describe 'methods' do
|
|
|
|
let(:dossier) { create(:dossier, :with_entreprise) }
|
2015-08-13 15:55:19 +02:00
|
|
|
|
2015-08-21 11:37:13 +02:00
|
|
|
let(:entreprise) { dossier.entreprise }
|
|
|
|
let(:etablissement) { dossier.etablissement }
|
2015-08-18 14:22:16 +02:00
|
|
|
|
2015-08-21 11:37:13 +02:00
|
|
|
subject { dossier }
|
2015-08-18 14:22:16 +02:00
|
|
|
|
2015-08-21 11:37:13 +02:00
|
|
|
describe '#types_piece_jointe' do
|
|
|
|
subject { dossier.types_piece_jointe }
|
|
|
|
it 'returns list of required piece justificative' do
|
|
|
|
expect(subject.size).to eq(7)
|
|
|
|
expect(subject).to include(TypePieceJointe.find(103))
|
|
|
|
end
|
2015-08-18 14:22:16 +02:00
|
|
|
end
|
2015-08-18 15:15:34 +02:00
|
|
|
|
2015-08-21 11:37:13 +02:00
|
|
|
describe 'creation' do
|
|
|
|
it 'create default cerfa' do
|
|
|
|
expect { described_class.create }.to change { Cerfa.count }.by(1)
|
|
|
|
end
|
2015-08-20 15:15:20 +02:00
|
|
|
|
2015-08-21 11:37:13 +02:00
|
|
|
it 'link cerfa to dossier' do
|
|
|
|
dossier = described_class.create
|
|
|
|
expect(dossier.cerfa).to eq(Cerfa.last)
|
|
|
|
end
|
2015-08-20 15:15:20 +02:00
|
|
|
end
|
|
|
|
|
2015-08-21 11:37:13 +02:00
|
|
|
describe '#retrieve_piece_jointe_by_type' do
|
|
|
|
let(:type) { 93 }
|
|
|
|
subject { dossier.retrieve_piece_jointe_by_type type }
|
2015-08-18 15:15:34 +02:00
|
|
|
before do
|
|
|
|
dossier.build_default_pieces_jointes
|
|
|
|
end
|
2015-08-21 11:37:13 +02:00
|
|
|
|
|
|
|
it 'returns piece jointe with given type' do
|
|
|
|
expect(subject.type).to eq(93)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#build_default_pieces_jointes' do
|
2015-08-24 15:23:07 +02:00
|
|
|
context 'when dossier is linked to a formulaire' do
|
2015-08-21 11:37:13 +02:00
|
|
|
let(:dossier) { create(:dossier) }
|
|
|
|
it 'build all pieces jointes needed' do
|
|
|
|
expect(dossier.pieces_jointes.count).to eq(7)
|
|
|
|
end
|
2015-08-18 15:15:34 +02:00
|
|
|
end
|
|
|
|
end
|
2015-08-24 15:23:07 +02:00
|
|
|
|
|
|
|
describe '#save' do
|
|
|
|
subject { create(:dossier, formulaire_id: nil) }
|
|
|
|
context 'when is linked to a formulaire' do
|
|
|
|
it 'creates default pieces jointes' do
|
|
|
|
expect(subject).to receive(:build_default_pieces_jointes)
|
|
|
|
subject.update_attributes(formulaire_id: 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
context 'when is not linked to a formulaire' do
|
|
|
|
it 'does not create default pieces jointes' do
|
|
|
|
expect(subject).not_to receive(:build_default_pieces_jointes)
|
|
|
|
subject.update_attributes(description: 'plop')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-08-25 16:33:55 +02:00
|
|
|
|
|
|
|
describe '#mailto' do
|
|
|
|
let(:dossier) { create(:dossier) }
|
|
|
|
let(:email_contact) { dossier.formulaire.email_contact }
|
|
|
|
subject { dossier.mailto }
|
|
|
|
it { is_expected.to eq("mailto:#{email_contact}?subject=Demande%20de%20contact&body=Bonjour,%0A%0AJe%20vous%20informe%20que%20j'ai%20rempli%20le%20dossier%20sur%20admi_facile.%20Vous%20pouvez%20y%20acc%C3%A9der%20en%20suivant%20le%20lien%20suivant%20:%20%0Ahttps://admi_facile.apientreprise.fr/admin/dossiers/#{dossier.id}%20%0A%20Le%20num%C3%A9ro%20de%20mon%20dossier%20est%20le%20#{dossier.id}")}
|
|
|
|
end
|
2015-08-18 15:15:34 +02:00
|
|
|
end
|
2015-08-20 17:30:17 +02:00
|
|
|
end
|