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
stub_request(:get, /https:\/\/entreprise.api.gouv.fr\/v2\/attestations_sociales_acoss\/#{siren}/)
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
expect(subject[:entreprise_attestation_sociale_url]).to eq("https://storage.entreprise.api.gouv.fr/siade/1569156881-f749d75e2bfd443316e2e02d59015f-attestation_vigilance_acoss.pdf")
end
end
end