2020-08-05 18:40:47 +02:00
|
|
|
RSpec.describe APIEntreprise::AssociationJob, type: :job do
|
2020-05-14 10:56:26 +02:00
|
|
|
let(:siret) { '50480511000013' }
|
|
|
|
let(:etablissement) { create(:etablissement, siret: siret) }
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
let(:procedure_id) { procedure.id }
|
|
|
|
let(:body) { File.read('spec/fixtures/files/api_entreprise/associations.json') }
|
|
|
|
let(:status) { 200 }
|
|
|
|
|
|
|
|
before do
|
2020-12-10 15:28:39 +01:00
|
|
|
stub_request(:get, /https:\/\/entreprise.api.gouv.fr\/v2\/associations\//)
|
2020-05-14 10:56:26 +02:00
|
|
|
.to_return(body: body, status: status)
|
2020-08-05 18:40:47 +02:00
|
|
|
allow_any_instance_of(APIEntrepriseToken).to receive(:expired?).and_return(false)
|
2020-05-14 10:56:26 +02:00
|
|
|
end
|
|
|
|
|
2020-08-05 18:40:47 +02:00
|
|
|
subject { APIEntreprise::AssociationJob.new.perform(etablissement.id, procedure_id) }
|
2020-05-14 10:56:26 +02:00
|
|
|
|
|
|
|
it 'updates etablissement' do
|
|
|
|
subject
|
|
|
|
expect(Etablissement.find(etablissement.id).association_rna).to eq('W595001988')
|
|
|
|
end
|
2020-09-28 14:37:34 +02:00
|
|
|
|
|
|
|
context "when the etablissement has been deleted" do
|
|
|
|
before do
|
|
|
|
allow_any_instance_of(Etablissement).to receive(:find) { raise ActiveRecord::RecordNotFound }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "ignores the error" do
|
|
|
|
expect { subject }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
2020-05-14 10:56:26 +02:00
|
|
|
end
|