demarches-normaliennes/spec/lib/api_entreprise/attestation_sociale_adapter_spec.rb

28 lines
1.1 KiB
Ruby
Raw Normal View History

2020-08-05 18:40:47 +02:00
describe APIEntreprise::AttestationSocialeAdapter do
let(:siret) { '41816609600069' }
2020-04-27 18:09:00 +02:00
let(:siren) { '418166096' }
2020-04-29 10:23:35 +02:00
let(:procedure) { create(:procedure) }
let(:adapter) { described_class.new(siret, procedure.id) }
2020-04-27 18:09:00 +02:00
subject { adapter.to_params }
before do
2023-05-22 14:56:40 +02:00
stub_request(:get, /https:\/\/entreprise.api.gouv.fr\/v4\/urssaf\/unites_legales\/#{siren}\/attestation_vigilance/)
2020-04-27 18:09:00 +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_sociales"])
allow_any_instance_of(APIEntrepriseToken).to receive(:expired?).and_return(false)
2020-04-27 18:09:00 +02:00
end
context "when the SIREN is valid" do
let(:body) { File.read('spec/fixtures/files/api_entreprise/attestation_sociale.json') }
let(:status) { 200 }
it '#to_params class est une Hash ?' do
expect(subject).to be_an_instance_of(Hash)
end
it "renvoie l'url de l'attestation sociale" do
2023-05-22 14:56:40 +02:00
expect(subject[:entreprise_attestation_sociale_url]).to eq("https://storage.entreprise.api.gouv.fr/siade/1569139162-b99824d9c764aae19a862a0af-attestation_vigilance_acoss.pdf")
2020-04-27 18:09:00 +02:00
end
end
end