[#10813] When value_json of champ SIRET is nil do not crash
This commit is contained in:
parent
39ebaadf03
commit
bfb7b59033
2 changed files with 27 additions and 1 deletions
|
@ -20,7 +20,7 @@ class AddressProxy
|
||||||
end
|
end
|
||||||
|
|
||||||
def initialize(champ)
|
def initialize(champ)
|
||||||
@data = champ.value_json.with_indifferent_access
|
@data = champ.value_json&.with_indifferent_access || {}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
26
spec/models/address_proxy_spec.rb
Normal file
26
spec/models/address_proxy_spec.rb
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
RSpec.describe AddressProxy, type: :model do
|
||||||
|
describe '#initialize' do
|
||||||
|
subject { AddressProxy.new(champ_or_etablissement) }
|
||||||
|
|
||||||
|
context 'when champ_or_etablissement is an instance of Champ' do
|
||||||
|
let(:champ_or_etablissement) { Champ.new }
|
||||||
|
|
||||||
|
context 'when value_json is nil' do
|
||||||
|
before { allow(champ_or_etablissement).to receive(:value_json).and_return(nil) }
|
||||||
|
|
||||||
|
it do
|
||||||
|
expect(subject.street_address).to be_nil
|
||||||
|
expect(subject.city_name).to be_nil
|
||||||
|
expect(subject.postal_code).to be_nil
|
||||||
|
expect(subject.city_code).to be_nil
|
||||||
|
expect(subject.departement_name).to be_nil
|
||||||
|
expect(subject.departement_code).to be_nil
|
||||||
|
expect(subject.region_name).to be_nil
|
||||||
|
expect(subject.region_code).to be_nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue