25 lines
895 B
Ruby
25 lines
895 B
Ruby
|
describe ApiEntreprise::AttestationSocialeAdapter do
|
||
|
let(:siren) { '418166096' }
|
||
|
let(:procedure_id) { 22 }
|
||
|
let(:adapter) { described_class.new(siren, procedure_id) }
|
||
|
subject { adapter.to_params }
|
||
|
|
||
|
before do
|
||
|
stub_request(:get, /https:\/\/entreprise.api.gouv.fr\/v2\/attestations_sociales_acoss\/#{siren}?.*token=/)
|
||
|
.to_return(body: body, status: status)
|
||
|
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
|