2020-08-05 18:40:47 +02:00
|
|
|
describe APIEntreprise::AttestationFiscaleAdapter do
|
2020-05-14 14:41:54 +02:00
|
|
|
let(:siret) { '41816609600069' }
|
2020-04-29 17:34:54 +02:00
|
|
|
let(:siren) { '418166096' }
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
let(:user_id) { 1 }
|
2020-05-14 14:41:54 +02:00
|
|
|
let(:adapter) { described_class.new(siret, procedure.id, user_id) }
|
2020-04-29 17:34:54 +02:00
|
|
|
subject { adapter.to_params }
|
|
|
|
|
|
|
|
before do
|
2020-12-10 15:28:39 +01:00
|
|
|
stub_request(:get, /https:\/\/entreprise.api.gouv.fr\/v2\/attestations_fiscales_dgfip\/#{siren}/)
|
2020-04-29 17:34:54 +02:00
|
|
|
.to_return(body: body, status: status)
|
2020-08-05 18:40:47 +02:00
|
|
|
allow_any_instance_of(APIEntrepriseToken).to receive(:roles).and_return(["attestations_fiscales"])
|
|
|
|
allow_any_instance_of(APIEntrepriseToken).to receive(:expired?).and_return(false)
|
2020-04-29 17:34:54 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context "when the SIREN is valid" do
|
|
|
|
let(:body) { File.read('spec/fixtures/files/api_entreprise/attestation_fiscale.json') }
|
|
|
|
let(:status) { 200 }
|
|
|
|
|
|
|
|
it '#to_params class est une Hash ?' do
|
|
|
|
expect(subject).to be_an_instance_of(Hash)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns url of attestation_fiscale" do
|
|
|
|
expect(subject[:entreprise_attestation_fiscale_url]).to eq("https://storage.entreprise.api.gouv.fr/siade/1569156756-f6b7779f99fa95cd60dc03c04fcb-attestation_fiscale_dgfip.pdf")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|