43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe Champs::AnnuaireEducationChamp do
|
||
|
describe '#update_with_external_data!' do
|
||
|
let(:champ) { create(:champ_annuaire_education, data: "any data") }
|
||
|
subject { champ.update_with_external_data!(data: data) }
|
||
|
|
||
|
shared_examples "a data updater (without updating the value)" do |data|
|
||
|
it { expect { subject }.to change { champ.reload.data }.to(data) }
|
||
|
it { expect { subject }.not_to change { champ.reload.value } }
|
||
|
end
|
||
|
|
||
|
context 'when data is nil' do
|
||
|
let(:data) { nil }
|
||
|
it_behaves_like "a data updater (without updating the value)", nil
|
||
|
end
|
||
|
|
||
|
context 'when data is empty' do
|
||
|
let(:data) { '' }
|
||
|
it_behaves_like "a data updater (without updating the value)", ''
|
||
|
end
|
||
|
|
||
|
context 'when data is inconsistent' do
|
||
|
let(:data) { { 'yo' => 'lo' } }
|
||
|
it_behaves_like "a data updater (without updating the value)", { 'yo' => 'lo' }
|
||
|
end
|
||
|
|
||
|
context 'when data is consistent' do
|
||
|
let(:data) {
|
||
|
{
|
||
|
'nom_etablissement': "karrigel an ankou",
|
||
|
'nom_commune' => 'kumun',
|
||
|
'identifiant_de_l_etablissement' => '666667'
|
||
|
}.with_indifferent_access
|
||
|
}
|
||
|
it { expect { subject }.to change { champ.reload.data }.to(data) }
|
||
|
it { expect { subject }.to change { champ.reload.value }.to('karrigel an ankou, kumun (666667)') }
|
||
|
end
|
||
|
end
|
||
|
end
|